Clearstreet fundamentals deep dive
Skill clear-street/clearstreet-skills/skills/clearstreet-fundamentals-deep-dive
Generate a one-page research brief for a US stock or ETF using the Clear Street API — fundamentals (market cap, P/E, EPS, beta, sector, 52-week range), analyst consensus (rating + price-target distribution), earnings history (estimate vs actual + surprise %), and the latest quarterly income and cash-flow statements. Use when the user asks to "research", "deep-dive", "analyze", or "give me a one-pager on" a single ticker. For multi-name screens use clearstreet-screener; for an earnings calendar use clearstreet-earnings-radar; for free-form questions use clearstreet-omni-research.From its SKILL.md
npx -y skills add clear-street/clearstreet-skills --skill clearstreet-fundamentals-deep-diveAssembled 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, 438 tokens by cl100k_base, as published. Nobody here has run it
Fundamentals Deep-Dive
Build a single-ticker research brief by joining several Clear Street API endpoints into one markdown page: snapshot, analyst consensus, earnings history, and the latest quarterly statements.
Prerequisites
- Python 3.9+ (standard library only)
CLEARSTREET_API_KEYset in the environment — see the repo README
Quick start
python3 scripts/deep_dive.py NVDA
Usage
deep_dive.py SYMBOL [--quarters N] [--json]
| Argument | Default | Description |
|---|---|---|
SYMBOL | (required) | Ticker (e.g. NVDA) or instrument UUID |
--quarters | 4 | Number of earnings quarters to display |
--json | off | Emit the raw merged JSON instead of markdown |
Examples
| Ask | Command |
|---|---|
| "Research NVDA for me" | deep_dive.py NVDA |
| "Deep-dive on Apple, last 8 quarters" | deep_dive.py AAPL --quarters 8 |
| "Income statement and cash flow for TSLA" | deep_dive.py TSLA |
Workflow
- Identify the ticker the user is asking about.
- Run
python3 scripts/deep_dive.py <SYMBOL>. - Present the markdown brief directly — it's formatted for chat, Slack, or a doc. Show only the fields the brief includes; if you add any instrument-identity details, omit option-only fields (expiry / strike) for stocks and ETFs, and don't surface the internal instrument id (UUID).
- For free-form follow-ups ("is it a buy?"), chain to
clearstreet-omni-research.
See reference.md for endpoint and field details.
Safety
Read-only. The script issues only GET requests and never touches order or position endpoints. Output is informational, not investment advice.
What ships with it: 3 files
15.0 KB alongside SKILL.md, 2 of them executable
scripts/
- clearstreet_client.pyruns3.8 KB
- deep_dive.pyruns8.9 KB
- reference.md2.4 KB