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

Disable Strategy on Stop Fill

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

    Disable Strategy on Stop Fill

    I've got a strategy that is using the managed order approach. It enters positions with EnterLong() and EnterShort() and exits them with ExitLong() and ExitShort(). In addition it sets a stop with SetStopLoss().

    In the event that the stop executes, I want to shut down the strategy or at least ensure no more Enter*() methods are called. It appears that the right way to do this is call CloseStrategy(). How can I detect that the stop has executed in the context of the managed approach?

    #2
    Hello The Big D,

    I would not recommend using multiple exit orders on the same entry.

    That said, CloseStrategy() would be correct to disable the strategy.


    You could choose to call this in OnOrderUpdate() or OnExecution() when the order.Name is "Stop loss" and the OrderState is .Filled.
    Chelsea B.NinjaTrader Customer Service

    Comment


      #3
      Chelsea,
      Thanks for your response. The code example in your second link is very helpful. Do I have to be concerned that OnOrderUpdate() may be called in the middle of OnBarUpdate()? If so, do I need to protect any variables shared between the two with some sort of mutex?

      Comment


        #4
        Hello The Big D,

        No, calling CloseStrategy() is fine to do from OnOrderUpdate().

        It will close all positions and cancel all orders, even newly submitted ones.
        Chelsea B.NinjaTrader Customer Service

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by GussJ, 03-04-2020, 03:11 PM
        11 responses
        3,229 views
        0 likes
        Last Post xiinteractive  
        Started by andrewtrades, Today, 04:57 PM
        1 response
        14 views
        0 likes
        Last Post NinjaTrader_Manfred  
        Started by chbruno, Today, 04:10 PM
        0 responses
        7 views
        0 likes
        Last Post chbruno
        by chbruno
         
        Started by josh18955, 03-25-2023, 11:16 AM
        6 responses
        441 views
        0 likes
        Last Post Delerium  
        Started by FAQtrader, Today, 03:35 PM
        0 responses
        12 views
        0 likes
        Last Post FAQtrader  
        Working...
        X