Risk fundamentals
Position sizing for retail traders: the 0.5–1% rule, explained
Most blown accounts come from oversizing, not from bad trade selection. Here is the rule professional traders use, the maths behind it, and how to apply it on every order.
Walk into any prop trading floor and you will hear the same number repeated like a mantra: half to one percent. Risk no more than that on any single position. The rule is so simple that retail traders dismiss it as obvious — and then size every position the same way regardless of stop distance, account size, or volatility, and wonder why a five-loss streak takes them out.
Position sizing is the one decision you make on every trade that compounds. Picking the right entry can fail. Picking the right exit can fail. Sizing too large fails catastrophically. This article walks through the 0.5–1% rule, the maths that justifies it, and the way it changes when you trade a funded prop account.
The rule, stated precisely
Risk no more than 1% of account equity on a single position. For accounts under $5,000 or for traders still learning, 0.5% is closer to the right ceiling. "Risk" here means the distance from your entry to your stop loss, multiplied by the position size — not the notional value of the position, and not the margin you put up.
A worked example
Take a $10,000 account on a standard MetaTrader 5 broker, trading EURUSD with a 100-pip stop loss. We want to risk 1%, or $100.
EURUSD pip value at 1.00 lot is roughly $10 per pip. A 100-pip stop on 1.00 lot would therefore cost $1,000 — ten times what we want to risk. To get the loss down to $100 we size at 0.10 lot. That is your position size.
Account equity
$10,000
Risk per trade
1% / $100
Stop distance
100 pips
Position size
0.10 lot
Now move the stop closer — say 25 pips. The same $100 risk budget now buys you a 0.40 lot position. Tighter stops let you size up; wider stops force you to size down. The rule keeps total risk constant regardless of which trade you are taking.
Why 1% and not 2% or 5%?
The maths is unforgiving. After a losing streak you do not need to make back the amount you lost — you need to make back a percentage of what is left, which is always larger. A 10% drawdown requires an 11.1% gain to break even. A 50% drawdown requires a 100% gain. The deeper the hole, the steeper the climb.
| Drawdown | Gain required to recover | Comment |
|---|---|---|
| 10% | 11.1% | Annoying. Recoverable inside a quarter. |
| 20% | 25.0% | Painful. Most retail traders never come back. |
| 33% | 49.3% | A career hole. |
| 50% | 100.0% | Effectively a blown account. |
| 80% | 400.0% | Statistically over. |
With a 1% rule, a 10-trade losing streak takes you down ~9.6% (compounded) — uncomfortable but well inside the recoverable zone. With a 5% rule, the same streak takes you down ~40%. The difference is not five-times-worse; it is career-versus-not.
Without a stop loss, sizing is fiction
The 1% rule depends on knowing what 1% means — and that requires a stop loss. If you trade without a hard stop, your "risk per trade" is theoretically the entire account. Every position is implicitly sized at 100% risk. No amount of careful entry can save a strategy where the worst case is total ruin.
Adjusting for volatility
A 100-pip stop on EURUSD and a 100-pip stop on GBPJPY are not the same trade. The yen pair moves more, so a fixed pip distance under-protects there and over-protects on EURUSD. Many traders normalise by using ATR-based stops: stop = entry ± k × ATR(14), with k around 1.5–2.5 depending on style. Position size is then re-derived from the actual stop distance.
AlphaLab-AI EAs all size positions this way — the user picks a risk percentage, the EA reads the live ATR, computes the stop distance, and works backward to the lot size. Manual traders can do the same with a free position-size calculator.
Prop firm accounts: tighter, not looser
A funded prop account looks like free money. It is not. Most prop firms enforce a daily loss limit (typically 4–5% of starting balance) and an overall trailing drawdown (8–10% from peak). With these constraints, sizing at 1% per trade means three losses in a row puts you within one bad day of breaching the daily limit. On prop accounts, 0.25–0.5% is the right ceiling — half to a quarter of what you would use on personal capital.
See our companion piece on trailing drawdown vs static drawdown for why prop sizing is fundamentally a different problem.
The five sizing mistakes that wipe accounts
- Fixed-lot sizing. Trading the same 0.10 lot regardless of stop distance. Every trade has a different risk.
- Sizing off margin. "I have $500 free, I can put on 0.50 lot." Free margin is not a risk budget — your stop is.
- Doubling down on losers. Adding to a losing position turns a planned 1% risk into a 3–4% risk silently.
- Sizing off "feel". "This setup looks great so I will go bigger." The setup either fits your risk rule or it does not.
- Ignoring correlation. Five 1% positions on EURUSD, GBPUSD, AUDUSD, NZDUSD and EURJPY is not 5% portfolio risk — it is closer to 4% on a single dollar move.
What this looks like inside an EA
An Expert Advisor that respects the 0.5–1% rule looks the same on every chart: the user sets a risk percentage, never a fixed lot size. The EA reads account equity at order time, queries the symbol's pip value, measures the stop distance from the chosen logic (ATR multiple, recent swing, structural level), and divides backward to a position size that floors at the broker's minimum lot.
// Sketch of risk-based sizing inside an MT5 EA.
double EquityAtOrderTime = AccountInfoDouble(ACCOUNT_EQUITY);
double RiskBudgetCash = EquityAtOrderTime * RiskPercent / 100.0;
double StopDistancePoints = MathAbs(EntryPrice - StopLossPrice) / _Point;
double TickValue = SymbolInfoDouble(_Symbol, SYMBOL_TRADE_TICK_VALUE);
double Lots = RiskBudgetCash / (StopDistancePoints * TickValue);
Lots = NormalizeDouble(Lots, 2); // broker step
Lots = MathMax(Lots, SymbolInfoDouble(_Symbol, SYMBOL_VOLUME_MIN));This is the same arithmetic a manual trader should be doing on a calculator before clicking buy. Automating it removes the temptation to round up "just this once".
The bottom line
Position sizing is the single highest-leverage habit in trading. Every other variable — entry, exit, news filter, regime detection — matters less than how much you lose when you are wrong. Get sizing right and a mediocre edge survives. Get sizing wrong and the best edge in the world cannot save you.
R2 · From AlphaLab-AI
AlphaLab Stability EA
Stability EA sizes every order off live equity and ATR — never a fixed lot. The risk percentage is the only number you change.