Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
identifying a trade
Collapse
X
-
update ... I am using the IPosition, which is working fine as far as identifying the status of a trade within the OnPositionUpdate section. However I need to access the "position.MarketPosition" in the "OnBarUpdate()" section of my code. I get a message that 'position' does not exist in the current context. What am I doing wrong? Tx!
Comment
-
Ken,
It depends on what you typed in when you created the OnPositionUpdate() method.
protected override void OnPositionUpdate(IPosition position)
{
}
In this case inside of OnPositionUpdate you would use a lower case p 'position'.
protected override void OnPositionUpdate(IPosition Position)
{
}
In this case you would use an upper ase P 'Position'
Let me know if I can be of further assistance.
BrettNinjaTrader Product Management
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by charlesugo_1, 05-26-2026, 05:03 PM
|
0 responses
65 views
0 likes
|
Last Post
by charlesugo_1
05-26-2026, 05:03 PM
|
||
|
Started by DannyP96, 05-18-2026, 02:38 PM
|
1 response
149 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
162 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|
||
|
Started by CarlTrading, 05-10-2026, 08:12 PM
|
0 responses
99 views
0 likes
|
Last Post
by CarlTrading
05-10-2026, 08:12 PM
|
||
|
Started by Hwop38, 05-04-2026, 07:02 PM
|
0 responses
286 views
0 likes
|
Last Post
by Hwop38
05-04-2026, 07:02 PM
|

Comment