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 SalmaTrader, 07-07-2026, 10:26 PM
|
0 responses
50 views
0 likes
|
Last Post
by SalmaTrader
07-07-2026, 10:26 PM
|
||
|
Started by CarlTrading, 07-05-2026, 01:16 PM
|
0 responses
22 views
0 likes
|
Last Post
by CarlTrading
07-05-2026, 01:16 PM
|
||
|
Started by CaptainJack, 06-17-2026, 10:32 AM
|
0 responses
16 views
0 likes
|
Last Post
by CaptainJack
06-17-2026, 10:32 AM
|
||
|
Started by kinfxhk, 06-17-2026, 04:15 AM
|
0 responses
22 views
0 likes
|
Last Post
by kinfxhk
06-17-2026, 04:15 AM
|
||
|
Started by kinfxhk, 06-17-2026, 04:06 AM
|
0 responses
23 views
0 likes
|
Last Post
by kinfxhk
06-17-2026, 04:06 AM
|

Comment