Skip to main content
Skip to main content
Version: Next 🚧

Risk Management Principles

Introduction

Risk management is the foundation of successful trading. While finding profitable strategies is important, protecting your capital through proper risk management is what separates long-term winners from those who blow up their accounts. This guide covers essential risk management principles, from the fundamental 1-2% rule to advanced portfolio-level risk management.

The 1-2% Risk Rule

Core Principle

Never risk more than 1-2% of your trading capital on any single trade.

This is the most fundamental rule in trading risk management. It ensures that even a string of losses won't devastate your account.

Why It Works

Mathematics of Survival:

10 consecutive losses at 2% risk each:
₹100,000 → ₹98,000 → ₹96,040 → ... → ₹81,707
Remaining: 81.7% of capital

10 consecutive losses at 10% risk each:
₹100,000 → ₹90,000 → ₹81,000 → ... → ₹34,868
Remaining: 34.9% of capital

Recovery Requirements:

Loss    | Required Gain to Recover
--------|------------------------
10% | 11.1%
20% | 25.0%
30% | 42.9%
50% | 100.0%
75% | 300.0%

Implementation

Using Risk-Based Position Sizing:

{
"positionSizing": {
"method": "risk_based",
"riskPercentage": 1.5 // 1.5% risk per trade
},
"riskParameters": {
"stopLoss": 3.0 // 3% stop loss
}
}

Calculation:

Account: ₹100,000
Risk: 1.5% = ₹1,500
Stop Loss: 3%
Entry: ₹500
Stop: ₹485 (3% below entry)

Position Size = ₹1,500 / ₹15 = 100 shares
Total Capital = 100 × ₹500 = ₹50,000 (50% of account)
Max Loss = 100 × ₹15 = ₹1,500 (1.5% of account) ✓

Adjusting Risk Percentage

Conservative (0.5-1%):

  • New traders
  • Learning phase
  • High-volatility markets
  • Drawdown periods

Moderate (1-2%):

  • Experienced traders
  • Proven strategies
  • Normal market conditions
  • Standard approach

Aggressive (2-3%):

  • Very experienced traders
  • High-confidence setups
  • Strong track record
  • Exceptional opportunities

Never Exceed 5%:

  • Even for "sure things"
  • Regardless of confidence
  • No matter the opportunity
  • Discipline is key

Portfolio-Level Risk Management

Total Exposure Limits

Maximum Concurrent Risk:

Individual Trade Risk: 1-2%
Maximum Open Positions: 5-10
Maximum Total Risk: 10-20% of capital

Example:

Account: ₹500,000
Risk per trade: 2%
Open positions: 5

Total Risk = 5 × 2% = 10% of capital
Maximum Loss = ₹500,000 × 0.10 = ₹50,000

Position Concentration

Diversification Rules:

  • Maximum per position: 10-20% of capital
  • Maximum per sector: 25-30% of capital
  • Maximum per strategy: 40-50% of capital
  • Minimum cash reserve: 10-20% of capital

Example Portfolio:

Total Capital: ₹1,000,000

Position 1 (Tech): ₹150,000 (15%)
Position 2 (Finance): ₹120,000 (12%)
Position 3 (Energy): ₹100,000 (10%)
Position 4 (Tech): ₹80,000 (8%)
Position 5 (Healthcare): ₹70,000 (7%)
Cash Reserve: ₹480,000 (48%)

Tech Sector: ₹230,000 (23%) ✓
Largest Position: 15% ✓
Cash Reserve: 48% ✓

Correlation Considerations

Understanding Correlation:

  • High (>0.7): Positions move together
  • Medium (0.4-0.7): Some relationship
  • Low (<0.4): Independent movement
  • Negative (<0): Inverse relationship

Adjusting for Correlation:

Uncorrelated Positions:
- Position 1: 2% risk
- Position 2: 2% risk
- Total Risk: 4%

Highly Correlated Positions (0.8):
- Position 1: 1.5% risk
- Position 2: 1.5% risk
- Effective Risk: ~2.4% (not 3%)

Correlation Matrix Example:

         RELIANCE  TCS  INFY  HDFC
RELIANCE 1.00 0.45 0.42 0.38
TCS 0.45 1.00 0.85 0.35
INFY 0.42 0.85 1.00 0.33
HDFC 0.38 0.35 0.33 1.00

TCS and INFY are highly correlated (0.85)
→ Reduce combined exposure

Daily Loss Limits

Circuit Breaker System:

{
"riskParameters": {
"maxDailyLoss": 50000 // ₹50,000 or 5% of ₹1M account
}
}

How It Works:

  1. System tracks P&L across all algorithms
  2. When daily loss reaches limit, all algorithms pause
  3. No new positions opened
  4. Existing positions remain (exit conditions monitored)
  5. Manual restart required next day

Recommended Limits:

  • Conservative: 1-2% of capital per day
  • Moderate: 2-3% of capital per day
  • Aggressive: 3-5% of capital per day
  • Maximum: Never exceed 10% per day

Example:

Account: ₹1,000,000
Daily Limit: 3% = ₹30,000

Trade 1: -₹8,000
Trade 2: -₹12,000
Trade 3: -₹11,000
Total: -₹31,000

Circuit breaker triggered!
All algorithms paused automatically.

Maximum Open Positions

Position Limits:

{
"riskParameters": {
"maxOpenPositions": 5
}
}

Guidelines:

  • Small Account (<₹1L): 2-3 positions
  • Medium Account (₹1L-₹5L): 3-5 positions
  • Large Account (₹5L-₹20L): 5-10 positions
  • Very Large (>₹20L): 10-20 positions

Why Limit Positions:

  • Prevents over-diversification
  • Maintains focus and monitoring ability
  • Reduces correlation risk
  • Limits total exposure
  • Improves execution quality

Risk Profiles

Conservative Profile

Characteristics:

  • Capital preservation priority
  • Lower returns, lower risk
  • Suitable for risk-averse traders
  • Retirement accounts
  • New traders

Parameters:

{
"positionSizing": {
"method": "risk_based",
"riskPercentage": 0.5 // 0.5% per trade
},
"riskParameters": {
"maxPositionSize": 5.0, // 5% of capital
"stopLoss": 2.0, // 2% stop loss
"maxDailyLoss": 10000, // 1% of ₹1M
"maxOpenPositions": 3,
"riskRewardRatio": 3.0 // 1:3 risk-reward
}
}

Expected Performance:

  • Annual Return: 8-15%
  • Maximum Drawdown: 5-10%
  • Win Rate Required: 40-50%
  • Sharpe Ratio: >1.5

Moderate Profile

Characteristics:

  • Balanced risk-reward
  • Standard approach
  • Most traders
  • Growth with protection

Parameters:

{
"positionSizing": {
"method": "risk_based",
"riskPercentage": 1.5 // 1.5% per trade
},
"riskParameters": {
"maxPositionSize": 10.0, // 10% of capital
"stopLoss": 3.0, // 3% stop loss
"maxDailyLoss": 30000, // 3% of ₹1M
"maxOpenPositions": 5,
"riskRewardRatio": 2.0 // 1:2 risk-reward
}
}

Expected Performance:

  • Annual Return: 15-30%
  • Maximum Drawdown: 10-20%
  • Win Rate Required: 45-55%
  • Sharpe Ratio: >1.0

Aggressive Profile

Characteristics:

  • Maximum growth priority
  • Higher risk tolerance
  • Experienced traders only
  • Can handle volatility

Parameters:

{
"positionSizing": {
"method": "kelly_criterion",
"kellyFraction": 0.5 // Half Kelly
},
"riskParameters": {
"maxPositionSize": 20.0, // 20% of capital
"stopLoss": 5.0, // 5% stop loss
"maxDailyLoss": 50000, // 5% of ₹1M
"maxOpenPositions": 8,
"riskRewardRatio": 1.5 // 1:1.5 risk-reward
}
}

Expected Performance:

  • Annual Return: 30-60%
  • Maximum Drawdown: 20-35%
  • Win Rate Required: 50-60%
  • Sharpe Ratio: >0.8

Warnings:

  • ⚠️ Only for experienced traders
  • ⚠️ Requires strong psychological discipline
  • ⚠️ Higher stress and volatility
  • ⚠️ Can lead to significant drawdowns

Advanced Risk Management

Drawdown Management

Reducing Risk During Drawdowns:

Current Drawdown | Risk Adjustment
-----------------|----------------
0-5% | 100% (normal)
5-10% | 75% (reduce)
10-15% | 50% (significant reduction)
15-20% | 25% (minimal risk)
>20% | 0% (stop trading)

Example:

Normal Risk: 2% per trade
Current Drawdown: 12%

Adjusted Risk = 2% × 0.50 = 1% per trade

Time-Based Risk Limits

Weekly Limits:

{
"riskParameters": {
"maxWeeklyLoss": 100000, // 10% of ₹1M
"maxWeeklyTrades": 25
}
}

Monthly Limits:

{
"riskParameters": {
"maxMonthlyLoss": 200000, // 20% of ₹1M
"maxMonthlyTrades": 100
}
}

Consecutive Loss Limits

Circuit Breaker on Streaks:

{
"riskParameters": {
"maxConsecutiveLosses": 5,
"pauseOnStreak": true
}
}

Why It Matters:

  • Prevents emotional trading
  • Signals potential strategy issues
  • Forces review and adjustment
  • Protects from extended drawdowns

Volatility-Based Adjustments

Scaling Risk with VIX:

VIX Level | Market State | Risk Adjustment
----------|--------------|----------------
<15 | Low Vol | 100-120%
15-20 | Normal | 100%
20-30 | Elevated | 75%
30-40 | High | 50%
>40 | Extreme | 25% or pause

Risk Management Checklist

Before Trading

  • Risk per trade set to 1-2%
  • Daily loss limit configured
  • Maximum positions limit set
  • Stop losses defined for all strategies
  • Position sizing method selected
  • Correlation analysis completed
  • Cash reserve maintained (10-20%)

During Trading

  • Monitor total portfolio exposure
  • Check correlation of open positions
  • Track daily P&L vs limit
  • Verify stop losses are active
  • Review position sizes
  • Watch for circuit breaker triggers

After Trading

  • Calculate actual risk taken
  • Review largest positions
  • Analyze correlation exposure
  • Check drawdown level
  • Adjust risk for next day if needed
  • Document any risk limit breaches

Common Risk Management Mistakes

Mistake 1: Risking Too Much

Problem: "This is a sure thing, I'll risk 10%"

Reality: No trade is certain. One bad trade can wipe out weeks of gains.

Solution: Stick to 1-2% rule religiously, no exceptions.

Mistake 2: No Stop Losses

Problem: "I'll just hold until it comes back"

Reality: Stocks can go to zero. Hope is not a strategy.

Solution: Always use stop losses, no matter how confident.

Mistake 3: Ignoring Correlation

Problem: "I'm diversified, I have 10 positions"

Reality: 10 tech stocks are not diversified.

Solution: Check correlation, limit sector exposure.

Mistake 4: No Daily Limits

Problem: "I can make it back with the next trade"

Reality: Revenge trading leads to bigger losses.

Solution: Set daily loss limits, stop when hit.

Mistake 5: Over-Leveraging

Problem: "I'll use margin to increase returns"

Reality: Leverage amplifies losses more than gains.

Solution: Trade within your capital, avoid excessive leverage.

Mistake 6: Position Size Creep

Problem: Gradually increasing position sizes without realizing

Reality: Risk accumulates, one bad day can be catastrophic.

Solution: Regular reviews, stick to percentage-based sizing.

Risk-Reward Ratios

Understanding Risk-Reward

Definition:

Risk-Reward Ratio = Potential Profit / Potential Loss

Example:
Entry: ₹500
Stop: ₹485 (₹15 risk)
Target: ₹530 (₹30 profit)

Risk-Reward = ₹30 / ₹15 = 2:1

Minimum Ratios by Win Rate

Required Risk-Reward for Profitability:

Win Rate | Min Risk-Reward | Recommended
---------|-----------------|-------------
30% | 2.3:1 | 3:1
40% | 1.5:1 | 2:1
50% | 1:1 | 1.5:1
60% | 0.7:1 | 1:1
70% | 0.4:1 | 1:1

Configuration:

{
"riskParameters": {
"riskRewardRatio": 2.0 // Minimum 1:2
}
}

Asymmetric Risk-Reward

Goal: Win more when right, lose less when wrong

Example:

10 trades, 40% win rate, 1:3 risk-reward:

Wins: 4 × ₹3,000 = ₹12,000
Losses: 6 × ₹1,000 = ₹6,000
Net: ₹6,000 profit

Same with 1:1 risk-reward:
Wins: 4 × ₹1,000 = ₹4,000
Losses: 6 × ₹1,000 = ₹6,000
Net: -₹2,000 loss

Psychological Aspects

Emotional Control

Fear and Greed:

  • Fear → Taking profits too early
  • Greed → Holding losers too long
  • Solution: Predefined rules, automated execution

Revenge Trading:

  • After losses, urge to "make it back"
  • Leads to over-risking
  • Solution: Daily loss limits, mandatory breaks

Overconfidence:

  • After wins, feeling invincible
  • Increasing position sizes
  • Solution: Stick to rules, regular reviews

Discipline

The 3 Ds of Risk Management:

  1. Define: Set clear risk parameters
  2. Document: Write down your rules
  3. Discipline: Follow rules without exception

Building Discipline:

  • Start with paper trading
  • Use automated systems
  • Keep a trading journal
  • Review and reflect regularly
  • Accept that losses are part of trading

Summary

Key Principles:

  1. 1-2% Rule: Never risk more than 1-2% per trade
  2. Portfolio Limits: Maximum 10-20% total risk
  3. Daily Limits: Circuit breaker at 3-5% daily loss
  4. Position Limits: 3-10 concurrent positions
  5. Correlation: Reduce size for correlated positions
  6. Stop Losses: Always use, no exceptions
  7. Risk-Reward: Minimum 1:1.5, prefer 1:2 or better
  8. Drawdown Management: Reduce risk during drawdowns
  9. Profile Selection: Match risk to experience and goals
  10. Discipline: Follow rules consistently

Risk Management Hierarchy:

1. Preserve Capital (most important)
2. Manage Drawdowns
3. Optimize Returns
4. Maximize Growth (least important)

Remember: You can't make money if you've lost all your capital. Risk management comes first, profit optimization comes second.