earnings-calendar
Get upcoming earnings dates with timing (before/after market) and EPS estimates. Use when user asks about earnings dates, earnings calendar, when a company…
Stock ticker symbol(s) - single or space-separated list (e.g., AAPL or "AAPL MSFT GOOGL")
$ npx -y skills add staskh/trading_skills --skill report-stock --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/report-stockContext preview
The summary Claude sees to decide when to auto-load this skill.
Stock ticker symbol(s) - single or space-separated list (e.g., AAPL or "AAPL MSFT GOOGL")
name: report-stock
description: Generate comprehensive stock analysis report (PDF or markdown) with trend, PMCC, and fundamental analysis
user_invocable: true
arguments:
- name: symbols
description: Stock ticker symbol(s) - single or space-separated list (e.g., AAPL or "AAPL MSFT GOOGL")
required: true
dependencies: ["trading-skills"]Generates professional reports with comprehensive stock analysis including trend analysis, PMCC viability, and fundamental metrics. Supports both PDF and markdown output formats.
Run the report script for each symbol:
uv run python scripts/report.py SYMBOL
The script returns detailed JSON with:
**Step 2a — Write markdown**
Read `templates/markdown-template.md` for formatting instructions. Generate a markdown report from the JSON data and save to `sandbox/` as:
sandbox/{SYMBOL}_Analysis_Report_{YYYY-MM-DD}_{HHmm}.md**Step 2b — Convert to PDF (if requested)**
Invoke the `markdown-to-pdf` skill on the markdown file just created:
uv run python .claude/skills/markdown-to-pdf/scripts/markdown_to_pdf.py sandbox/{SYMBOL}_Analysis_Report_{YYYY-MM-DD}_{HHmm}.mdThe PDF is written alongside the markdown file with the same basename.
After generating the report, tell the user: 1. The recommendation (BUY/HOLD/AVOID) 2. Key strengths and risks 3. The report file path
# Single symbol uv run python scripts/report.py AAPL # Multiple symbols - run separately uv run python scripts/report.py AAPL uv run python scripts/report.py MSFT
All sections defined in `templates/markdown-template.md`:
1. **Header** — symbol, company name, generated timestamp 2. **Recommendation** — BUY/HOLD/AVOID with strengths and risks 3. **Company Overview** — sector, industry, market cap, beta 4. **Trend Analysis** — bullish score, RSI, MACD, ADX, SMA distances, earnings date, signals list 5. **Fundamental Analysis** — valuation (P/E, P/B, EPS), profitability (margins, ROE, ROA, growth), dividend & balance sheet, earnings history (up to 8 quarters) 6. **Piotroski F-Score** — all 9 criteria with PASS/FAIL 7. **Insider Trading** — net sentiment, buy/sell counts, recent transactions (omitted if no data) 8. **PMCC Viability** — score, IV, LEAPS/short leg details, trade metrics (yield, capital required) 9. **Option Spread Strategies** — bull call, bear put, straddle, strangle, iron condor 10. **Investment Summary** — strengths and risk factors 11. **Disclaimer footer**
This skill aggregates data from:
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.
Most retail traders juggle 5+ tabs — broker, charting platform, screener, news feed, spreadsheet — just to decide whether to enter a trade. This project collapses all of that into a single conversational interface powered by Claude.
Get upcoming earnings dates with timing (before/after market) and EPS estimates. Use when user asks about earnings dates, earnings calendar, when a company…
Get fundamental financial data including financials, earnings, and key metrics. Use when user asks about financials, earnings, revenue, profit, balance sheet,…
Calculate option Greeks (delta, gamma, theta, vega) and implied volatility for specific options. Use when user asks about Greeks, delta, gamma, theta, vega,…
Get account summary from Interactive Brokers including cash balance, buying power, and account value. Use when user asks about their account, balance, buying…
Generate tactical collar strategy reports for protecting PMCC positions through earnings or high-risk events. Requires TWS or IB Gateway running locally.
Consolidate IBRK trade CSV files from a directory into a summary report. Groups trades by symbol, underlying, date, strike, buy/sell, and open/close. Outputs…