insider-trading
GitHub获取一只或多只股票的SEC Form 4内部人交易活动。支持查询高管买卖、交易详情及情绪分析,默认回溯90天,结果按净买入值排序。
Trigger Scenarios
Install
npx skills add staskh/trading_skills --skill insider-trading -g -y
SKILL.md
Frontmatter
{
"name": "insider-trading",
"description": "Get insider trading activity (SEC Form 4 filings) for one or more stocks. Use when user asks about insider buying\/selling, executive transactions, insider sentiment, or Form 4 activity.",
"dependencies": [
"trading-skills"
]
}
Insider Trading
Fetch recent insider transactions from Yahoo Finance (SEC Form 4 data).
Instructions
Note: If
uvis not installed orpyproject.tomlis not found, replaceuv run pythonwithpythonin all commands below.
uv run python scripts/insider_trading.py SYMBOLS [--days DAYS]
Arguments
SYMBOLS- Single ticker or comma-separated list (e.g.,NVDAorNVDA,PLTR,GOOG)--days- Trailing days to look back (default: 90)
Output
Returns JSON with:
transactions- List of insider trades with insider name, role, transaction type, shares, price, value, date, ownership typesummary- Net sentiment (net_buying,net_selling,neutral), buy/sell counts and values
For multiple symbols, results are ranked by net buying value (most buying first).
Use Cases
- "Show me insider buys for NVDA in the last 90 days"
- "Compare insider activity across NVDA, PLTR, GOOG"
- "Which of these stocks has the most insider selling recently?"
Dependencies
yfinance
Timezone
All timestamps and time-based calculations must use the America/New_York timezone. All JSON output must include generated_at (NY time string) and data_delay fields.
Version History
- cc30858 Current 2026-07-05 11:04
Dependencies
-
required
trading-skills


