Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Check manual orders by strategy?

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

    Check manual orders by strategy?

    I think this has been asked a few times, but I couldn't find the answer quick:

    Is it possible for a strategy to know about orders placed manually via SuperDom?
    The strategy doesn't need to control them, just enumerate them.

    Thanks for the answer in advance

    #2
    Hello Zapzap,

    This would not be possible with supported features of NinjaScript.
    We do have an enhancement request for this area and will forward this to development to add your vote there.
    Cal H.NinjaTrader Customer Service

    Comment


      #3
      Sure I add my vote, this is a very basic function IMHO.

      Comment


        #4
        Why not use Account property?

        Why not use this code?
        int iOrderCount = Account.Orders.Count;
        Print("Total Open Orders: " + iOrderCount );
        System.Collections.IEnumerator ListOrders = Account.Orders.GetEnumerator();
        for (int i = 0; i < iOrderCount; i++)
        {
        ListOrders.MoveNext();
        Print(" Open Orders: " + ListOrders.Current );
        }

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by Geovanny Suaza, 02-11-2026, 06:32 PM
        0 responses
        647 views
        0 likes
        Last Post Geovanny Suaza  
        Started by Geovanny Suaza, 02-11-2026, 05:51 PM
        0 responses
        368 views
        1 like
        Last Post Geovanny Suaza  
        Started by Mindset, 02-09-2026, 11:44 AM
        0 responses
        108 views
        0 likes
        Last Post Mindset
        by Mindset
         
        Started by Geovanny Suaza, 02-02-2026, 12:30 PM
        0 responses
        571 views
        1 like
        Last Post Geovanny Suaza  
        Started by RFrosty, 01-28-2026, 06:49 PM
        0 responses
        573 views
        1 like
        Last Post RFrosty
        by RFrosty
         
        Working...
        X