Noon Barbari
S'inscrire
Risque

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.

Formule

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

Exemple

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

Comment Noon Barbari utilise Trailing stop

Chaque concept ici est implémenté dans la plateforme. Ouvre la documentation ou l'outil concerné pour le voir en action.

Build trailing exits

Termes liés

Retour au glossaire