Best for
- 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)
tradermonty/claude-trading-skills/skills/institutional-flow-tracker/SKILL.md
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.
Decision brief
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.
Compatibility matrix
| Platform | Status | Evidence | What to check |
|---|---|---|---|
| Codex | Not declared | No explicit evidence | Portability before use |
| Claude Code | Not declared | No explicit evidence | Portability before use |
| Cursor | Not declared | No explicit evidence | Portability before use |
| Gemini CLI | Not declared | No explicit evidence | Portability before use |
Installation
The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.
npx skills add https://github.com/tradermonty/claude-trading-skills --skill "skills/institutional-flow-tracker"Inspect the Agent Skill "institutional-flow-tracker" from https://github.com/tradermonty/claude-trading-skills/blob/51c790740048c4cbc9b7cc82a7f3ddc7b12d31d0/skills/institutional-flow-tracker/SKILL.md at commit 51c790740048c4cbc9b7cc82a7f3ddc7b12d31d0. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.
Workflow
Execute the main screening script to find stocks with notable institutional activity:
Execute the main screening script to find stocks with notable institutional activity:
For detailed analysis of a specific stock's institutional ownership:
Note: trackinstitutionportfolio.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.
Read the references for interpretation guidance: - references/13ffilingsguide.md - Understanding 13F data and limitations - references/institutionalinvestortypes.md - Different investor types and their strategies - references/interpretationframework.md - How to interpret institu…
Permission review
The documentation asks the agent to run terminal commands or scripts.
python3 scripts/track_institutional_flow.py --api-key YOUR_KEYThe documentation asks the agent to run terminal commands or scripts.
Execute the main screening script to find stocks with notable institutional activity:Evidence record
| Signal | Value | Evidence type | Meaning |
|---|---|---|---|
| Quality score | 91/100 | Computed | Documentation, specificity, maintenance, and trust rules |
| Repository stars | 2,715 | Source | Repository attention, not individual Skill quality |
| Compatibility | 0 platforms | Source | Declared in the catalog source record |
| Usage guide | automated source guide | Editorial | Generated or reviewed according to the visible evidence level |
Pinned source
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.
FMP_API_KEY environment variable or pass --api-key to scriptspip install requests (scripts handle missing dependencies gracefully)Use this skill when:
Do NOT use when:
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:
13F Filing Schedule:
Execute the main screening script to find stocks with notable institutional activity:
Quick scan (top 50 stocks by institutional change):
python3 scripts/track_institutional_flow.py \
--top 50 \
--min-change-percent 10
Sector-focused scan:
python3 scripts/track_institutional_flow.py \
--sector Technology \
--min-institutions 20
Custom screening:
python3 scripts/track_institutional_flow.py \
--min-market-cap 2000000000 \
--min-change-percent 15 \
--top 100 \
--output institutional_flow_results.json
Output includes:
For detailed analysis of a specific stock's institutional ownership:
python3 scripts/analyze_single_stock.py AAPL
This generates:
Key metrics to evaluate:
Note:
track_institution_portfolio.pyis 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:
Read the references for interpretation guidance:
references/13f_filings_guide.md - Understanding 13F data and limitationsreferences/institutional_investor_types.md - Different investor types and their strategiesreferences/interpretation_framework.md - How to interpret institutional flow signalsSignal Strength Framework:
Strong Bullish (Consider buying):
Moderate Bullish:
Neutral:
Moderate Bearish:
Strong Bearish (Consider selling/avoiding):
For new positions:
For existing holdings:
Screening workflow integration:
All analysis generates structured markdown reports saved to repository root:
Filename convention: institutional_flow_analysis_<TICKER/THEME>_<DATE>.md
Report sections:
All analysis includes a coverage-based reliability grade:
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 coverage, not per-holder reconciliation: Metrics are sourced from FMP's aggregate 13F
summary (institutional-ownership/symbol-positions-summary), which reconciles
quarter-over-quarter deltas across all filing managers at source. This replaces the retired
/api/v3/institutional-holder feed, which returned asymmetric per-holder lists across quarters
(e.g., 5,415 holders one quarter, 201 the next) and required client-side filtering to avoid
inflated percent changes. With the reconciled summary, the remaining quality signal that matters
in practice is breadth (how many managers hold the name) and whether a prior quarter exists
to measure change against — which is what the grade now reflects.
Data Lag:
Coverage:
Reporting Rules:
Interpretation:
Insider + Institutional Combo:
Sector Rotation Detection:
Contrarian Plays:
Smart Money Validation:
The references/ folder contains detailed guides:
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'Deep dive analysis on a specific stock's institutional ownership.
Required:
--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)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.
For institution-specific portfolio tracking, use:
Shared utility module used by both track_institutional_flow.py and analyze_single_stock.py:
current_quarter(), iter_quarters(), quarter_end_date()): walk back to the most recent quarter with filed 13F dataextract-analytics/holder row to {name, shares, change, is_new, is_sold_out}Value Dividend Screener + Institutional Flow:
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
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.
Frequently asked questions
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.
The source record exposes this install command: npx skills add https://github.com/tradermonty/claude-trading-skills --skill "skills/institutional-flow-tracker". Inspect the command and pinned source before running it.
Static rules flagged exec-script in the source; the page lists the matching lines and excerpts.
Alternatives
alirezarezvani/claude-skills
App Store Optimization (ASO) toolkit for researching keywords, analyzing competitor rankings, generating metadata suggestions, and improving app visibility on Apple App Store and Google Play Store. Use when the user asks about ASO, app store rankings, app metadata, app titles and descriptions, app store listings, app visibility, or mobile app marketing on iOS or Android. Supports keyword research and scoring, competitor keyword analysis, metadata optimization, A/B test planning, launch checklist
brucesongs/kali-claw
Insecure Design (OWASP A06:2025) focuses on security flaws in system architecture and design phases, rather than code implementation-level bugs.
NintendaDev/unikit-ai
Generate and maintain the project's TECHNICAL documentation from its codebase — scans the project structure, tech stack, and module boundaries, then writes a lean README landing page plus detailed topic pages (architecture, modules, setup, build, APIs), only the docs that are relevant. Use whenever the user wants to create, update, or validate documentation of the CODE or the project itself, e.g. "generate documentation", "create docs", "write the README", "update the project docs", "document th
K-Dense-AI/scientific-agent-skills
Distributed computing for larger-than-RAM pandas/NumPy workflows. Use when you need to scale existing pandas/NumPy code beyond memory or across clusters. Best for parallel file processing, distributed ML, integration with existing pandas code. For out-of-core analytics on single machine use vaex; for in-memory speed use polars.