Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Sufficient buying power

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

    Sufficient buying power

    Hello

    Is it possible to know if I have sufficient buying power BEFORE I submit a new order? In my scenario it is possible to already have an open position which reducing my buying power.

    Thanks

    #2
    Hello kiss987,

    Thank you for the post.

    You can use the GetAccountValue() function to return the buying power of the account the strategy is running on.

    Example:
    Code:
    protected override void OnBarUpdate()
    {
        if (GetAccountValue(AccountItem.BuyingPower) > 1000)
            // Do something;
    }
    Here is the help guide page to GetAccountValue():


    Please let us know if we may be of any further assistance.

    Comment


      #3
      Hi

      That value is updated only after I close my position. So, if my position is opened (and there for is reducing my buying power) I will not know that.

      Comment


        #4
        Hello,

        Thanks for the reply.

        There is no OnAccountItemUpdate() override method in NinjaTrader 7. There is in NinjaTrader 8, but buying power is not available for the sim account in NinjaTrader 8. Without this method, there is no way get the most recent value of buying power, unfortunately.

        Please let me know if you have any further questions.

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by Geovanny Suaza, 02-11-2026, 06:32 PM
        0 responses
        577 views
        0 likes
        Last Post Geovanny Suaza  
        Started by Geovanny Suaza, 02-11-2026, 05:51 PM
        0 responses
        334 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
        553 views
        1 like
        Last Post Geovanny Suaza  
        Started by RFrosty, 01-28-2026, 06:49 PM
        0 responses
        551 views
        1 like
        Last Post RFrosty
        by RFrosty
         
        Working...
        X