Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Sync-ing an always in strategy across weekends
Collapse
X
-
@Ignignokt
I can see there is
AccountValue v=Account.GetAccountValue(AccountItem.BuyingPower, Currency.Euro);
double byingpower=v.Value;
which is probably Account Global
then you have
this.GetAccountValue(AccountItem.BuyingPower);
which is the strategy local version.
Please feel free to test these functions and get back with some info on their usability.
Best regards
Andreas
Comment
-
Guys, this is 110% unsupported, so don't even ask us about the following code:
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); } } }AustinNinjaTrader Customer Service
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by argusthome, 03-08-2026, 10:06 AM
|
0 responses
85 views
0 likes
|
Last Post
by argusthome
03-08-2026, 10:06 AM
|
||
|
Started by NabilKhattabi, 03-06-2026, 11:18 AM
|
0 responses
47 views
0 likes
|
Last Post
|
||
|
Started by Deep42, 03-06-2026, 12:28 AM
|
0 responses
29 views
0 likes
|
Last Post
by Deep42
03-06-2026, 12:28 AM
|
||
|
Started by TheRealMorford, 03-05-2026, 06:15 PM
|
0 responses
32 views
0 likes
|
Last Post
|
||
|
Started by Mindset, 02-28-2026, 06:16 AM
|
0 responses
67 views
0 likes
|
Last Post
by Mindset
02-28-2026, 06:16 AM
|

Comment