DEV Community

Vic Chen
Vic Chen

Posted on • Originally published at 13finsight.com

Measuring Portfolio Concentration: The Metrics That Actually Matter in 13F Analysis

Why Concentration Matters

Portfolio concentration is one of the most predictive signals in institutional holdings data. It tells you:

  • How much a manager trusts their top ideas
  • Whether they're diversifying or concentrating over time
  • How different they are from a passive index

Key Metrics

def concentration_metrics(holdings):
    total = sum(h['value'] for h in holdings)
    sorted_holdings = sorted(holdings, key=lambda x: x['value'], reverse=True)

    return {
        'top1_weight': sorted_holdings[0]['value'] / total,
        'top5_weight': sum(h['value'] for h in sorted_holdings[:5]) / total,
        'top10_weight': sum(h['value'] for h in sorted_holdings[:10]) / total,
        'position_count': len(holdings),
        'herfindahl_index': sum((h['value'] / total) ** 2 for h in holdings)
    }
Enter fullscreen mode Exit fullscreen mode

Real Examples from Q4 2025

Fund Top-1 Weight Total Positions Strategy
Berkshire Hathaway ~49% (AAPL) ~45 High conviction, long hold
Pershing Square ~20% 7 Activist, high concentration
Citadel ~2% 15,000+ Quant, diversified

When High Concentration Is Bullish vs. Bearish

Bullish signals:

  • Concentration increasing into a new position (buying conviction)
  • Manager with track record of concentrated wins
  • Top holding is a growth compounder

Bearish signals:

  • Concentration forced by losses elsewhere
  • Only one position growing (others selling)
  • High concentration in a single sector during downturn

Full breakdown:

https://13finsight.com/learn/understanding-portfolio-concentration-fewer-holdings?utm_source=devto&utm_medium=social&utm_campaign=article_ops_0318


Originally published at 13finsight.com

Top comments (0)