Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

Partner 728x90

Collapse

StopLoss in MultiDataseries

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    StopLoss in MultiDataseries

    Hi everybody
    I have a strategy that tracks 3 dataseries, for example (ZN, ZF, ZB).
    If 2 of them is greater than a specific value (for example 112.234), we should trade on them. All those dataseries have their own value for profit target. for example if dataserise ZN is greater than 112.234 for 1.5 tick and ZF is greater than 112.234 for 2 ticks we must enter the trade.

    The question is how i should set stop loss and profit target for them.
    I have read an article about multi frame trading in ninja but it is not helpful for me.

    #2
    Hello amiralimadadi,

    Thank you for the post.

    The SetStopLoss and SetProfitTarget methods specifically use the SignalName system to tie targets to entries. In this case, you could use unique SignalNames for the entries and then set those as the FromEntrySignal for each set of targets.

    For example:
    Code:
    SetStopLoss("longEntry1", CalculationMode.Ticks, 10, false);
    SetStopLoss("longEntry2", CalculationMode.Ticks, 20, false);
    
    EnterLong("longEntry1");
    EnterLong("longEntry2");

    I look forward to being of further assistance.
    JesseNinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Waxavi, Today, 02:10 AM
    0 responses
    3 views
    0 likes
    Last Post Waxavi
    by Waxavi
     
    Started by TradeForge, Today, 02:09 AM
    0 responses
    8 views
    0 likes
    Last Post TradeForge  
    Started by Waxavi, Today, 02:00 AM
    0 responses
    2 views
    0 likes
    Last Post Waxavi
    by Waxavi
     
    Started by elirion, Today, 01:36 AM
    0 responses
    4 views
    0 likes
    Last Post elirion
    by elirion
     
    Started by gentlebenthebear, Today, 01:30 AM
    0 responses
    4 views
    0 likes
    Last Post gentlebenthebear  
    Working...
    X