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 knowmad, Today, 03:52 AM
    0 responses
    16 views
    0 likes
    Last Post knowmad
    by knowmad
     
    Started by tradingnasdaqprueba, Today, 03:42 AM
    0 responses
    12 views
    0 likes
    Last Post tradingnasdaqprueba  
    Started by Haiasi, 04-25-2024, 06:53 PM
    4 responses
    63 views
    0 likes
    Last Post effraenk  
    Started by ccbiasi, 11-23-2017, 06:06 AM
    5 responses
    2,213 views
    0 likes
    Last Post leodavis  
    Started by kujista, Yesterday, 12:39 AM
    2 responses
    14 views
    0 likes
    Last Post kujista
    by kujista
     
    Working...
    X