Capital Management Rules: Kelly Criterion, Fixed Ratio & Risk Parity Explained
Right Strategy, But Still Blowing Up?
Have you ever experienced this?
- You predicted the direction correctly, but got stopped out due to oversized positions during a pullback
- Your strategy actually has decent win rates, but you panic after a few consecutive losses
- Your analysis was spot on, but you missed the best entry because you ran out of capital
This is why capital management matters. Many traders spend 80% of their time researching entry and exit strategies, but only 20% thinking about how much to risk per trade. The result: right strategy, no money left.
Core Principle: Strategies make money, capital management keeps you alive.
Why Capital Management Matters More Than Strategy
The Brutal Math
Imagine you have a strategy with 60% win rate and 1:1 risk-reward ratio—statistically a positive expectancy system. But if you risk 50% of your capital per trade:
- Two consecutive losses → 25% of capital remaining
- To break even, you need 300% return
- Three consecutive losses → 12.5% remaining, nearly impossible to recover
This is the mathematical asymmetry of losses: losing 50% requires gaining 100% just to break even.
Three Core Objectives of Capital Management
- Survival First: Ensure you don't blow up during losing streaks
- Steady Growth: Keep your equity curve smoothly trending upward
- Psychological Stability: Keep individual losses within tolerable limits
| Capital Management Level | Risk per Trade | Suitable For |
|:------------------------|:--------------|:-------------|
| Conservative | 1-2% | Beginners, large accounts |
| Moderate | 2-3% | Experienced traders |
| Aggressive | 3-5% | Professional traders |
| Ultra-Aggressive | 5%+ | High risk tolerance |
Kelly Criterion: Principles and Limitations
What is the Kelly Criterion?
The Kelly Criterion was developed by John Kelly at Bell Labs in 1956, originally to solve communication noise problems, later applied to gambling and investing.
The Formula:
f* = (bp - q) / b
Where:
f* = optimal bet size
b = odds received (net odds, excluding stake)
p = probability of winning
q = probability of losing = 1 - p
Practical Example
Assume your strategy has:
- Win rate (p) = 55%
- Average win = $200
- Average loss = $100
- Odds (b) = 200/100 = 2
Calculation:
f* = (2 × 0.55 - 0.45) / 2
f* = (1.1 - 0.45) / 2
f* = 0.325 = 32.5%
Theoretically, risking 32.5% per trade maximizes geometric mean return.
Limitations of Kelly Criterion
While mathematically elegant, Kelly has significant practical limitations:
1. Parameter Estimation Difficulty
- True win rates and odds are hard to estimate accurately
- Historical data doesn't guarantee future performance
- Market conditions change and affect strategy performance
2. Underestimated Volatility
- Kelly assumes independent events, but markets have serial correlation
- Actual equity curves are more volatile than theory suggests
- Extended drawdown periods can occur
3. Extreme Psychological Pressure
- Full Kelly sizing (32.5%) creates massive drawdowns during losing streaks
- Most traders cannot handle this psychological stress
Practical Recommendation: Use "Half Kelly" or "Quarter Kelly" to reduce volatility while maintaining most of the returns.
Fixed Ratio Method in Practice
What is Fixed Ratio?
The Fixed Ratio method, developed by Ryan Jones, adjusts position size based on accumulated profits.
Core Concept:
- Set a "Delta" value (profit required to increase position size by one unit)
- Only increase position size after accumulating sufficient profits
- Automatically reduce size during drawdowns to protect capital
Fixed Ratio Calculation
Position Units = Accumulated Profit / Delta + Starting Units
Example:
- Starting capital: $10,000
- Starting position: 1 unit
- Delta: $2,000
- Value per unit: $100
Accumulated profit $2,000 → Position 2 units
Accumulated profit $6,000 → Position 4 units
Accumulated profit $12,000 → Position 7 units
Pros and Cons of Fixed Ratio
| Advantages | Disadvantages |
|:-----------|:--------------|
| Compounding growth during profits | Slower initial growth |
| Automatic position reduction during losses | Parameter setting requires experience |
| Suitable for trend-following strategies | Frequent adjustments during choppy markets |
| Lower psychological pressure | Requires strict discipline |
Recommended Parameters
| Risk Profile | Delta Setting | Suitable Strategies |
|:-------------|:--------------|:--------------------|
| Conservative | 10-15% of capital | Swing trading |
| Moderate | 8-10% of capital | Day trading |
| Aggressive | 5-8% of capital | Scalping |
Risk Parity Allocation
What is Risk Parity?
Risk Parity allocates positions based on risk rather than capital. The goal is to make each position contribute equally to the portfolio's total risk.
Traditional Allocation vs Risk Parity:
| Asset | Capital Allocation | Volatility | Risk Contribution |
|:------|:-------------------|:-----------|:------------------|
| Stocks | 50% | 15% | High |
| Bonds | 30% | 5% | Low |
| Commodities | 20% | 20% | High |
Risk Parity would reduce allocation to high-volatility assets and increase allocation to low-volatility assets to equalize risk contributions.
Risk Parity Calculation
Position Weight ∝ 1 / Asset Volatility
Example:
- Asset A volatility: 20%
- Asset B volatility: 10%
- Asset C volatility: 5%
Weight ratio = 1/20 : 1/10 : 1/5 = 0.05 : 0.1 : 0.2 = 1 : 2 : 4
With $100,000 total capital:
- Asset A: $14,286 (14.3%)
- Asset B: $28,571 (28.6%)
- Asset C: $57,143 (57.1%)
Advantages of Risk Parity
- True Diversification: Not just capital diversification, but risk diversification
- Reduced Portfolio Volatility: Balance risk across low-correlation assets
- High Adaptability: Adjust risk budgets based on market conditions
Application in Futures Trading
For multi-strategy or multi-market traders:
Total Risk Budget = 10% of capital
Strategy Risk Allocation:
- Trend following: 40% of risk budget
- Mean reversion: 30% of risk budget
- Breakout: 30% of risk budget
Adjust position sizes based on each strategy's historical volatility
to match actual risk contribution to budget
Sentinel Position Sizing Tool
Why You Need Professional Tools
Manual position sizing is error-prone, especially under pressure. Sentinel provides automated capital management:
Core Features:
- Intelligent Position Calculation
- Supports Kelly Criterion, Fixed Ratio, Risk Parity
- Real-time adjustment based on account balance
- Considers margin requirements and liquidity
- Risk Alert System
- Daily loss limit warnings
- Consecutive loss reduction mechanisms
- Equity curve monitoring
- Multi-Account Management
- Unified risk control
- Cross-account capital allocation
- Performance tracking and analysis
Position Sizing Example
# Sentinel position calculation logic
def calculate_position(
account_balance: float, # Account balance
risk_per_trade: float, # Risk percentage per trade
entry_price: float, # Entry price
stop_loss: float, # Stop loss price
contract_value: float # Value per point
) -> dict:
risk_amount = account_balance * (risk_per_trade / 100)
price_risk = abs(entry_price - stop_loss)
position_size = risk_amount / (price_risk * contract_value)
return {
"contracts": round(position_size, 2),
"risk_amount": risk_amount,
"risk_percent": risk_per_trade
}
# Example: NQ Trading
result = calculate_position(
account_balance=50000,
risk_per_trade=2.0, # 2% risk per trade
entry_price=19500,
stop_loss=19450, # 50 point stop
contract_value=20 # NQ $20 per point
)
# Result: Trade 1 contract, Risk $1,000 (2%)
Capital Management Checklist
- [ ] Confirm risk amount before each trade
- [ ] Ensure stop loss aligns with risk budget
- [ ] Check margin requirements are sufficient
- [ ] Verify daily/weekly risk limits
- [ ] Record trade rationale and expected risk
- [ ] Regularly review equity curve and drawdowns
Conclusion: Capital Management is the Foundation
No matter how sophisticated your strategy, without proper capital management, long-term survival is unlikely.
Three Rules Summary:
- Kelly Criterion: Theoretically optimal, but use half in practice
- Fixed Ratio: Compound profits, reduce during losses—ideal for trend traders
- Risk Parity: True risk diversification—essential for multi-strategy traders
Remember this formula:
Long-term Profit = Positive Expectancy Strategy × Strict Capital Management × Psychological Discipline
Missing any one component makes long-term success impossible.
Get Started with Sentinel
The Sentinel trading system integrates advanced capital management features to help you survive and profit in the markets long-term.
👉 Learn more about Sentinel capital management
👉 Try the free position size calculator
Risk Disclaimer: Futures trading involves substantial risk and may result in loss of capital. Past performance does not guarantee future results. Please carefully assess risks based on your financial situation.
相關閱讀
- Quantitative Trading for Beginners: Build Your First Strategy with Python
- A Day in the Life of a Full-Time Quant Trader: Daily Workflow & Mindset Guide
- From $100K to $1M: Quant Trading Equity Curve Growth Strategy Guide
- Volatility Analysis 2026: Dynamic Stop Loss Strategies Using ATR & Bollinger Bands
- 5 Critical Backtesting Traps: How to Avoid Overfitting, Survivorship & Look-Ahead Bias