Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
How to reference Parabolic SAR Stop price
Collapse
X
-
How to reference Parabolic SAR Stop price
How can the Ninjatrader Parabolic SAR stop price (not the Parabolic SAR indicator) be referenced in a strategy. I would like to store the current Parabolic Stop price as a double once an order entry has been filled and then plot it -but using GetRealtimeOrder does not seem to work and I don't see any support for the Parabolic SAR Stop in the Order object guide here: https://ninjatrader.com/support/help...ount_class.htm . A simple example would be very much appreciated. Thanks!Tags: None
-
Hello quantera,
Thank you for the post.
You could use the order update events to track the order and collect its prices for this. The GetRealtimeOrder method would not be related to tracking an orders price specifically, this is to transition a historical order into realtime. This method also assumes you already have an order object you need to transition.
Here is a simple example of an entry and printing the price of the stop as it changes:
https://ninjatrader.com/support/help...=onorderupdateCode:protected override void OnBarUpdate() { if (CrossAbove(SMA(12), SMA(23), 1)) EnterLong("MyLongEntry"); } protected override void OnOrderUpdate(Order order, double limitPrice, double stopPrice, int quantity, int filled, double averageFillPrice, OrderState orderState, DateTime time, ErrorCode error, string nativeError) { if(order != null) { if(order.Name == "Parabolic stop") { Print(order.StopPrice); } } }
You could store the price from here, or plot it however you see fit. The important note is using the orders name to find the specific order event which is the stop. This concept applies to all of the Set methods like SetProfitTarget or StopLoss where a signal name may not be given to the target.
For a more complete example of using this override and OnExecutionUpdate please see the following guide: https://ninjatrader.com/support/help...=onorderupdate
I look forward to being of further assistance.
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Mindset, 04-21-2026, 06:46 AM
|
0 responses
88 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|
||
|
Started by M4ndoo, 04-20-2026, 05:21 PM
|
0 responses
135 views
0 likes
|
Last Post
by M4ndoo
04-20-2026, 05:21 PM
|
||
|
Started by M4ndoo, 04-19-2026, 05:54 PM
|
0 responses
68 views
0 likes
|
Last Post
by M4ndoo
04-19-2026, 05:54 PM
|
||
|
Started by cmoran13, 04-16-2026, 01:02 PM
|
0 responses
119 views
0 likes
|
Last Post
by cmoran13
04-16-2026, 01:02 PM
|
||
|
Started by PaulMohn, 04-10-2026, 11:11 AM
|
0 responses
69 views
0 likes
|
Last Post
by PaulMohn
04-10-2026, 11:11 AM
|

Comment