Kill Switch
Definition
A kill switch is an EA risk-management mechanism that stops new trade entries after a defined intraday loss threshold (e.g. 2% daily account loss). It bounds worst-case tail risk at the calendar boundary so a single bad sequence of trades cannot blow up the account.
In-depth: Kill Switch
Kill switches address the most common EA failure mode: continuing to trade through a losing streak that would prudently be stopped. The behavioural mechanism behind this failure is well-documented in trading research — when a system is losing, the temptation to "trade out of it" produces position averaging, risk dial increases, and overtrading that compound losses rather than recovering them. Manual discipline against this temptation is rare among retail traders; architectural enforcement via kill switch removes the discretionary failure mode entirely.
Kill switch parameters typically configured by serious EAs:
• **Daily loss threshold**: 2-3% is the safety-tier default; 5% appears on more aggressive EAs; above 5% the kill switch is more nominal than meaningful • **Reset window**: most EAs reset the kill switch at midnight server time; some use 24-hour rolling windows • **Behaviour on threshold breach**: simplest is "stop new entries until reset" (allow existing positions to manage normally); more aggressive options close all open positions immediately • **Weekly variant**: some EAs also implement weekly loss kill switches (e.g. 8-10% weekly threshold) on top of the daily one for longer-horizon protection • **Drawdown variant**: some EAs implement equity-drawdown kill switches (e.g. stop trading if equity drops below 75% of peak) independently of the calendar-period mechanism
The editorial position for safety-tier and beginner-tier EAs: hard kill switches in vendor-default configurations are mandatory, not optional. EAs without daily-loss kill switches in their default parameters are downgraded for beginner audiences because configurability and discipline are inversely correlated for new traders. The trader who thinks they will manually enforce a daily loss discipline rarely does so when their account is already in drawdown.
For most-profitable and professional tier EAs, kill switches can be configured rather than mandatory because experienced traders may legitimately choose wider tolerances. However, even at these tiers, the editorial recommendation is to enable kill switches as the architectural baseline and adjust thresholds rather than disabling the mechanism entirely.
Common trader error: increasing the kill-switch threshold above vendor defaults during winning periods (when the kill switch hasn't activated) and forgetting the change before the next stress period (when the wider threshold compounds losses). Treat kill-switch threshold changes with the same discipline as risk-per-trade changes: pre-commit to the configuration before deployment and resist optimisation in real time.