Sur cette page
Here's the trade you've made a hundred times. You enter long at $40,000 with a stop at $39,000 and a take-profit at $42,000. Price runs to $41,800. You stare at the screen. It pulls back to $41,200. You stare harder. It taps your stop. You're out for the loss after watching nearly all of the win evaporate.
A smart-order ladder fixes this. The idea: split the position into slices, set a TP per slice, and as each slice fills, ratchet the stop up. The result is a position that locks in gains automatically while still letting the rest of the position run for the home-run scenario.
Anatomy of a ladder
A typical four-slot ladder on a long entry might look like this. Position size 1.0 unit, distributed as: 30% at TP1, 30% at TP2, 25% at TP3, 15% runner. Each TP is placed at a multiple of the entry's risk (R) — so if your stop is $1,000 below entry, R = $1,000.
Slot Size TP distance TP price Stop after fill
1 30% +1R $41,000 move stop to entry (break-even)
2 30% +2R $42,000 move stop to TP1 ($41,000)
3 25% +3R $43,000 move stop to TP2 ($42,000)
4 15% trail — ATR trail, 2x ATR(14)When TP1 fills, the stop moves to your entry — you can no longer lose money on this trade. When TP2 fills, the stop sits above entry — you've locked in a 1R win at minimum. By the time TP3 fills, you've taken three-quarters of the position off with an average win of about 2R, and the runner is on house money.
Why this beats a single TP
Run the maths. With a single TP at 2R, your win is 2R and your loss is 1R. You need a win rate above 33% to be profitable. With the ladder above, you have a smaller expected value per winning trade but the variance drops sharply — you're rarely round-tripping a clean winner back into the stop because the stop ratchets up as the trade works.
In practice, traders consistently find that ladder-style exits produce equity curves with shallower drawdowns and better Sharpe than single-TP exits at the cost of a few percentage points of CAGR. The reduction in drawdown is usually worth it, because it lets you size larger without blowing past your risk-of-ruin.
The break-even trick
The single highest-impact change you can make to a discretionary or systematic trade is moving the stop to break-even once price has travelled 1R in your favour. From that moment, the trade has a worst-case P&L of zero. You've converted a losing trade probability into a scratch-trade probability, which dramatically improves expected value if your strategy gets to 1R reasonably often.
There's a cost: you'll get stopped out at break-even on perfectly valid trades that just took a normal retracement before going to 3R. That's the trade-off. In live testing on this platform, the break-even arm trades a few percentage points of expectancy for a noticeable reduction in psychological drawdown and a smoother equity curve.
Trailing the runner
The last slice of the ladder doesn't have a fixed TP. Instead it follows a trailing stop. Two common choices: a percentage trail ("stop = high since entry × 0.95") or an ATR-scaled trail ("stop = high since entry − 2 × ATR(14)"). ATR is generally better in crypto because volatility regimes vary wildly and a 5% trail that's perfect for BTC is suicide on a small-cap alt and too loose on a stablecoin pair.
A rule-set snippet
strategy:
name: rsi_pullback_ladder
indicators:
- id: rsi14
kind: RSI
period: 14
- id: atr14
kind: ATR
period: 14
rules:
entry:
type: AND
children:
- { type: lt, left: rsi14, right: 30 }
- { type: cross_above, left: rsi14, right: 30 }
risk:
stop_loss_atr: 2.0
ladder:
- { size_pct: 30, tp_r: 1.0, on_fill: arm_break_even }
- { size_pct: 30, tp_r: 2.0, on_fill: move_stop_to_tp1 }
- { size_pct: 25, tp_r: 3.0, on_fill: move_stop_to_tp2 }
- { size_pct: 15, trail: { kind: atr, mult: 2.0 } }The ladder primitives ship in the strategy designer and run identically in backtest, paper, and live. No translation layer, no "this only works in the GUI but not in the bot."
When ladders hurt
Ladders are a win-rate-for-magnitude trade. If your strategy depends on rare, very large outliers — a momentum chase that needs the occasional 10R trade to pay for the 60% loss rate — chopping the position into a ladder will hurt expectancy. Run both variants in walk-forward and let the data tell you which side of the trade-off your specific strategy lives on.
Next steps
Build your first ladder in the strategy designer, confirm the simulation behaviour matches your intuition in backtesting, then promote to live once paper-trade behaviour stabilises. Sign up here — ladders are available on the free tier.
Essaie-le sur tes propres données
Chaque concept ci-dessus est implémenté dans la plateforme. Backtest, walk-forward, paper trading, puis passage en live — même jeu de règles à chaque étape.