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 Hwop38, 05-04-2026, 07:02 PM
|
0 responses
160 views
0 likes
|
Last Post
by Hwop38
05-04-2026, 07:02 PM
|
||
|
Started by CaptainJack, 04-24-2026, 11:07 PM
|
0 responses
307 views
0 likes
|
Last Post
by CaptainJack
04-24-2026, 11:07 PM
|
||
|
Started by Mindset, 04-21-2026, 06:46 AM
|
0 responses
245 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|
||
|
Started by M4ndoo, 04-20-2026, 05:21 PM
|
0 responses
348 views
0 likes
|
Last Post
by M4ndoo
04-20-2026, 05:21 PM
|
||
|
Started by M4ndoo, 04-19-2026, 05:54 PM
|
0 responses
178 views
0 likes
|
Last Post
by M4ndoo
04-19-2026, 05:54 PM
|

Comment