At a glance
- Purpose
- Stay in a trend while capping how much profit is returned
- Core trade-off
- Tight trails exit early; loose trails give back more
- Most common method
- ATR-based chandelier exit
- Never do this
- Move a trailing stop backwards
Key takeaways
- Every trailing stop returns part of the open profit. That is the price of capturing the occasional very large move, not a flaw to be engineered away.
- ATR-based trails adapt to the instrument and to changing conditions, which makes them more robust than fixed percentages.
- Tightening the trail raises the win rate and lowers expectancy for trend strategies, because it truncates the tail that generates the profit.
- A trailing stop should only ever move in the favourable direction; moving it back converts a defined risk into an undefined one.
- Test the trail as carefully as the entry, because it determines average win size and therefore most of your expectancy.
The main trailing methods
| Method | Rule | Character | Best for |
|---|---|---|---|
| Chandelier exit | Highest high since entry minus k x ATR | Adapts to volatility; the standard choice | Trend following |
| Moving average trail | Exit on a close below a moving average | Smooth, lags in fast moves | Position trading |
| Swing low trail | Below the most recent higher low | Follows market structure | Discretionary swing trading |
| Percentage trail | Fixed percentage below the high | Simple, ignores volatility | Simple portfolios |
| N-bar low trail | Below the lowest low of the past N bars | Mechanical, easy to test | Systematic breakout systems |
| Parabolic SAR | Accelerating trail that tightens over time | Exits quickly in extended moves | Short-term trends |
| Profit-scaled trail | Loosen or tighten based on accumulated gain | Complex; easy to overfit | Advanced, test carefully |
Long position:
Trail = Highest high since entry - (k x ATR(n))
typical k = 2.5 to 3.5, n = 20
Each day:
new_trail = max(previous_trail, highest_high - k x ATR)
The trail never moves down.
Example: entry 50.00, ATR = 1.20, k = 3
Initial trail = 50.00 - 3.60 = 46.40
Price rises to 62.00, ATR now 1.45
New trail = 62.00 - 4.35 = 57.65
Open profit protected: 7.65 of the 12.00 gainedThe tightness trade-off, quantified
| ATR multiple | Win rate | Average win | Expectancy | Average hold |
|---|---|---|---|---|
| 1.5 ATR | 46% | 1.4R | +0.10R | 9 days |
| 2.5 ATR | 38% | 2.4R | +0.29R | 24 days |
| 3.5 ATR | 33% | 3.3R | +0.42R | 41 days |
| 5.0 ATR | 30% | 3.6R | +0.38R | 58 days |
| Fixed 2R target | 35% | 2.0R | +0.05R | 12 days |
Two patterns recur across markets. Expectancy usually improves as the trail loosens, up to a point, then declines as the trail becomes so wide that it gives back too much. And the win rate falls monotonically as the trail loosens, which is why traders optimising for comfort systematically choose trails that are too tight.
Practical rules
- Update on closing prices, not intraday. Intraday updates cause exits on wicks that a closing-basis rule would have ignored.
- Never move the trail backwards. If the current trail feels too tight, the position size was too large or the trail was mis-specified, and neither is fixed by widening it now.
- Consider a two-stage approach. Use the initial stop until the trade reaches roughly 1R, then switch to the trailing rule. This avoids trailing a position that has not yet proven anything.
- Combine with partial profit taking. Taking half at a target and trailing the remainder is the common compromise between expectancy and comfort.
- Widen the trail in higher volatility automatically. ATR-based rules do this by construction, which is their main advantage over percentage trails.
- Leave the order resting where possible. A trailing stop you must remember to update is a trailing stop you will forget to update.
Matching the trail to the strategy
| Strategy | Recommended trail | Rationale |
|---|---|---|
| Trend following | 2.5 to 3.5 ATR chandelier | Must survive normal pullbacks within a trend |
| Breakout swing | 10-bar low or 2 ATR after 1R | Tighter once the initial expansion has occurred |
| Mean reversion | None; use a target and time stop | The move has a natural endpoint |
| Position trading | 40-week MA or 3 ATR weekly | Very wide; the timeframe demands it |
| Intraday momentum | VWAP or 3-bar low | Must be fast; the session ends regardless |
| Event trades | Time stop primarily | The thesis expires with the event |
The mean-reversion row deserves emphasis. Trailing a reversion trade makes no sense: the thesis is that price returns to an average, so once it does, the reason for the position is complete. Applying a trailing stop there converts a defined trade into an open-ended one with no rationale.
Frequently asked questions
What is the best trailing stop distance?
For trend strategies, typically 2.5 to 3.5 ATR, but the correct value is whatever your testing shows across a plateau of similar settings. If results collapse when you change 3.0 to 2.8, the result is noise. Test a range and choose from the middle of the region that works rather than the single best value.
Should I use a trailing stop on every trade?
No. Trailing stops suit strategies whose profit lives in the tail, such as trend following and breakouts. Mean-reversion and event trades have natural endpoints and are better served by fixed targets and time stops. Applying a trailing stop universally imposes trend-strategy behaviour on strategies that are not trend strategies.
How do I avoid giving back so much profit?
You cannot avoid it entirely; returning part of the open profit is how trailing exits work. You can reduce it by scaling out at a target and trailing only the remainder, which lowers expectancy slightly but makes the experience far easier to sustain. Tightening the trail to avoid giveback usually costs more than it saves.
Do trailing stops work in volatile markets?
ATR-based trails adapt automatically, widening as volatility rises, which is exactly the behaviour you want. Fixed percentage trails fail badly in volatile conditions because they are hit by noise. This adaptivity is the main argument for volatility-based trailing over any fixed-distance approach.
Should the trailing stop be based on closes or intraday prices?
Closing prices for most swing and position strategies, because intraday spikes trigger exits that the underlying trend did not justify. Intraday trailing is appropriate for day-trading strategies where the session ends anyway. Whichever you choose, test it that way: the difference in results is frequently substantial.
Test this idea before you trade it
Describe the rules in plain language and AlgoTrader AI turns them into a structured strategy blueprint with a configurable historical backtest, cost assumptions, and exportable code.
Build a backtestKeep reading
- RiskStop Loss Strategies: Placement, Types, and What They Cannot Do
- RiskTake Profit Strategies: How and When to Close a Winner
- IndicatorsATR Indicator Guide: The Most Useful Number in Risk Management
- StrategiesTrend Following Strategy: Complete Guide With Rules and Examples
- RiskPosition Sizing Guide: How Many Shares or Contracts to Trade
- RiskRisk Reward Ratio: Why 1:3 Is Not Automatically Good
Referenced by
Educational use only. This guide explains how a strategy works. It is not investment advice, not a recommendation, and no result described here is a forecast. Test any approach on historical and out-of-sample data, size positions conservatively, and never risk money you cannot afford to lose.