Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Indicator knows market position.
Collapse
X
-
Indicator knows market position.
Is there a way that indicator will know if the position is flat,short or long?Tags: None
-
Hello edward_bell,
Thank you for your note.
This is not possible without using a strategy to pull the Position.MarketPosition. Please visit the following link for information on Position.MarketPosition: http://www.ninjatrader.com/support/h...etposition.htm
-
Hello ShaneAU,
Thank you for your post.
It is possible in NT 8 and NT 7 by running through the collection of accounts and positions.
In NT 8:
In NT 7:Code:foreach (Account acct in NinjaTrader.Cbi.Account.Accounts) { if (acct.Positions != null) { foreach (Position pos in acct.Positions) { Print(pos.Account.Name + " " + pos.Instrument + " " + pos.MarketPosition + " " + pos.Quantity + " " + pos.AveragePrice); } } }
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); } }
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by sjsj2732, 03-23-2026, 04:31 AM
|
0 responses
76 views
0 likes
|
Last Post
by sjsj2732
03-23-2026, 04:31 AM
|
||
|
Started by NullPointStrategies, 03-13-2026, 05:17 AM
|
0 responses
313 views
0 likes
|
Last Post
|
||
|
Started by argusthome, 03-08-2026, 10:06 AM
|
0 responses
313 views
0 likes
|
Last Post
by argusthome
03-08-2026, 10:06 AM
|
||
|
Started by NabilKhattabi, 03-06-2026, 11:18 AM
|
0 responses
149 views
1 like
|
Last Post
|
||
|
Started by Deep42, 03-06-2026, 12:28 AM
|
0 responses
113 views
0 likes
|
Last Post
by Deep42
03-06-2026, 12:28 AM
|

Comment