Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Cancelling orders once placed

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

    Cancelling orders once placed

    When a limit order is submitted in a strategy and not necessarily filled but needs to be cancelled, how does one do that?

    For example, the strategy determines a condition where we want to place a buy stop limit to wait for the condition to play out but then the signal goes away. Enter order:
    EnterLongStopLimit( 1, entryPrice, entryPrice, "tagLongOrderT1" );

    How does that get cancelled if we know the signal is lost? I've looked at CancelOrder(IOrder order), but it sounds like I shouldn't use that. Does ExitLong(string fromEntrySignal) cancel the order if it is not filled?

    #2
    All you have to do to cancel a limit order is let it expire by not resubmitting it on the next OnBarUpdate().
    Josh P.NinjaTrader Customer Service

    Comment


      #3
      You mean an order is only good for the life of the current bar? If that's true, how do I place an order and let it sit until it gets filled or I determine it needs to be cancelled?

      Comment


        #4
        By default you need to keep resubmitting it on every single bar you want the order to be active. The moment you stop doing so, it will expire and be cancelled.
        Josh P.NinjaTrader Customer Service

        Comment


          #5
          OK, so how, not by default, do I place the order to stay until I say so? In this strategy, I'm setting up a condition that will come true in a future bar.

          Comment


            #6
            Use liveUntilCancelled = true overload method for the order and then use CancelOrder.
            Josh P.NinjaTrader Customer Service

            Comment

            Latest Posts

            Collapse

            Topics Statistics Last Post
            Started by Geovanny Suaza, 02-11-2026, 06:32 PM
            0 responses
            647 views
            0 likes
            Last Post Geovanny Suaza  
            Started by Geovanny Suaza, 02-11-2026, 05:51 PM
            0 responses
            368 views
            1 like
            Last Post Geovanny Suaza  
            Started by Mindset, 02-09-2026, 11:44 AM
            0 responses
            108 views
            0 likes
            Last Post Mindset
            by Mindset
             
            Started by Geovanny Suaza, 02-02-2026, 12:30 PM
            0 responses
            571 views
            1 like
            Last Post Geovanny Suaza  
            Started by RFrosty, 01-28-2026, 06:49 PM
            0 responses
            573 views
            1 like
            Last Post RFrosty
            by RFrosty
             
            Working...
            X