Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Actual Exit Price
Collapse
X
-
Actual Exit Price
Hey guys, when I do ExitLong(), how do I access the actual exit price in the code?Tags: None
-
Hello elitetradernyc,
You may use the OnExecution method to be able to tell what price the ExitLong() signal occurred.
http://www.ninjatrader.com/support/h...nexecution.htm
Defining an Entry and Exit signal name may help with filtering out some of the results as well for example:
Let us know if we can be of further assistance.Code:EnterLong("GoLong"); ExitLong("ExitLongNow", "GoLong"); protected override void OnExecution(IExecution execution) { if("ExitLongNow" == execution.Name) Print("Exit Long Order Price = "+execution.Price); }JCNinjaTrader Customer Service
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by kinfxhk, 07-14-2026, 09:39 AM
|
0 responses
125 views
0 likes
|
Last Post
by kinfxhk
07-14-2026, 09:39 AM
|
||
|
Started by kinfxhk, 07-13-2026, 10:18 AM
|
0 responses
105 views
0 likes
|
Last Post
by kinfxhk
07-13-2026, 10:18 AM
|
||
|
Started by kinfxhk, 07-13-2026, 09:50 AM
|
0 responses
85 views
0 likes
|
Last Post
by kinfxhk
07-13-2026, 09:50 AM
|
||
|
Started by kinfxhk, 07-13-2026, 07:21 AM
|
0 responses
105 views
0 likes
|
Last Post
by kinfxhk
07-13-2026, 07:21 AM
|
||
|
Started by kinfxhk, 07-11-2026, 02:11 AM
|
0 responses
84 views
0 likes
|
Last Post
by kinfxhk
07-11-2026, 02:11 AM
|

Comment