Announcement

Collapse
No announcement yet.

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.

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by NullPointStrategies, Today, 05:17 AM
    0 responses
    43 views
    0 likes
    Last Post NullPointStrategies  
    Started by argusthome, 03-08-2026, 10:06 AM
    0 responses
    124 views
    0 likes
    Last Post argusthome  
    Started by NabilKhattabi, 03-06-2026, 11:18 AM
    0 responses
    65 views
    0 likes
    Last Post NabilKhattabi  
    Started by Deep42, 03-06-2026, 12:28 AM
    0 responses
    42 views
    0 likes
    Last Post Deep42
    by Deep42
     
    Started by TheRealMorford, 03-05-2026, 06:15 PM
    0 responses
    46 views
    0 likes
    Last Post TheRealMorford  
    Working...
    X