Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
account data
Collapse
X
-
account data
I don't know if I already asked it but I don't remember it nor do I find it in conversations. Is there a way to call: protected override void OnAccountItemUpdate(Account account, AccountItem accountItem, double value) when starting the strategy before a trade is executedTags: None
-
Hello franatas,
Thank you for your post.
OnAccountItemUpdate() is an event-driven method, so it is only called when an AccountItem is updated. There is no way to call it manually; you would have to wait for one of the account items to be updated which is why you usually don't see any updates unless a trade is executed.
Is there a particular value from the account you are looking to obtain before a trade is executed? If that is the case, you may be able to use Account.Get() to obtain the desired AccountItem without having to wait for an AccountItemUpdate event to trigger:
Please let us know if we may be of further assistance.
-
I suggest using the Get() method to obtain those values. The AccountItem values are listed here:Originally posted by franatas View Posttotal pnl made on the day and account balance
For example, to get the RealizedProfitLoss (total PnL) you would use Account.Get(AccountItem.RealizedProfitLoss, Currency.UsDollar) like this example print statement:
For balance, you may want the CashValue which is shown in the example on the Get() page:Code:// Print out the account's realized PnL: Print("RealizedProfitLoss: " + Account.Get(AccountItem.RealizedProfitLoss, Currency.UsDollar));Please feel free to reach out with any additional questions or concerns.Code:// Evaluates to see if the account has more than $25000 if (Account.Get(AccountItem.CashValue, Currency.UsDollar) > 25000) { // Do something; }
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
589 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
342 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
103 views
0 likes
|
Last Post
by Mindset
02-09-2026, 11:44 AM
|
||
|
Started by Geovanny Suaza, 02-02-2026, 12:30 PM
|
0 responses
555 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
552 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment