Loss-Profit Asymmetry: The Math That Kills Your Deposit

MarketMaker.cc Team
क्वांटिटेटिव रिसर्च और स्ट्रैटेजी

MarketMaker.cc Team
क्वांटिटेटिव रिसर्च और स्ट्रैटेजी
Why losing 50% requires 100% growth to recover, how volatility drag destroys capital even in sideways markets, and which formulas every algo trader must know for building risk management.
Imagine: an asset rose 70%, then fell 70%. Or the reverse — first fell, then rose. Which scenario is more profitable?
The answer: both are equally unprofitable. Multiplication is commutative:
You lost 49% of your capital with "zero" price movement. This is not a bug — it is a fundamental property of the multiplicative nature of returns.
Percentage return is an operation in multiplicative space. Losing 50% means multiplying by 0.5, and to return to the starting point you need to multiply by 2 — i.e., earn 100%.
If you lost of your capital, the required return to get back to the initial balance:
The derivation is elementary. Let initial capital be . After a loss of :
To recover, , therefore:
| Loss | Required Recovery Gain | Asymmetry Coefficient |
|---|---|---|
| 5% | 5.26% | 1.05× |
| 10% | 11.11% | 1.11× |
| 20% | 25.00% | 1.25× |
| 25% | 33.33% | 1.33× |
| 30% | 42.86% | 1.43× |
| 40% | 66.67% | 1.67× |
| 50% | 100.00% | 2.00× |
| 60% | 150.00% | 2.50× |
| 70% | 233.33% | 3.33× |
| 80% | 400.00% | 5.00× |
| 90% | 900.00% | 10.00× |
| 95% | 1900.00% | 20.00× |
The asymmetry coefficient grows non-linearly. After a 50% loss you enter a zone from which it is statistically almost impossible to escape without changing strategy.

Even when the market "stands still," volatility by itself destroys capital. This phenomenon is called volatility drag (or variance drain).
For a sequence of daily returns , the geometric (real) return is:
The arithmetic (average) return is:
The relationship between them is approximately:
where is the variance of returns. The term is the volatility drag.
Suppose an asset randomly rises or falls 5% each day with equal probability. Arithmetic mean = 0%. But the geometric return:
Over 252 trading days: , meaning -27.1% annually at "zero" average movement.
For the crypto market with typical daily volatility of 3–8%, this means that holding a volatile asset without a directional trend guarantees capital loss.
import numpy as np
def simulate_volatility_drag(daily_vol: float, days: int = 252, simulations: int = 10_000) -> dict:
"""
Monte Carlo simulation of volatility drag.
Args:
daily_vol: daily volatility (0.05 = 5%)
days: number of trading days
simulations: number of simulations
Returns:
Statistics of real (geometric) returns
"""
daily_returns = np.random.normal(0, daily_vol, (simulations, days))
cumulative = np.prod(1 + daily_returns, axis=1)
geo_returns = cumulative - 1
theoretical_drag = -0.5 * daily_vol**2 * days
return {
"mean_geometric_return": np.mean(geo_returns),
"median_geometric_return": np.median(geo_returns),
"theoretical_drag": theoretical_drag,
"prob_loss": np.mean(geo_returns < 0),
"worst_5pct": np.percentile(geo_returns, 5),
"best_5pct": np.percentile(geo_returns, 95),
}
result = simulate_volatility_drag(daily_vol=0.04)
print(f"Mean geometric return: {result['mean_geometric_return']:.2%}")
print(f"Theoretical drag: {result['theoretical_drag']:.2%}")
print(f"Probability of loss: {result['prob_loss']:.2%}")
print(f"Worst 5%: {result['worst_5pct']:.2%}")
Typical output for BTC-like volatility:
Mean geometric return: -17.34%
Theoretical drag: -20.16%
Probability of loss: 63.28%
Worst 5%: -72.41%

Knowing about loss asymmetry, the optimal position size is computed via the Kelly criterion:
where is the win probability, is the average win, and is the average loss (as a fraction of the stake).
For practical trading applications, fractional Kelly ( or ) is used, which reduces equity volatility with only a minor reduction in long-term returns.
If a strategy allows a maximum drawdown of and the stop-loss is set at , the maximum number of consecutive stops before critical drawdown is:
Example: with and a stop-loss:
The strategy can survive 11 consecutive stops. Knowing the win rate, we can estimate the probability of such a streak:
At a 45% win rate: — an acceptable risk.
The real long-term return of a strategy is not the arithmetic mean of trades, but the geometric expectation:
Strategy with , , :
Strategy with , , (seems "breakeven"):
A symmetric R:R strategy with a 50% win rate is unprofitable due to volatility drag.
Managing losses is mathematically more important than finding profitable entries. This is not a motivational slogan — it is a consequence of the asymmetry of multiplicative returns.
Concrete rules:
Stop-losses are mandatory. Every percent of loss exponentially complicates recovery. A drawdown above 25% (requires +33%) is the red zone.
Minimum R:R = 1:2. At a symmetric R:R even a 50% win rate is unprofitable. Only an asymmetric R:R in favor of profits compensates for volatility drag.
Fractional Kelly for sizing. Full Kelly is theoretically optimal, but in practice delivers 75% of the return at 50% of the equity volatility.
Volatility is your enemy without an edge. In a sideways market for highly volatile assets, simply holding a position generates a loss. If you have no statistical edge — do not trade.
Calculate geometric, not arithmetic expectation. A backtest showing average profit per trade is lying — the real return is always lower by .
Understanding the multiplicative nature of returns is not an academic exercise. It is the foundation on which any viable trading system is built.
Most traders lose to the market not because they lack "intuition" or insider information — they lose because they make decisions in additive space (arithmetic mean), while the market operates in multiplicative space (geometric mean).
Three questions worth asking before every trade:
If the stop triggers — can I recover? The formula gives the answer instantly. When risk per trade exceeds 10%, recovery starts to require disproportionate effort.
Do I have a statistical edge? If not — don't trade. Volatility alone guarantees a loss through volatility drag. The absence of edge under volatility is a slow but inevitable destruction of capital.
What is the geometric expectation of my strategy? Not average profit per trade, not win rate percentage — exactly . This is the only metric that shows real long-term effectiveness.
Algo trading begins not with writing code, but with mathematics. Code is merely the implementation tool for a strategy that has already passed mathematical verification. Without this verification, even a perfectly written algorithm will systematically reduce your deposit.
The market does not punish mistakes — it simply redistributes capital from those who calculate incorrectly to those who calculate correctly.
Next topic: portfolio optimization using mean-variance methods — when diversification works and when it becomes an illusion of safety.
@article{soloviov2026lossprofitasymmetry, author = {Soloviov, Eugen}, title = {Loss-Profit Asymmetry: The Math That Kills Your Deposit}, year = {2026}, url = {https://marketmaker.cc/en/blog/post/loss-profit-asymmetry}, version = {0.1.0}, description = {Why losing 50% requires 100% growth to recover, how volatility drag destroys capital even in sideways markets, and which formulas every algo trader must know for risk management.} }