Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

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 MacDad, 02-25-2024, 11:48 PM
        7 responses
        158 views
        0 likes
        Last Post loganjarosz123  
        Started by Belfortbucks, Today, 09:29 PM
        0 responses
        7 views
        0 likes
        Last Post Belfortbucks  
        Started by zstheorist, Today, 07:52 PM
        0 responses
        7 views
        0 likes
        Last Post zstheorist  
        Started by pmachiraju, 11-01-2023, 04:46 AM
        8 responses
        151 views
        0 likes
        Last Post rehmans
        by rehmans
         
        Started by mattbsea, Today, 05:44 PM
        0 responses
        6 views
        0 likes
        Last Post mattbsea  
        Working...
        X