Trailing Stops: Letting Winners Run Without Giving It All Back

A trailing stop is a rule for how much open profit you are willing to return in exchange for staying in a move. Every version is that trade-off in different clothes.

5 min readIntermediateUpdated September 16, 2026

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

MethodRuleCharacterBest for
Chandelier exitHighest high since entry minus k x ATRAdapts to volatility; the standard choiceTrend following
Moving average trailExit on a close below a moving averageSmooth, lags in fast movesPosition trading
Swing low trailBelow the most recent higher lowFollows market structureDiscretionary swing trading
Percentage trailFixed percentage below the highSimple, ignores volatilitySimple portfolios
N-bar low trailBelow the lowest low of the past N barsMechanical, easy to testSystematic breakout systems
Parabolic SARAccelerating trail that tightens over timeExits quickly in extended movesShort-term trends
Profit-scaled trailLoosen or tighten based on accumulated gainComplex; easy to overfitAdvanced, 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 gained
The chandelier exit, the most widely used trailing rule.

The tightness trade-off, quantified

ATR multipleWin rateAverage winExpectancyAverage hold
1.5 ATR46%1.4R+0.10R9 days
2.5 ATR38%2.4R+0.29R24 days
3.5 ATR33%3.3R+0.42R41 days
5.0 ATR30%3.6R+0.38R58 days
Fixed 2R target35%2.0R+0.05R12 days
Illustrative results for the same trend strategy with different chandelier multipliers.

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

StrategyRecommended trailRationale
Trend following2.5 to 3.5 ATR chandelierMust survive normal pullbacks within a trend
Breakout swing10-bar low or 2 ATR after 1RTighter once the initial expansion has occurred
Mean reversionNone; use a target and time stopThe move has a natural endpoint
Position trading40-week MA or 3 ATR weeklyVery wide; the timeframe demands it
Intraday momentumVWAP or 3-bar lowMust be fast; the session ends regardless
Event tradesTime stop primarilyThe 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 backtest

Keep reading

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.