Risk Management Interactive
Concentration Risk
Measure and manage exposure to single events, sports, or correlated outcomes. Diversification reduces variance without sacrificing expected return.
๐ Herfindahl-Hirschman Index (HHI)
HHI = ฮฃ (share_i)ยฒ
- share_i = Percentage exposure to segment i
- < 1500 = Low concentration
- 1500-2500 = Moderate
- > 2500 = High concentration
Interpretation
- โข 10000: All exposure in one segment
- โข 2000: 5 equal segments
- โข 1000: 10 equal segments
- โข Lower HHI = better diversification
Exposure by Sport
0 60
0 60
0 60
0 60
0 60
0 60
Total 100%
๐ Concentration Analysis
2300
HHI Score
4.3
Effective # Segments
Moderate Concentration
Risk Level: Medium
0 (Diversified) 10000 (All in one)
Exposure Distribution
โ ๏ธ Single Event Risk
1 20
50 500
Single Event Concentration
5.0%
of total liability
โ Acceptable Well-diversified event exposure.
๐ฏ Types of Concentration Risk
NFL
High correlation on Sundays, 1PM slate exposure
NBA
Back-to-back games, load management uncertainty
Parlay
Correlated legs (same game, same team)
Player
Injury exposure, single star dependence
๐ก๏ธ Mitigation Strategies
Limits & Controls
- โ Max % of book on single event
- โ Max exposure per sport/league
- โ Parlay leg correlation caps
- โ Time-based concentration limits (Sunday slate)
Active Management
- โ Move lines to balance exposure
- โ Hedge at other books
- โ Reduce limits on concentrated outcomes
- โ Real-time exposure monitoring
R Code Equivalent
# Calculate Herfindahl-Hirschman Index
calculate_hhi <- function(exposures) {
shares <- exposures / sum(exposures) * 100
hhi <- sum(shares^2)
return(hhi)
}
# Effective number of segments
effective_n <- function(hhi) {
10000 / hhi
}
# Classify concentration
classify_concentration <- function(hhi) {
if (hhi >= 2500) return("High")
if (hhi >= 1500) return("Moderate")
return("Low")
}
# Example
exposures <- c(35, 25, 15, 10, 10, 5)
hhi <- calculate_hhi(exposures)
cat(sprintf("HHI: %.0f - %s concentration\n", hhi, classify_concentration(hhi)))
cat(sprintf("Effective # segments: %.1f\n", effective_n(hhi)))โ Key Takeaways
- โข HHI measures portfolio concentration (lower = better)
- โข <1500 = diverse, >2500 = concentrated
- โข Single event risk should be capped
- โข Diversification reduces variance, not EV
- โข Watch for hidden correlations (same game parlays)
- โข Active management: move lines, hedge, limit