Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Account Position

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

    Account Position

    I'm trying to find way to retrieve my IB account position through NT. For example, I want to know how many ES contracts long or short my IB account is.

    The GetAccountValue() method doesn't allow me to do this.

    How can I retrieve my account position?


    Thanks,

    CS

    #2
    Hello,

    Thanks for your forum post.

    NinjaTrader is not designed to allow for this. As NinjaTrader is designed to allow for multiple strategies to run on the same account and instrument. As such there is no NinjaTrader function to query your direct account position, there is only the internal strategy position.

    When you start a NinjaScript strategy you must choose to have it auto sync your account to the strategy or sync it manually. This is descibed how to do this below.

    Strategy Position vs. Account Position:


    1st solution:
    You can include the following statement in your code to avoid the strategy to be calculated on historical data.
    // Only run on real-time data
    if (Historical)
    return;
    Add the statement to the top of OnBarUpdate()

    2nd solution:
    You can set 'On starting a real-time strategy' to 'Wait until flat before executing live'.
    This option can be found at Tools-->Options-->Strategies-->NinjaScript-tab.

    3rd solution, would be submitting manual orders to sync the strategy and account positions described in the link

    4th solution, would be to enable Sync account position to true.


    Let me know if I can be of further assistance.
    BrettNinjaTrader Product Management

    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
    369 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
    572 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