Noon Barbari
Registrati
Rischio

Trailing stop

A stop that ratchets in the trade's favor and never moves against it.

A trailing stop is a stop that follows the trade as it moves in your favor and stays put when it moves against. For a long, the stop is some distance below the highest price since entry; for a short, some distance above the lowest. Only the favorable updates apply — the stop never widens.

Trailing distance is typically defined the same way as an initial stop: a fixed percent, a number of ATRs, or a chosen swing low. The 'chandelier exit' (3 × ATR from the highest high since entry) is the canonical volatility-adaptive trailing stop.

Trailing stops solve the 'when to take profit?' problem without picking an arbitrary target — they let winners run and exit only when price reverses meaningfully. The trade-off is giving back some open profit on every exit.

Formula

long: trail_t = max(trail_{t-1}, highest_high − k · ATR)
short: trail_t = min(trail_{t-1}, lowest_low + k · ATR)

Esempio

Long at 50,000, k = 3, ATR = 200. Highest high since entry = 51,500. Trail = max(49,400, 51,500 − 600) = 50,900.

Come Noon Barbari usa Trailing stop

Ogni concetto qui è implementato nella piattaforma. Apri la documentazione o lo strumento corrispondente per vederlo all'opera.

Build trailing exits

Termini correlati

Torna al glossario