Claude Skill MartBrowse skillsQuick linesLearn by videoTerminal guideWhat is a Skill?
Back to list

Earnings Calendar

Look up the next earnings date, BMO/AMC timing and consensus EPS for any ticker or list of tickers.

Data & AnalyticsBeginner32873AI score 9/10Last updated: Aug 10, 2026

What it does

  • Returns the next earnings date (YYYY-MM-DD) for a stock symbol.
  • Flags whether the report lands before market open (BMO) or after market close (AMC).
  • Includes the consensus EPS estimate (null when unavailable).
  • Accepts comma-separated tickers and returns a calendar sorted soonest-first.
  • All time logic uses America/New_York; output carries generated_at and data_delay.

Who it's for

  • Retail investors managing earnings-event risk on US positions.
  • Short-term traders planning earnings plays.
  • Anyone maintaining a watchlist that needs a recurring earnings schedule.

Examples

  1. "When does NVDA report?" → uv run python scripts/earnings.py NVDA
  2. "Build an earnings calendar for my portfolio" → ... earnings.py CAT,GOOG,HOOD,NVDA,PLTR,UNH
  3. "Order these big-tech names by report date" → ... earnings.py AAPL,MSFT,GOOGL,NVDA,META

· · · Install guide · · ·

Try it now, no install

Paste this into Claude to use the skill without installing anything.

Read the instructions in this file and follow them to help me:
https://raw.githubusercontent.com/staskh/trading_skills/HEAD/.claude/skills/earnings-calendar/SKILL.md

What I want: (describe your task here)

If Claude can't open the link, open it yourself and paste the contents instead.

If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.

Install in the Claude app (no terminal)
  1. Download the ZIP with the button below.
  2. In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
  3. Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Download ZIP
Install in Claude Code

Let Claude do it — paste this into Claude Code

Install the skill I found on Claude Skill Mart.
Copy the .claude/skills/earnings-calendar folder from the GitHub repo staskh/trading_skills into my ~/.claude/skills/earnings-calendar/.
When it's done, tell me in one line what this skill can do.

Install with a command instead

git clone https://github.com/staskh/trading_skills.git && mkdir -p ~/.claude/skills && cp -r trading_skills/.claude/skills/earnings-calendar ~/.claude/skills/

This is a third-party skill. Check the source repository before installing.

  1. Open a terminal and clone the repo: git clone https://github.com/staskh/trading_skills.git
  2. Create the skills folder: mkdir -p ~/.claude/skills
  3. Copy the skill: cp -r trading_skills/.claude/skills/earnings-calendar ~/.claude/skills/
  4. This skill depends on the trading-skills base package, so copy that skill from the same repo too.
  5. Install Python deps: pip install pandas yfinance (or run uv sync at the repo root).
  6. Restart Claude Code and ask something like "When is NVDA's next earnings date?"
  7. If uv isn't installed, replace uv run python with python in the commands.