Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

OnExecution() for cancelled OCO orders

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

    OnExecution() for cancelled OCO orders

    Hi,

    Do cancelled OCO orders (i.e. cancelled because the other pair is filled), get routed through OnExecution(). I am finding that OnExecution() is not called for these cancelled orders, but I wanted to double check with you first.

    Just wanted to mention that I am using unmanaged orders.

    Thanks.
    Last edited by coolguy8; 08-06-2012, 07:19 PM.

    #2
    From http://www.ninjatrader.com/support/h...nexecution.htm :

    "The OnExecution() method is called on an incoming execution. An execution is another name for a fill of an order."

    So if there's no fill (ie if the order is cancelled), it seems like OnExecution() won't be called.

    Comment


      #3
      Thank you very much for your help.

      Do you know if there is any way to get a trigger for cancelled orders? I would like to clean up some internal state variables when this occurs.

      Thanks!

      Comment


        #4
        Do it in OnOrderUpdate()

        Comment


          #5
          You can check the order state in OnOrderUpdate()

          Code:
          protected override void OnOrderUpdate(IOrder order)
          {
          
           if (order.OrderState == OrderState.Cancelled)
                   {
                        // Do stuff
          }
          MatthewNinjaTrader Product Management

          Comment

          Latest Posts

          Collapse

          Topics Statistics Last Post
          Started by CarlTrading, 03-31-2026, 09:41 PM
          1 response
          67 views
          0 likes
          Last Post NinjaTrader_ChelseaB  
          Started by CarlTrading, 04-01-2026, 02:41 AM
          0 responses
          36 views
          0 likes
          Last Post CarlTrading  
          Started by CaptainJack, 03-31-2026, 11:44 PM
          0 responses
          60 views
          1 like
          Last Post CaptainJack  
          Started by CarlTrading, 03-30-2026, 11:51 AM
          0 responses
          62 views
          0 likes
          Last Post CarlTrading  
          Started by CarlTrading, 03-30-2026, 11:48 AM
          0 responses
          53 views
          0 likes
          Last Post CarlTrading  
          Working...
          X