Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
How does the parabolic stop work in NT8?
Collapse
X
-
How does the parabolic stop work in NT8?
Can someone do better than the help file (Although logic wise very similiar, this technique works different from theParablicSARindicator) in explaining how does it actually work and how to make it less twitchy? When I activate in my strategy, in trends it stops the position on nearly every candleTags: None
-
Hello itrader46,
Thanks for your post, and welcome to the forums!
SetParabolicStop() uses the same parabolic trailing as the ParabolicSAR indicator, but the indicator will be relative to bar data when the SetParabolicStop() method will be relative to price acceleration and the entry price. With each update to the parabolic stop, the stop will move closer and closer to the current market price until it is filled.
I may suggest testing a simple strategy like the following in the Simulated Data Feed to observe the stop getting updated and moving closer to the current market price.
Please let me know if I can be of further assistance.Code:protected override void OnStateChange() { if (State == State.SetDefaults) { Description = @"Enter the description for your new custom Strategy here."; Name = "ParabolicTest"; } else if (State == State.Configure) { SetParabolicStop(CalculationMode.Ticks, 12); } } protected override void OnBarUpdate() { if (State == State.Historical) return; if (Position.MarketPosition == MarketPosition.Flat) EnterLong(); }
-
I notice the difference but I still don't get it right.I love the way to get stopped out this way. It would be shinier to be able, to not only be stopped out this way, but also be get in in the other way. Can you help me out with a concrete implementation using OnBarUpdate()/ExitLong()/ExitShort() in NT8, please?Originally posted by NinjaTrader_Jim View PostHello itrader46,
Thanks for your post, and welcome to the forums!
SetParabolicStop() uses the same parabolic trailing as the ParabolicSAR indicator, but the indicator will be relative to bar data when the SetParabolicStop() method will be relative to price acceleration and the entry price. With each update to the parabolic stop, the stop will move closer and closer to the current market price until it is filled.
I may suggest testing a simple strategy like the following in the Simulated Data Feed to observe the stop getting updated and moving closer to the current market price.
Comment
-
Welcome to the forums LuciusForum!
Reimplementing the ParabolicStop logic using Exit methods may be more effortful than taking the approaches below. I would suggest considering these instead:- Trap the execution of the Parabolic Stop in OnExecutionUpdate and to call an Enter method to re-enter in the opposite direction
- Use BarsSinceExitExecution to check if the Parabolic Stop has executed in OnBarUpdate to re-enter when the next bar has processed in OnBarUpdate
Number two may be easier to implement if you are not as familiar with NinjaScript and can be built using the Strategy Builder. You would need to use variables to track what the strategy's last position was so you can determine which direction you need to re-enter when the BarsSinceExitExecution for "Parabolic Stop" is 0,
Parabolic Stops have an Execution name of "Parabolic Stop" so this string can be used in BarsSinceExitExecution and will also be the Execution.Name when the Parabolic Stop execution is seen in OnExecutionUpdate.
BarsSinceExitExecution - https://ninjatrader.com/support/help...texecution.htm
OnExecutionUpdate - https://ninjatrader.com/support/help...tionupdate.htm
SetParabolicStop - https://ninjatrader.com/support/help...abolicstop.htm
Please let me know if I can be of further assistance.
- Likes 1
Comment
-
Hello Conceptzx,
Attached is a test script you can use to test the parabolic stop.
SetParabolicStopTest_NT8.zip
Note, an issue has been identified where in some instances the stop price is moved to an improper price. This is being tracked with ID # NT-6575 and is scheduled to be corrected in the upcoming release of NinjaTrader 8.
https://ninjatrader.com/support/help...ease_notes.htmChelsea B.NinjaTrader Customer Service
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
558 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
324 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
101 views
0 likes
|
Last Post
by Mindset
02-09-2026, 11:44 AM
|
||
|
Started by Geovanny Suaza, 02-02-2026, 12:30 PM
|
0 responses
545 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
547 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment