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 NullPointStrategies, Yesterday, 05:17 AM
    0 responses
    59 views
    0 likes
    Last Post NullPointStrategies  
    Started by argusthome, 03-08-2026, 10:06 AM
    0 responses
    134 views
    0 likes
    Last Post argusthome  
    Started by NabilKhattabi, 03-06-2026, 11:18 AM
    0 responses
    74 views
    0 likes
    Last Post NabilKhattabi  
    Started by Deep42, 03-06-2026, 12:28 AM
    0 responses
    45 views
    0 likes
    Last Post Deep42
    by Deep42
     
    Started by TheRealMorford, 03-05-2026, 06:15 PM
    0 responses
    50 views
    0 likes
    Last Post TheRealMorford  
    Working...
    X