Use this skill to track institutional investor ownership changes and portfolio flows using 13F filings data. Analyzes hedge funds, mutual funds, and other institutional holders to identify stocks with significant smart money accumulation or distribution. Helps discover stocks before major moves by following where sophisticated investors are deploying capital.
pasie150 星標2026年4月17日
職業
分類
金融同投資
技能內容
Overview
This skill tracks institutional investor activity through 13F SEC filings to identify "smart money" flows into and out of stocks. By analyzing quarterly changes in institutional ownership, you can discover stocks that sophisticated investors are accumulating before major price moves, or identify potential risks when institutions are reducing positions.
Key Insight: Institutional investors (hedge funds, pension funds, mutual funds) manage trillions of dollars and conduct extensive research. Their collective buying/selling patterns often precede significant price movements by 1-3 quarters.
Prerequisites
FMP API Key: Set FMP_API_KEY environment variable or pass --api-key to scripts
Python 3.8+: Required for running analysis scripts
Validating investment ideas (checking if smart money agrees with your thesis)
Discovering new opportunities (finding stocks institutions are accumulating)
Risk assessment (identifying stocks institutions are exiting)
Portfolio monitoring (tracking institutional support for your holdings)
Following specific investors (tracking Warren Buffett, Cathie Wood, etc.)
Sector rotation analysis (identifying where institutions are rotating capital)
Do NOT use when:
Seeking real-time intraday signals (13F data has 45-day reporting lag)
Analyzing micro-cap stocks (<$100M market cap with limited institutional interest)
Looking for short-term trading signals (<3 months horizon)
Data Sources & Requirements
Required: FMP API Key
This skill uses Financial Modeling Prep (FMP) API to access 13F filing data:
Setup:
# Set environment variable (preferred)
export FMP_API_KEY=your_key_here
# Or provide when running scripts
python3 scripts/track_institutional_flow.py --api-key YOUR_KEY
API Tier Requirements:
Free Tier: 250 requests/day (sufficient for analyzing 20-30 stocks quarterly)
Paid Tiers: Higher limits for extensive screening
13F Filing Schedule:
Filed quarterly within 45 days after quarter end
Q1 (Jan-Mar): Filed by mid-May
Q2 (Apr-Jun): Filed by mid-August
Q3 (Jul-Sep): Filed by mid-November
Q4 (Oct-Dec): Filed by mid-February
Analysis Workflow
Step 1: Identify Stocks with Significant Institutional Changes
Execute the main screening script to find stocks with notable institutional activity:
Quick scan (top 50 stocks by institutional change):
Concentration: High concentration (top 10 > 50%) = risk if they sell
Quality of Holders: Presence of quality long-term investors (Berkshire, Fidelity) vs momentum funds
Step 3: Track Specific Institutional Investors
Note:track_institution_portfolio.py is not yet implemented. FMP API organizes
institutional holder data by stock (not by institution), making full portfolio reconstruction
impractical via this API alone.
Alternative approach — use analyze_single_stock.py to check if a specific institution holds a stock:
# Analyze a stock and look for a specific institution in the output
python3 institutional-flow-tracker/scripts/analyze_single_stock.py AAPL
# Then search the report for "Berkshire" or "ARK" in the Top 20 holders table
For full institution-level portfolio tracking, use these external resources:
Institutional Ownership Trend (current vs historical)
Top Holders and Changes
New Buyers vs Sellers
Concentration Analysis
Interpretation and Recommendations
Data Sources and Timestamp
Data Reliability Grades
All analysis now includes a reliability grade based on data quality:
Grade A: Coverage ratio < 3x, match ratio >= 50%, genuine holder ratio >= 70%. Safe for investment decisions.
Grade B: Genuine holder ratio >= 30%. Reference only - use with caution.
Grade C: Genuine holder ratio < 30%. UNRELIABLE - excluded from screening results.
The screening script (track_institutional_flow.py) automatically excludes Grade C stocks.
The single stock analysis (analyze_single_stock.py) displays the grade with appropriate warnings.
Why this matters: FMP returns different numbers of holders per quarter. A stock may show
5,415 holders in Q4 but only 201 in Q3. Without filtering, aggregate metrics produce
misleading percent changes (e.g., +400%). The data quality module filters to "genuine" holders
(present in both quarters) to produce reliable metrics.
Limitations and Caveats
Data Lag:
13F filings have 45-day reporting delay
Positions may have changed since filing date
Use as confirming indicator, not leading signal
Coverage:
Only institutions managing >$100M are required to file
Excludes individual investors and smaller funds
International institutions may not file 13F
Reporting Rules:
Only long equity positions reported (no shorts, options, bonds)
Holdings as of quarter-end snapshot
Some positions may be confidential (delayed reporting)
Interpretation:
Correlation ≠ causation (stocks can fall despite institutional buying)
Consider overall market environment and fundamentals
Combine with technical analysis and other skills
Advanced Use Cases
Insider + Institutional Combo:
Look for stocks where both insiders AND institutions are buying
Particularly powerful signal when aligned
Sector Rotation Detection:
Track aggregate institutional flows by sector
Identify early rotation trends before they appear in price
Contrarian Plays:
Find quality stocks institutions are selling (potential value)
Requires strong fundamental conviction
Smart Money Validation:
Before major position, check if smart money agrees
Gain confidence or find overlooked risks
References
The references/ folder contains detailed guides:
13f_filings_guide.md - Comprehensive guide to 13F SEC filings, what they include, reporting requirements, and data quality considerations
institutional_investor_types.md - Different types of institutional investors (hedge funds, mutual funds, pension funds, etc.), their typical strategies, and how to interpret their moves
interpretation_framework.md - Detailed framework for interpreting institutional ownership changes, signal quality assessment, and integration with other analysis
Script Parameters
track_institutional_flow.py
Main screening script for finding stocks with significant institutional changes.
Required:
--api-key: FMP API key (or set FMP_API_KEY environment variable)
Optional:
--top N: Return top N stocks by institutional change (default: 50)
--min-change-percent X: Minimum % change in institutional ownership (default: 10)
--min-market-cap X: Minimum market cap in dollars (default: 1B)
--sector NAME: Filter by specific sector
--min-institutions N: Minimum number of institutional holders (default: 10)
--limit N: Number of stocks to fetch from screener (default: 100). Lower values save API calls.
--output FILE: Output JSON file path
--output-dir DIR: Output directory for reports (default: reports/)
--sort-by FIELD: Sort by 'ownership_change' or 'institution_count_change'
analyze_single_stock.py
Deep dive analysis on a specific stock's institutional ownership.
Required:
Ticker symbol (positional argument)
--api-key: FMP API key (or set FMP_API_KEY environment variable)
Optional:
--quarters N: Number of quarters to analyze (default: 8, i.e., 2 years)
--output FILE: Output markdown report path
--output-dir DIR: Output directory for reports (default: reports/)
--compare-to TICKER: Compare institutional ownership to another stock (future feature)
track_institution_portfolio.py
Status: NOT YET IMPLEMENTED
This script is a placeholder. It prints alternative resources (WhaleWisdom, SEC EDGAR, DataRoma) and exits with error code 1. FMP API organizes institutional holder data by stock (not by institution), making full portfolio reconstruction impractical.
1. Run Value Dividend Screener to find candidates
2. For each candidate, check institutional flow
3. Prioritize stocks with rising institutional ownership
US Stock Analysis + Institutional Flow:
1. Run comprehensive fundamental analysis
2. Validate with institutional ownership trends
3. If institutions are selling, investigate why
Portfolio Manager + Institutional Flow:
1. Fetch current portfolio via Alpaca
2. Run institutional analysis on each holding
3. Flag positions with deteriorating institutional support
4. Consider rebalancing away from distribution
Technical Analyst + Institutional Flow:
1. Identify technical setup (e.g., breakout)
2. Check if institutional buying confirms
3. Higher conviction if both align
Best Practices
Quarterly Reviews: Set calendar reminders for 13F filing deadlines
Multi-Quarter Trends: Look for sustained trends (3+ quarters), not one-time changes
Quality Over Quantity: Berkshire adding > 100 small funds adding
Context Matters: Rising ownership in a falling stock may be value investors catching a falling knife
Combine Signals: Never use institutional flow in isolation
Update Your Data: Re-run analysis each quarter as new 13Fs are filed
Note: This skill is designed for long-term investors (3-12 month horizon). For short-term trading, combine with technical analysis and other momentum indicators.