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 CarlTrading, 03-31-2026, 09:41 PM
        1 response
        157 views
        1 like
        Last Post NinjaTrader_ChelseaB  
        Started by CarlTrading, 04-01-2026, 02:41 AM
        0 responses
        91 views
        1 like
        Last Post CarlTrading  
        Started by CaptainJack, 03-31-2026, 11:44 PM
        0 responses
        143 views
        2 likes
        Last Post CaptainJack  
        Started by CarlTrading, 03-30-2026, 11:51 AM
        0 responses
        131 views
        1 like
        Last Post CarlTrading  
        Started by CarlTrading, 03-30-2026, 11:48 AM
        0 responses
        107 views
        0 likes
        Last Post CarlTrading  
        Working...
        X