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 Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
647 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
369 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
108 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
572 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
573 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment