Risk Management

Risk management is the layer of a trading strategy that decides how much capital is exposed on each position, where that exposure is cut, and under what conditions the account stops taking new risk. It is not the entry signal. The signal decides whether and where to trade; risk management decides how much, and whether the account survives a run of losses long enough for the edge — if one exists — to appear in the results.

Implementations generally reduce to three linked decisions. The first is the risk unit: how much of the account is accepted as the loss on a single idea, usually expressed as a fraction of equity rather than a fixed cash figure. The second is the translation of that unit into a position size, which requires a stop distance — size = (equity × risk fraction) ÷ (stop distance × value per point). The third is the set of aggregate limits that govern the account rather than the trade: simultaneous exposure, correlated-position caps, daily or monthly loss thresholds.

That middle equation carries the part most often missed. Stop placement and position size are one decision seen twice: tighten the stop and the same percentage risk buys a larger position, widen it and the position shrinks. Nominal risk stays constant, but the chance of being stopped by noise and the slippage paid on the exit do not.

## Main variants

**Fixed fractional.** Risk a constant percentage of current equity per trade. Positions grow as the account grows and shrink as it falls — the anti-martingale property most systematic approaches are built on.

**Fixed monetary or fixed contract.** Risk a constant cash amount, or trade a constant size regardless of equity. Simpler to audit, and often forced by coarse contract granularity or by externally imposed account limits.

**Volatility-normalized.** Stop distance, and therefore size, is derived from a volatility measure such as ATR, so positions carry comparable risk in market terms across instruments and regimes.

**Growth-optimal sizing.** Optimal f and Kelly-style formulas size from the estimated distribution of outcomes to maximize the growth rate of capital. They are well defined mathematically but very sensitive to the estimate they are fed, which is why fractional versions are the practical form.

**Drawdown-responsive sizing.** Risk is scaled by the state of the equity curve — reduced past a drawdown threshold, restored above a high-water mark or an equity moving average. Funded-account and prop-firm rules are an externally imposed version of the same idea.

**Trade management as risk.** Partial take-profits, stop-to-breakeven moves and trailing rules reshape the outcome distribution after entry. They are risk decisions, not exit signals, and belong in the same test.

## What typically differentiates implementations

Versions of the same nominal concept diverge on a handful of specifics: whether "equity" means closed balance, floating equity or a high-water mark; whether the risk fraction is constant, tiered, or conditioned on setup quality; where the stop comes from (market structure, volatility, a fixed distance, or an optimizer); whether spread, commission and expected slippage sit inside the risk calculation or outside it; and how much is left to judgment versus written into code. Instrument context constrains all of it — contract granularity in futures, continuous trading and funding in crypto, lot rounding and margin in FX, and delivery or limit-move mechanics in energy and agricultural markets.

## Common mistakes

Treating sizing as a substitute for an edge is the first: no allocation rule turns a negative-expectancy signal positive, it only changes how quickly the account arrives. The rest recur across implementations — fitting optimal f or a risk fraction on the same sample used to validate the strategy; ignoring correlation, so ten positions of "1% risk" behave as one large one; assuming the stop is the worst case when gaps, weekend risk and slippage sit beyond it; increasing size after losses; and writing account-level rules such as daily loss limits that are never simulated, leaving their effect on results unknown.

## How to evaluate and backtest a version

Test the signal and the sizing separately. Run the entry and exit logic first at constant risk and record outcomes in R multiples — results measured in units of the amount risked — so the signal's distribution is visible without the sizing rule distorting it. Then apply each sizing variant as an overlay on the same trade list and compare path-dependent measures: maximum drawdown, time under water, return over maximum drawdown, and the shape of the curve rather than its endpoint.

Resampling helps at this stage. Bootstrapping or reshuffling the trade sequence yields a distribution of drawdowns instead of the single path history happened to produce — with the caveat that reshuffling assumes trades are independent, an assumption worth testing (a streak or Z-score check is the usual tool) before trusting the output. Any parameter that was optimized, the risk fraction included, needs out-of-sample or walk-forward treatment. Finally, sweep the risk fraction across a range: a rule that only holds at one setting is a fitted parameter, not a risk policy.

The versions linked below come at this from different angles — sizing formulas, stop placement, trade management and partials, statistical validation, psychology, and the constraints of funded programs — across equities, futures, FX and crypto. Each page documents what that specific video actually specifies, and what it leaves undefined.

Strategies in this concept (73)

Frequently asked questions

Is risk management a strategy on its own?

No. It is a layer that any strategy needs, and on its own it produces no trades. Content catalogued under this concept is usually one of two things: a sizing or stop methodology meant to be attached to an existing signal, or a complete strategy whose distinguishing feature is its risk layer rather than its entry. Reading a risk framework as a standalone system is the most common misinterpretation.

What is the difference between position sizing and risk management?

Position sizing is one component. It answers how many units to trade given an accepted loss and a stop distance. Risk management also covers where the stop goes, what happens to the position after entry (partials, stop moves, trailing), how much total exposure the account carries at once, how correlated positions are counted, and the conditions under which trading pauses entirely.

How much should be risked per trade?

There is no universal figure, and any single number quoted without context is a preference rather than a result. The reasoning that matters is the mapping: a given risk fraction, combined with the strategy's realistic losing-streak length, implies a drawdown you have to be able to hold through. Work backwards from the drawdown that is tolerable — operationally and psychologically — and from any account rules imposed on you, rather than forwards from a number someone else uses.

Does a stop loss cap the loss exactly?

Not exactly. A stop defines the intended exit level, but fills happen at the price available: gaps over weekends or news, thin liquidity, and slippage on fast moves can all produce a worse result than the level implies. Sizing that assumes the stop is a hard floor understates tail risk. Backtests should model slippage and gap fills rather than assume exact execution at the stop price.

What does a Monte Carlo simulation add over a standard backtest?

A backtest shows one realized ordering of trades. Reshuffling or bootstrapping that trade list produces a distribution of possible drawdowns and outcomes, which is a better basis for choosing a risk fraction than a single historical path. The caveat is that reshuffling assumes trades are independent; if the strategy has streak dependency or regime clustering, the resampled distribution understates the risk, so test that assumption first.

Can a strategy with a risk-reward ratio below 1 be viable?

It is not disqualifying by itself. Expectancy depends on the ratio and the frequency of outcomes together, so a target smaller than the stop can still be coherent if the outcome distribution supports it. What it does change is sensitivity: with a small reward per unit of risk, costs, spread and slippage consume a larger share of each result, and a modest degradation in fill quality has an outsized effect. Such versions need stricter cost modelling than symmetric ones.

All strategy concepts · Explore all strategies