Common Reasons for 'New' Positions
- Index reconstitution
- Fund wrapper changes
- Reporting threshold crossed
- Corporate actions (spinoffs, mergers)
def is_genuine_new_bet(position, filer):
if filer.is_passive: return False
if position.value < filer.aum * 0.001: return False
return True
Originally published at 13finsight.com
Top comments (0)