FlareStart
HomeNewsHow ToSources
FlareStart

Where developers start their day. All the tech news & tutorials that matter, in one place.

Quick Links

  • Home
  • News
  • Tutorials
  • Sources
  • Privacy Policy

Connect

© 2026 FlareStart. All rights reserved.

Back to articles
Measuring Portfolio Concentration: The Metrics That Actually Matter in 13F Analysis
NewsProgramming Languages

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

via Dev.to PythonVic Chen4h ago

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 ) } 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 c

Continue reading on Dev.to Python

Opens in a new tab

Read Full Article
0 views

Related Articles

Transformative New Car Buying focused on the customer paying R3000 less on Any New Car - Guaranteed…
News

Transformative New Car Buying focused on the customer paying R3000 less on Any New Car - Guaranteed…

Medium Programming • 55m ago

QCon London 2026: SBOMs Move From Best Practice to Legal Obligation as CRA Enforcement Looms
News

QCon London 2026: SBOMs Move From Best Practice to Legal Obligation as CRA Enforcement Looms

InfoQ • 1h ago

The great EV pullback: all the obstacles, cancellations, and delays
News

The great EV pullback: all the obstacles, cancellations, and delays

The Verge • 1h ago

News

Seeing types where others don't

Lobsters • 1h ago

Two years later, should you still buy the Sonos Ace? Why my answer is a resounding yes
News

Two years later, should you still buy the Sonos Ace? Why my answer is a resounding yes

ZDNet • 1h ago

Discover More Articles