4.5.6Entry, Exit & Trade Management

Learn trailing stop techniques

1,906 words9 min readdifficulty · medium

WHY do we need trailing stops?

The core tension of every trade:

  • A fixed stop protects you but never captures more profit as the trade works.
  • No stop lets profit grow but exposes you to giving it all back (and more).

This is a Forecast-then-Verify tool: you don't forecast the exact exit price; you set a rule, then let price verify whether the trend continues.


WHAT is a trailing stop?

Key properties (memorise the logic, not just words):

  • For a long: stop = (highest price since entry) − (trail distance). Stop ratchets up only.
  • For a short: stop = (lowest price since entry) + (trail distance). Stop ratchets down only.
  • The stop is monotonic: it can tighten, never loosen.

HOW to build one — from first principles

Let PtP_t = price at time tt, entry at P0P_0 (a long). Define the running peak:

Ht=max0stPsH_t = \max_{0 \le s \le t} P_s

The stop level at time tt is:

St=HtDS_t = H_t - D

where DD is the trail distance (in price points). Because HtH_t is non-decreasing, StS_t is non-decreasing — that's the "never moves backward" guarantee, derived, not assumed.

Exit condition: the position closes at the first time tt^* where

PtSt=HtDP_{t^*} \le S_{t^*} = H_{t^*} - D

i.e. price has retraced by DD from its peak.

Choosing DD is the whole art: too tight → whipsawed out early on normal noise; too wide → gives back too much profit.


Method 1 — Percentage trail

D=kHt,St=Ht(1k)D = k \cdot H_t, \qquad S_t = H_t(1-k) Stop stays a fixed % below the peak. Simple; but ignores current volatility.

Method 2 — ATR (volatility) trail ← the 80/20 workhorse

Set the distance from the Average True Range, so the stop breathes with volatility: D=mATRn,St=HtmATRnD = m \cdot \text{ATR}_n, \qquad S_t = H_t - m\,\text{ATR}_n

WHY ATR? In a quiet stock a 2% move is huge; in a volatile one it's noise. Using mATRm\cdot\text{ATR} scales the trail to how much this instrument normally wiggles, so you're not stopped by ordinary noise.

Method 3 — Structure / swing trail

Move the stop just below each successive higher swing low (long). No formula — it uses market structure. Great in clean trends; lags in choppy ones.


Figure — Learn trailing stop techniques

Worked examples


Common mistakes (Steel-man → Fix)


Recall Feynman: explain to a 12-year-old

Imagine flying a kite. The string is your trailing stop. As the kite (price) climbs higher, you let out string but keep a fixed slack length between your hand and the kite's height. If the wind drops and the kite falls more than that slack, the string goes tight and you reel it in — you keep it! You never shorten the height you've already reached; the string only follows the highest point the kite reached. That "slack length" is the trail distance: too short and every gust yanks the kite down; too long and the kite crashes before you react.


Active-recall flashcards

What is a trailing stop?
A stop-loss that moves only in your favour, kept a fixed trail distance from the best price reached, and never moves backward.
For a long, how is the stop level computed?
St=HtDS_t = H_t - D, where HtH_t is the highest price since entry and DD the trail distance.
Why is a trailing stop guaranteed to never loosen (long)?
Because Ht=maxstPsH_t=\max_{s\le t}P_s is non-decreasing, so St=HtDS_t=H_t-D is also non-decreasing.
Realised profit when stopped out (long)?
π=(HtP0)D\pi=(H_{t^*}-P_0)-D = peak gain minus the distance you give back.
Why prefer an ATR-based trail over a fixed-points trail?
It scales the distance to the instrument's normal volatility, so ordinary noise doesn't trigger exits.
Formula for True Range of a bar?
TR=max(HL, HCprev, LCprev)TR=\max(H-L,\ |H-C_{prev}|,\ |L-C_{prev}|).
Chandelier Exit stop for a long?
S=HmATRnS=H-m\cdot\text{ATR}_n, typically m=2m=23.53.5, n=14n=14.
Trade-off in choosing the trail distance DD?
Too tight → whipsawed out by noise; too wide → give back too much profit.
Why evaluate trailing exits on the close, not intrabar?
To avoid noise/wick spikes triggering premature exits in trend trades.
What is the swing/structure trailing method?
Move the stop just below each successive higher swing low (long); a break of that low signals trend failure.
Common fatal error with trailing stops?
Loosening/moving the stop against your position — this destroys its guarantee and turns it into hope.

Connections

Concept Map

is a

solves

goal

uses

minus trail distance D

is monotonic

triggers when price retreats D

gives

D acts as

D set by

D set by

breathes with

Trailing stop

Stop-loss moving only in favour

Fixed vs no-stop trade-off

Ride trend, exit on reversal

Running peak H_t

Stop level S_t

Never moves backward

Exit at t*

Locked profit = peak gain − D

Insurance premium

Percentage trail

ATR volatility trail

Average True Range

Hinglish (regional understanding)

Intuition Hinglish mein samjho

Trailing stop ka funda simple hai: ye ek stop-loss hai jo sirf tumhare favour mein move karta hai. Long trade mein jaise-jaise price upar jaata hai, tumhara stop bhi peeche-peeche upar khisakta hai, ek fixed trail distance DD maintain karke. Lekin agar price niche aaye, to stop kabhi wapas niche nahi jaata — isiliye jo profit tumne bana liya wo lock ho jaata hai, aur trend chalta rahe to tum trade mein bane rehte ho. Formula: St=HtDS_t = H_t - D, jahan HtH_t ab tak ka highest price hai.

Sabse important cheez hai DD (trail distance) ka selection. Bahut tight rakhoge to normal market ke chhote-chhote wiggles (noise) mein hi bahar ho jaoge — isko whipsaw kehte hain. Bahut wide rakhoge to top se bahut zyada profit wapas de doge. Isiliye smart traders ATR use karte hain: D=m×ATRD = m \times \text{ATR}, taaki stop us stock ki apni volatility ke hisaab se "saans le". Volatile stock ko zyada room, calm stock ko kam — automatically.

Ek golden rule yaad rakho: trailing stop ko kabhi apne against loosen mat karo. "Thoda niche kar deta hoon, shaayad bounce aa jaaye" — ye soch hi galat hai, kyunki tab stop, stop nahi raha, sirf umeed reh gayi. Agar zyada room chahiye to shuru mein hi DD bada rakho, baad mein mat khisakao. Aur trend trades mein exit candle close par check karo, intrabar wick par nahi — warna spike tumhe faltu mein bahar kar dega. Bas yehi 80/20 hai: ATR trail + close-based exit + never loosen.

Test yourself — Entry, Exit & Trade Management

Connections