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 Geovanny Suaza, 02-11-2026, 06:32 PM
        0 responses
        633 views
        0 likes
        Last Post Geovanny Suaza  
        Started by Geovanny Suaza, 02-11-2026, 05:51 PM
        0 responses
        364 views
        1 like
        Last Post Geovanny Suaza  
        Started by Mindset, 02-09-2026, 11:44 AM
        0 responses
        105 views
        0 likes
        Last Post Mindset
        by Mindset
         
        Started by Geovanny Suaza, 02-02-2026, 12:30 PM
        0 responses
        567 views
        1 like
        Last Post Geovanny Suaza  
        Started by RFrosty, 01-28-2026, 06:49 PM
        0 responses
        568 views
        1 like
        Last Post RFrosty
        by RFrosty
         
        Working...
        X