Clearstreet earnings radar
Skill clear-street/clearstreet-skills/skills/clearstreet-earnings-radar
Pull a forward-looking earnings calendar — every US-listed company reporting between two dates, with EPS and revenue estimates, optionally annotated with each name's prior-quarter surprise. Use when the user asks "who reports this week?", "earnings calendar for [dates]", or "any big prints tomorrow?". For a single-ticker drill-down, chain to clearstreet-fundamentals-deep-dive; for analyst views, use clearstreet-omni-research.From its SKILL.md
npx -y skills add clear-street/clearstreet-skills --skill clearstreet-earnings-radarAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
2.3 KB, 518 tokens by cl100k_base, as published. Nobody here has run it
Earnings Radar
Show a forward-looking earnings calendar, ranked per day by estimated revenue, optionally annotated with each company's prior-quarter surprise.
Prerequisites
- Python 3.9+ (standard library only)
CLEARSTREET_API_KEYset in the environment — see the repo README
Quick start
# Reporting today through Friday, US-listed, top 30 by estimated revenue
python3 scripts/radar.py --days 5 --currency USD --top 30
Usage
radar.py [--days N | --from YYYY-MM-DD --to YYYY-MM-DD]
[--currency USD] [--top N] [--filter-symbols S1,S2]
[--include-prior-surprise] [--json]
| Flag | Default | Description |
|---|---|---|
--days | 5 | Forward window from today |
--from / --to | — | Explicit date window (overrides --days) |
--currency | (none) | Filter by reporting currency (e.g. USD) |
--top | 40 | Max rows per date, ranked by revenue estimate |
--filter-symbols | (none) | Comma-separated ticker whitelist |
--include-prior-surprise | off | Add last quarter's EPS/revenue surprise (one extra call per row) |
--json | off | Raw JSON output |
Examples
| Ask | Command |
|---|---|
| "Who reports this week?" | radar.py --days 5 --currency USD |
| "Earnings calendar next 14 days" | radar.py --days 14 |
| "Big prints tomorrow?" | radar.py --from 2026-06-18 --to 2026-06-18 --top 20 |
Workflow
- Translate the user's date phrase into a
--daysvalue or a--from/--towindow. - Run
radar.py. - Present the returned markdown.
- For a single-ticker drill-down, chain to
clearstreet-fundamentals-deep-dive.
See reference.md for endpoint and field details.
Safety
Read-only. Estimates are consensus figures and subject to change. Output is informational, not investment advice.
What ships with it: 3 files
12.0 KB alongside SKILL.md, 2 of them executable
scripts/
- clearstreet_client.pyruns3.8 KB
- radar.pyruns6.6 KB
- reference.md1.6 KB