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 argusthome, Yesterday, 10:06 AM
|
0 responses
21 views
0 likes
|
Last Post
by argusthome
Yesterday, 10:06 AM
|
||
|
Started by NabilKhattabi, 03-06-2026, 11:18 AM
|
0 responses
18 views
0 likes
|
Last Post
|
||
|
Started by Deep42, 03-06-2026, 12:28 AM
|
0 responses
14 views
0 likes
|
Last Post
by Deep42
03-06-2026, 12:28 AM
|
||
|
Started by TheRealMorford, 03-05-2026, 06:15 PM
|
0 responses
9 views
0 likes
|
Last Post
|
||
|
Started by Mindset, 02-28-2026, 06:16 AM
|
0 responses
40 views
0 likes
|
Last Post
by Mindset
02-28-2026, 06:16 AM
|

Comment