Don't Compare Dollars, Compare Weights
- Normalize by AUM
- Check deviation from benchmark (active share)
- Look at edges — small positions where passive and active diverge
def active_share(filer_weights, benchmark_weights):
return sum(abs(fw - bw) for fw, bw in zip(filer_weights, benchmark_weights)) / 2
Originally published at 13finsight.com
Top comments (0)