Announcement

Collapse
No announcement yet.

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 CarlTrading, 03-31-2026, 09:41 PM
      1 response
      45 views
      0 likes
      Last Post NinjaTrader_ChelseaB  
      Started by CarlTrading, 04-01-2026, 02:41 AM
      0 responses
      21 views
      0 likes
      Last Post CarlTrading  
      Started by CaptainJack, 03-31-2026, 11:44 PM
      0 responses
      31 views
      1 like
      Last Post CaptainJack  
      Started by CarlTrading, 03-30-2026, 11:51 AM
      0 responses
      50 views
      0 likes
      Last Post CarlTrading  
      Started by CarlTrading, 03-30-2026, 11:48 AM
      0 responses
      42 views
      0 likes
      Last Post CarlTrading  
      Working...
      X