Snap
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Retrieving ATM STOP1 value
Collapse
X
-
Retrieving ATM STOP1 value
Is there a method to determine the actual value of STOP1,or (2)(3), in an ATM Strategy? The entry is initiated in script so I have the uniqueID for the strategy and entry order. I would like to know at what price the stop is set to at any point in time.
SnapTags: None
-
Hello Snap,
You may view the actual value of the Stop orders inside of the OnExecution() methods by checking the Name of the order.
For Example:
Here is a link to our Help Guide on OnExecution() that you may view.Code:protected override void OnExecution(IExecution execution) { Print("Order Execution : "+execution.Name); Print("Order Price: "+execution.Price); }
JCNinjaTrader Customer Service
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