Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

How to cancel limit orders that don't fill

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

    How to cancel limit orders that don't fill

    I did the "Enter Long Limit @ Ask" / "Exit Long Limit @ Bid" in the strategy wizard...

    is there something to add to cancel limit orders that don't fill? Maybe cancel them in x second after the order?

    #2
    Hello crimsonite,
    Thanks for writing in and I am happy to assist you.

    Unfortunately you cannot cancel an order via the Strategy Wizard.

    To cancel an order you have to unlock the code and edit the code via the NinjaScript editor.

    To cancel any order you can use the CancelOrder function http://www.ninjatrader.com/support/h...ancelorder.htm

    Please let me know if I can assist you any further.
    JoydeepNinjaTrader Customer Service

    Comment


      #3
      Unlocking the code is fine. Thanks for the pointer -

      is it possible to enter a piece of code that will allow the order to cancel or fill immediately?

      Comment


        #4
        Hello crimsonite,
        Yes, you can custom code to cancel the order as per your requirement. For example in the help file sample code the limit order is cancelled if it is not filled within the next 5 bars.

        Code:
        private IOrder myEntryOrder = null;
        private int barNumberOfOrder = 0;
         
        protected override void OnBarUpdate()
        {
            // Submit an entry order at the low of a bar
            if (myEntryOrder == null)
            {
                 myEntryOrder = EnterLongLimit(0, true, 1, Low[0], "Long Entry");
                 barNumberOfOrder = CurrentBar;
            }
         
            // If more than 5 bars has elapsed, cancel the entry order
            if (CurrentBar > barNumberOfOrder + 5)
                 CancelOrder(myEntryOrder);
        }



        Please let me know if I can assist you any further.
        JoydeepNinjaTrader Customer Service

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by kinfxhk, 07-14-2026, 09:39 AM
        0 responses
        125 views
        0 likes
        Last Post kinfxhk
        by kinfxhk
         
        Started by kinfxhk, 07-13-2026, 10:18 AM
        0 responses
        105 views
        0 likes
        Last Post kinfxhk
        by kinfxhk
         
        Started by kinfxhk, 07-13-2026, 09:50 AM
        0 responses
        84 views
        0 likes
        Last Post kinfxhk
        by kinfxhk
         
        Started by kinfxhk, 07-13-2026, 07:21 AM
        0 responses
        104 views
        0 likes
        Last Post kinfxhk
        by kinfxhk
         
        Started by kinfxhk, 07-11-2026, 02:11 AM
        0 responses
        83 views
        0 likes
        Last Post kinfxhk
        by kinfxhk
         
        Working...
        X