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

Give Stop Loss & Profit Target orders names

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

    Give Stop Loss & Profit Target orders names

    Hi

    Want to be able to tie the stop loss orders & profit target orders I'm setting for 2 different sell or buy positions, to the actual positions. To do this I think I need to name the actual stop loss orders & profit target orders

    As an example I'm using the below to create stops & targets

    Code:
    SetProfitTarget(@"Buy_1", CalculationMode.Ticks, (ATR1[0]*1.5)/TickSize);
    //SetProfitTarget(@"Buy_2", CalculationMode.Ticks, (ATR1[0]*3)/TickSize);
    SetStopLoss(@"Buy_1", CalculationMode.Ticks, (ATR1[0]*1.5)/TickSize, false);
    SetStopLoss(@"Buy_2", CalculationMode.Ticks, (ATR1[0]*1.5)/TickSize, false);
    However when the strategy has run, the orders are just named 'stop loss' or 'profit target'

    Is there a way to name them so I can link which was for which position as per the above?

    Thanks

    #2
    Hi Gav_G,
    Try to add the name of your TP/SL as illustrated below.

    SetProfitTarget(@"Buy_1", CalculationMode.Ticks, (ATR1[0]*1.5)/TickSize, YOURNAME1)
    SetStopLoss(@"Buy_1", CalculationMode.Ticks, (ATR1[0]*1.5)/TickSize, YOURNAME1, false);
    SetStopLoss(@"Buy_2", CalculationMode.Ticks, (ATR1[0]*1.5)/TickSize, YOURNAME2, false);

    NT-Roland

    Comment


      #3
      Hello Gav_G,

      When placing multiple entry orders that have separate exit orders, the entries will need unique signal names and the exits will need to be using the fromEntrySignal of the entry.

      Also, the EntryHandling will need to be set to UniqueEntries or EntriesPerDirection will need to be set to 2.

      Chelsea B.NinjaTrader Customer Service

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by wzgy0920, 04-20-2024, 06:09 PM
      2 responses
      26 views
      0 likes
      Last Post wzgy0920  
      Started by wzgy0920, 02-22-2024, 01:11 AM
      5 responses
      32 views
      0 likes
      Last Post wzgy0920  
      Started by wzgy0920, Yesterday, 09:53 PM
      2 responses
      49 views
      0 likes
      Last Post wzgy0920  
      Started by Kensonprib, 04-28-2021, 10:11 AM
      5 responses
      191 views
      0 likes
      Last Post Hasadafa  
      Started by GussJ, 03-04-2020, 03:11 PM
      11 responses
      3,232 views
      0 likes
      Last Post xiinteractive  
      Working...
      X