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 Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
574 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
332 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
101 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
553 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
551 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment