Agent Skills
› staskh/trading_skills
› earnings-calendar
earnings-calendar
GitHub获取股票即将发布的财报日期、发布时间(盘前/盘后)及EPS预估。支持单只或多只股票代码查询,用于评估持仓风险或规划交易时机。
Trigger Scenarios
查询财报日期
查看 earnings calendar
公司何时发布财报
即将到来的 earnings
Install
npx skills add staskh/trading_skills --skill earnings-calendar -g -y
SKILL.md
Frontmatter
{
"name": "earnings-calendar",
"description": "Get upcoming earnings dates with timing (before\/after market) and EPS estimates. Use when user asks about earnings dates, earnings calendar, when a company reports, or upcoming earnings.",
"dependencies": [
"trading-skills"
]
}
Earnings Calendar
Retrieve upcoming earnings dates for stocks.
Instructions
Note: If
uvis not installed orpyproject.tomlis not found, replaceuv run pythonwithpythonin all commands below.
uv run python scripts/earnings.py SYMBOLS
Arguments
SYMBOLS- Ticker symbol or comma-separated list (e.g.,AAPLorAAPL,MSFT,GOOGL,NVDA)
Output
Single symbol returns:
symbol- Ticker symbolearnings_date- Next earnings date (YYYY-MM-DD)timing- "BMO" (Before Market Open), "AMC" (After Market Close), or nulleps_estimate- Consensus EPS estimate, or null if unavailable
Multiple symbols returns:
results- Array of earnings info, sorted by date (soonest first)
Examples
# Single symbol
uv run python scripts/earnings.py NVDA
# Multiple symbols (sorted by date)
uv run python scripts/earnings.py AAPL,MSFT,GOOGL,NVDA,META
# Portfolio earnings calendar
uv run python scripts/earnings.py CAT,GOOG,HOOD,IWM,NVDA,PLTR,QQQ,UNH
Use Cases
- Check when positions have upcoming earnings risk
- Plan trades around earnings announcements
- Build an earnings calendar for watchlist
Dependencies
pandasyfinance
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


