Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

IOrder

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

    IOrder

    If I have an Exit IOrder
    XL0=ExitLong(1,"XL0","L0");
    do I have to set XL0 back to null upon execution

    with
    protectedoverridevoid OnExecution(IExecution execution)
    {

    if (execution.Order.Name == "XL0")
    {

    if (execution.Order.OrderState == OrderState.Filled)
    {
    XL0 =
    null;
    }
    in order to avoid the "Terminal Exit Order already in place..." message

    Thx

    #2
    Yes, you want to set those to null when using IOrder - see also this reference sample here - http://www.ninjatrader-support2.com/...ead.php?t=7499

    Comment


      #3
      How is OrderState Ignored captured as:

      Cancelled, Rejected, UnKnown?

      Also, when
      L1=EnterLong(
      "L1");
      is Filled or PartFilled
      does L1 revert automatically to NULL?

      Comment


        #4
        Your initial order expires and is cancelled, this is why subsequent ones get ignored.

        It is not automatically set to null, as you can see in the snippet for the IOrder help - http://www.ninjatrader-support.com/H...V6/IOrder.html

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by CaptainJack, 05-29-2026, 05:09 AM
        0 responses
        53 views
        0 likes
        Last Post CaptainJack  
        Started by CaptainJack, 05-29-2026, 12:02 AM
        0 responses
        34 views
        0 likes
        Last Post CaptainJack  
        Started by charlesugo_1, 05-26-2026, 05:03 PM
        0 responses
        100 views
        0 likes
        Last Post charlesugo_1  
        Started by DannyP96, 05-18-2026, 02:38 PM
        1 response
        180 views
        0 likes
        Last Post NinjaTrader_ChelseaB  
        Started by CarlTrading, 05-11-2026, 05:56 AM
        0 responses
        170 views
        0 likes
        Last Post CarlTrading  
        Working...
        X