Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

How cancel Market Orders

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

    How cancel Market Orders

    Hi.
    I want cancel market order before execution.
    This code work is right on Market Replay, but doesn't work on Simulation.
    How it work on Live Account?

    Code:
    protected override void OnOrderUpdate(IOrder order)
    {
        if (order.OrderType==OrderType.Market)
           order.OrderState=OrderState.Cancelled;
     }

    #2
    Hello,

    Thank you for writing in.

    To cancel an order use CancelOrder();
    http://www.ninjatrader.com/support/h...ancelorder.htm

    It is not likely you will be able to cancel a market order with real-time data.

    The methods update asynchronously. This means that by the time the CancelOrder() is called the order has already filled.

    Market order fill immediately.
    Chelsea B.NinjaTrader Customer Service

    Comment


      #3
      Yes, but my code cancel market order right on market replay...

      Comment


        #4
        Hello vladko,

        In real-time it is very unlikely that you would be able to cancel market order because market orders fill immediately.
        (This does not mean it would be impossible just highly unlikely)

        The replay works a little more linearly so that it still works when being fast forwarded so its more likely to run the accept, then cancel in order.
        Chelsea B.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