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 CaptainJack, 05-29-2026, 05:09 AM
|
0 responses
619 views
0 likes
|
Last Post
by CaptainJack
05-29-2026, 05:09 AM
|
||
|
Started by CaptainJack, 05-29-2026, 12:02 AM
|
0 responses
420 views
0 likes
|
Last Post
by CaptainJack
05-29-2026, 12:02 AM
|
||
|
Started by charlesugo_1, 05-26-2026, 05:03 PM
|
0 responses
293 views
1 like
|
Last Post
by charlesugo_1
05-26-2026, 05:03 PM
|
||
|
Started by DannyP96, 05-18-2026, 02:38 PM
|
1 response
415 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
367 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|

Comment