Breakeven Stop
Definition
A breakeven stop moves the original stop-loss to the entry price (or slightly beyond, to cover spread/commission) once the trade has moved a configurable distance in profit. After breakeven activates, the trade cannot become a loss — but may exit early if price retraces back to entry. Common in trend-following EAs.
In-depth: Breakeven Stop
Breakeven stop is one of the simplest active trade-management techniques. The rule: after the trade has moved a specified distance in favour, move the stop-loss to a 'breakeven' level (entry price plus small buffer for transaction costs).
Mechanics: 1. Trade opens with initial stop-loss at distance R from entry (1R risk) 2. EA monitors unrealised profit on the trade 3. When unrealised profit reaches the trigger threshold (e.g. +1R, +1.5R, or a fixed pip distance), EA modifies the stop-loss to entry price + small buffer 4. The buffer (typically 0.05-0.2R) ensures the trade closes at small positive after spread/commission rather than exactly at entry
Configuration parameters: - Trigger distance: how far in profit before breakeven activates. Smaller triggers (0.5R) protect more trades but exit more prematurely. Larger triggers (1.5R+) let trades develop further before locking in breakeven. - Buffer: how far above (for longs) entry the new stop is placed. 0.1-0.2R is typical — enough to cover spread without sacrificing meaningful profit.
When breakeven helps: - Trend-following strategies where extended winners drive edge: breakeven protects against round-trips and preserves capital for the rare large winner - Strategies with high MAE on winning trades: breakeven activates only after winners have already moved meaningfully in favour, eliminating round-trip risk - Psychological: traders often interfere with trades anyway when they go from profit to breakeven; mechanising the move maintains discipline
When breakeven hurts: - Strategies that rely on tight ranges: a breakeven exit on a mean-reversion trade may cut the trade before completion - High-volatility instruments: random retracement back to entry triggers premature exits frequently - Strategies where MFE is reliably much larger than 1R: breakeven activation creates 'breakeven mortality' where many trades exit at breakeven that would have produced larger wins with patience
Implementation tip: trail breakeven progressively. Some EAs implement 'aggressive breakeven' (move to entry on +1R), 'moderate breakeven' (move to +0.5R when price reaches +2R, etc.), and 'conservative breakeven' (only activate breakeven on +3R+). The choice depends on strategy class and MFE distribution.
Variations: 'trailing breakeven' where the stop progressively follows price after breakeven activation; 'staggered breakeven' where partial position is closed at +1R and remaining position breakeven-protected.