Running an EA removes the emotional noise of manual trading — but it does not remove risk. In fact, EAs can accumulate risk faster than a manual trader because they execute without hesitation. These four controls are the difference between a professionally managed automated strategy and an account that sustains an unrecoverable loss.
Control 1 — Position sizing
The single most important risk lever is lot size. Most EA traders set this once at deployment and forget it.
The correct starting point is risk-per-trade as a percentage of account. For the EAs in this catalogue, the default 0.01 lot on a $2,000 account represents approximately 0.5–1.0% risk per trade (varying by pair ATR and EA stop distance). This is conservative but survivable through the worst backtest streak.
A practical formula: if the EA’s worst streak is 6 consecutive losses and your per-trade risk is 1%, six consecutive losses = -6% drawdown. If that exceeds your tolerance, reduce to 0.5% per trade (= halve lot size).
Never size by profit target (“I want 20% per year so I’ll trade 2x”). Size by loss tolerance first; return follows from the edge.
Control 2 — Maximum drawdown circuit breaker
Define a maximum account drawdown at which you pause the EA and review. A common level: 1.5x the backtested max drawdown. Example: backtested max drawdown -8%, circuit breaker at -12%.
When the circuit breaker triggers:
- Disable AutoTrading (do not close open positions unless they are significantly in loss)
- Review the trading journal for the period — are losses consistent with the strategy type, or is something misconfigured?
- Wait for market regime normalisation before restarting (e.g. wait for ADX to drop below 30 on the primary pair if the strategy is a mean-reversion type)
The circuit breaker prevents a bad market regime from producing a catastrophic loss while you are not watching.
Control 3 — Correlation management across multiple EAs
Running three EAs simultaneously does not triple your diversification. If all three trade long EUR/USD when the USD strengthens, they all lose simultaneously.
Before deploying multiple EAs, check:
- Are the EAs trading the same pair in the same direction at similar times?
- Are the pairs highly correlated (EUR/USD + GBP/USD correlation is typically 0.85+)?
A simple rule: treat EAs trading the same pair or highly correlated pairs as a single position for drawdown calculation purposes. If EA 1 is 0.01 lot EUR/USD long and EA 2 is 0.01 lot GBP/USD long, the combined EUR/USD-equivalent risk is closer to 1.5x a single 0.01 lot position, not 2x independent positions.
Control 4 — Account equity pause on drawdown
Distinct from the circuit breaker, this is a pre-configured EA-level control. Several EAs in this catalogue (notably Balanced Portfolio V1) include an EquityDrawdownPause parameter. When set to 8%, the EA pauses new entries if account equity drops 8% from its high watermark, regardless of signal quality.
This is not a loss-cut — open trades continue. It is a new-entry pause that prevents the EA from pyramiding into a losing regime.
Recommended: if the EA you are deploying does not have this built in, monitor equity weekly and manually pause new entries when drawdown exceeds 1.5x the historical maximum.
Worked examples
$2,000 account, single EA, 0.01 lot EUR/USD
- Per-trade risk at 20-pip stop: ~$20 (1% of account)
- 8-loss streak at 1% each: -8% = $160 loss
- Consistent with backtested max drawdown of -8%: correctly sized ✓
$5,000 account, three EAs on EUR/USD, GBP/USD, USD/JPY
- 0.01 lot each = $150 max loss per trade per EA
- All three EAs trigger simultaneously (e.g. NFP selloff): -$450 in one day
- -$450 / $5,000 = -9% in one day — exceeds typical circuit breaker
- Solution: reduce to 0.01 lot total across all three, or use a correlation-aware portfolio EA like Balanced Portfolio V1 that limits concurrent open pairs