Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Some limit orders are getting cancelled

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

    Some limit orders are getting cancelled

    Why are some of my limit orders getting cancelled? This is causing my backtest strategies to lose lot's of money as it won't take a loss sometimes.
    • I have Historical fill processing set to High and on 1 Tick, see photos below
    • I don't use SetStopLoss and SetProfitTarget, instead I use EnterLimit() for entries and ExitLimit() for exits


    Here is my example of my stop loss code :

    Code:
    if (Low[0] <= nearest+1.5d)
    {
        ExitLongLimit(1, true,quantity,nearest + 1.5d, "Exit Long Prediction Points","Long Prediction Point");
    }

    #2
    Hello JakeOfSpades,

    The orders will remain alive as long as they continue to be resubmitted, unless isLiveUntilCancelled is true.

    Below is a link to a forum post that discusses this.
    Chelsea B.NinjaTrader Customer Service

    Comment


      #3
      Hi Chelsea, so I am using IsLiveUntilCancelled = true . Is it because I am resubmitting orders in OnBarUpdate()?

      Comment


        #4
        Hello JakeOfSpades,

        Thanks for your reply.

        Please check the "log" tab of the NinjaTrader control center when you run your strategy for any error messages that may provide further information.

        Please check your code for any other exit methods used and ensure that they all have bool IsLiveUntilCancelled set to true.

        If you are using CancelOrder() anywhere in your code you may want to add Print statements to print when that method is called and see if that lines up.

        You can always enable TraceOrders in your strategy. https://ninjatrader.com/support/help...raceorders.htm

        Here is a link to further debugging tips: https://ninjatrader.com/support/help...script_cod.htm

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by Mindset, 04-21-2026, 06:46 AM
        0 responses
        44 views
        0 likes
        Last Post Mindset
        by Mindset
         
        Started by M4ndoo, 04-20-2026, 05:21 PM
        0 responses
        54 views
        0 likes
        Last Post M4ndoo
        by M4ndoo
         
        Started by M4ndoo, 04-19-2026, 05:54 PM
        0 responses
        34 views
        0 likes
        Last Post M4ndoo
        by M4ndoo
         
        Started by cmoran13, 04-16-2026, 01:02 PM
        0 responses
        94 views
        0 likes
        Last Post cmoran13  
        Started by PaulMohn, 04-10-2026, 11:11 AM
        0 responses
        56 views
        0 likes
        Last Post PaulMohn  
        Working...
        X