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 benmarkal, Yesterday, 12:52 PM
        3 responses
        22 views
        0 likes
        Last Post NinjaTrader_Gaby  
        Started by helpwanted, Today, 03:06 AM
        1 response
        17 views
        0 likes
        Last Post sarafuenonly123  
        Started by Brevo, Today, 01:45 AM
        0 responses
        11 views
        0 likes
        Last Post Brevo
        by Brevo
         
        Started by aussugardefender, Today, 01:07 AM
        0 responses
        6 views
        0 likes
        Last Post aussugardefender  
        Started by pvincent, 06-23-2022, 12:53 PM
        14 responses
        244 views
        0 likes
        Last Post Nyman
        by Nyman
         
        Working...
        X