Strategy Intermediate

Capital Management Rules: Kelly Criterion, Fixed Ratio & Risk Parity Explained

Sentinel Team · 2026-03-06
Capital Management Rules: Kelly Criterion, Fixed Ratio & Risk Parity Explained

Capital Management Rules: Kelly Criterion, Fixed Ratio & Risk Parity Explained

Right Strategy, But Still Blowing Up?

Have you ever experienced this?

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:

This is the mathematical asymmetry of losses: losing 50% requires gaining 100% just to break even.

Three Core Objectives of Capital Management

  1. Survival First: Ensure you don't blow up during losing streaks
  2. Steady Growth: Keep your equity curve smoothly trending upward
  3. 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:

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

2. Underestimated Volatility

3. Extreme Psychological Pressure

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:

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

  1. True Diversification: Not just capital diversification, but risk diversification
  2. Reduced Portfolio Volatility: Balance risk across low-correlation assets
  3. 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:

  1. Intelligent Position Calculation
  1. Risk Alert System
  1. Multi-Account Management

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

Conclusion: Capital Management is the Foundation

No matter how sophisticated your strategy, without proper capital management, long-term survival is unlikely.

Three Rules Summary:

  1. Kelly Criterion: Theoretically optimal, but use half in practice
  2. Fixed Ratio: Compound profits, reduce during losses—ideal for trend traders
  3. 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.


相關閱讀

延伸閱讀