Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Clarification wrt SetStopLoss cancellation

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

    Clarification wrt SetStopLoss cancellation

    Hello,

    I want to make sure that I am understanding the documentation correctly with respect to SetStopLoss and its life cycle.

    https://ninjatrader.com/support/help...d_approach.htm

    On the above page it states the following:
    • By default, orders submitted via Entry() and Exit() methods automatically cancel at the end of a bar if not re-submitted
    Is this also applicable to SetStopLoss()?
    Is SetStopLoss() automatically cancel at the end of a bar is not re-submitted?

    In other words, there is no isLiveUntilCancelled parameter for SetStopLoss().

    Therefore, if I used something similar to the following code, is it necessary to resubmit the SetStopLoss() for every OnBarUpdate() that is called on the primary series for a multi-time frame strategy?

    Code:
     protected override void OnExecutionUpdate(Execution execution, string executionId, double price, int quantity, MarketPosition marketPosition, string orderId, DateTime time)
    {
    
         if (execution.Order.OrderState == OrderState.Filled)
         {
                stopOrder = SetStopLoss(CalculationMode.Price, someValue);
    
         }
    
    
    }

    #2
    Hello Epistemophilic,

    Thanks for your first post on the forums!

    The set methods will continue to provide the orders until the entry position is closed, there is no need for additional coding.

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by CaptainJack, 05-29-2026, 05:09 AM
    0 responses
    165 views
    0 likes
    Last Post CaptainJack  
    Started by CaptainJack, 05-29-2026, 12:02 AM
    0 responses
    87 views
    0 likes
    Last Post CaptainJack  
    Started by charlesugo_1, 05-26-2026, 05:03 PM
    0 responses
    128 views
    0 likes
    Last Post charlesugo_1  
    Started by DannyP96, 05-18-2026, 02:38 PM
    1 response
    207 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 05-11-2026, 05:56 AM
    0 responses
    185 views
    0 likes
    Last Post CarlTrading  
    Working...
    X