Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Limit Order not getting cancelled.

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

    Limit Order not getting cancelled.

    I have a limit order which gets submitted in on order update routine if it meets certain conditions.
    if((error == ErrorCode.OrderRejected) || (orderState == OrderState.Rejected))
    {
    msg = string.Format("Order status = {0}, Market Postiion = {1}, order name = {2}, order signal = {3}", orderState, Position.MarketPosition, order.Name, order.FromEntrySignal);
    Print(msg);
    if(order.Name == "LongDumpling")
    {
    msg = string.Format("Market position is Flag and signal is Long Dumpling with entry of = {0} and current bar at {1}", Entry_Price_L, CurrentBars[1]);
    Limit_order = EnterLongLimit(3, Entry_Price_L, "LongDumpling");
    limit_bar_number = CurrentBars[1];
    }
    else if(order.Name == "ShortDumpling")
    {
    msg = string.Format("Market position is Flag and signal is Short Dumpling with entry of = {0} and current bar at {1}", Entry_Price_L, CurrentBars[1]);
    Limit_order = EnterShortLimit(3, Entry_Price_S, "ShortDumpling");
    limit_bar_number = CurrentBars[1];
    }
    Print(msg);
    }
    }

    i want to cancel the order after 1 bar. So i call this routine on onbarupdate

    f(((CurrentBars[1] - limit_bar_number) >0) && (limit_bar_number != 0))
    {
    if((Limit_order.OrderState != OrderState.Filled) && (Limit_order.OrderState != OrderState.Cancelled) )
    {
    CancelOrder(Limit_order);
    msg = string.Format("Cancelling Limit Order, Position Flat and signal is Long Dumpling with entry of = {0} and current bar at {1}", CurrentBars[1] , limit_bar_number);
    Print(msg);

    }
    }
    }

    I can the the print below the cancel order however the Cancel routine does not appear to work.



    #2
    Hello sgkcfc,

    Is the order in a Working or Accepted OrderState?

    Print the <order>.OrderState before calling CancelOrder().

    Does TraceOrders have any information appearing in the Output window?
    Chelsea B.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by CarlTrading, 03-31-2026, 09:41 PM
    1 response
    43 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 04-01-2026, 02:41 AM
    0 responses
    20 views
    0 likes
    Last Post CarlTrading  
    Started by CaptainJack, 03-31-2026, 11:44 PM
    0 responses
    30 views
    1 like
    Last Post CaptainJack  
    Started by CarlTrading, 03-30-2026, 11:51 AM
    0 responses
    48 views
    0 likes
    Last Post CarlTrading  
    Started by CarlTrading, 03-30-2026, 11:48 AM
    0 responses
    38 views
    0 likes
    Last Post CarlTrading  
    Working...
    X