Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Open Orders

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

    Open Orders

    Hi

    How can I get all the non-filled orders (and their IOrder) which already exist on my account?

    Thanks

    #2
    Hello,

    Thank you for the question.

    For checking All non filled orders, there is not really a collection of these items. What you could do is to check in the OnOrderUpdate or OnExection for orders that come through with a status of not filled. This would provide the IOrder for that specific order.

    There is a simple example of this checking for filled orders which could be reversed to check for anything but filled orders located here: http://www.ninjatrader.com/support/h...ub=onExecution

    I look forward to being of further assistance.

    Comment


      #3
      Is there a way to recognize orders and positions which were created outside of my strategy?

      Thanks

      Comment


        #4
        Hello kiss987,

        Thanks for your post.

        There is no supported method to accomplish this.

        Here is an unsupported method that you can use at your own risk:

        Code:
        foreach (Account acct in Cbi.Globals.Accounts)
        {
        if (acct.Positions != null)
        {
        PositionCollection positions = acct.Positions;
        foreach (Position pos in positions)
        {
        Print(pos.Account.Name + " " + pos.Instrument + " " + pos.MarketPosition + " " + pos.Quantity + " " + pos.AvgPrice);
        }
        }
        Also, this post may provide further info: http://ninjatrader.com/support/forum...ad.php?t=68029

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by Geovanny Suaza, 02-11-2026, 06:32 PM
        0 responses
        558 views
        0 likes
        Last Post Geovanny Suaza  
        Started by Geovanny Suaza, 02-11-2026, 05:51 PM
        0 responses
        324 views
        1 like
        Last Post Geovanny Suaza  
        Started by Mindset, 02-09-2026, 11:44 AM
        0 responses
        101 views
        0 likes
        Last Post Mindset
        by Mindset
         
        Started by Geovanny Suaza, 02-02-2026, 12:30 PM
        0 responses
        545 views
        1 like
        Last Post Geovanny Suaza  
        Started by RFrosty, 01-28-2026, 06:49 PM
        0 responses
        547 views
        1 like
        Last Post RFrosty
        by RFrosty
         
        Working...
        X