Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Trailing Stops
Collapse
X
-
Trailing Stops
Hi, I seem to only be able to get trailing stops to work using "Tick Replay" When I back test using high resolution order fill on 1 tick or even 1 second, it just simply doesn't work. I have the data for it and can't understand why it's only showing the trailing exits when "tick replay" is checked off. Shouldn't it also show them when using high resolution order fills?Tags: None
-
Hello,
Thanks for writing in.
In a backtest, this behavior is expected since when "Tick Replay" is enabled, it updates OnBarUpdate() on every tick and not OnBarClose. If your calculation is set to OnBarClose, and Tick Replay is not enabled, this means that OnBarUpdate() method will only update every time the bar closes. This also means that any logic(your Trailing stops) inside OnBarUpdate will only update when the bar closes. For example, if you have a 5-minute bar series loaded, OnBarUpdate() will only update every 5 minutes, when the bar closes. Also, High order fill resolution and Tick Replay cannot be used at the same time.
To improve the accuracy of your backtest and make sure your trailigstops are getting triggered, you can add a one-tick series(which you already did) for intra-bar granularity to improve order fill accuracy and TickReplay to allow indicators to update with Calculate.OnPriceChange/.OnEachTick in historical data. This has to be done in an unlocked script, since you will have to submit your orders to your added one-tick series.
The Link below contains a more in-depth review of how this can be accomplished as well as sample code.
https://support.ninjatrader.com/s/ar...language=en_US
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by NullPointStrategies, Today, 05:17 AM
|
0 responses
46 views
0 likes
|
Last Post
|
||
|
Started by argusthome, 03-08-2026, 10:06 AM
|
0 responses
126 views
0 likes
|
Last Post
by argusthome
03-08-2026, 10:06 AM
|
||
|
Started by NabilKhattabi, 03-06-2026, 11:18 AM
|
0 responses
66 views
0 likes
|
Last Post
|
||
|
Started by Deep42, 03-06-2026, 12:28 AM
|
0 responses
42 views
0 likes
|
Last Post
by Deep42
03-06-2026, 12:28 AM
|
||
|
Started by TheRealMorford, 03-05-2026, 06:15 PM
|
0 responses
46 views
0 likes
|
Last Post
|

Comment