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…
Generate a comprehensive portfolio action report with earnings dates and risk assessment. Use when user asks for portfolio review, action items, earnings risk, or position management across IB accounts. Requires TWS or IB Gateway running locally.
$ npx -y skills add staskh/trading_skills --skill ib-portfolio-action-report --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/ib-portfolio-action-reportContext preview
The summary Claude sees to decide when to auto-load this skill.
Generate a comprehensive portfolio action report with earnings dates and risk assessment. Use when user asks for portfolio review, action items, earnings risk, or position management across IB accounts. Requires TWS or IB Gateway running locally.
name: ib-portfolio-action-report description: Generate a comprehensive portfolio action report with earnings dates and risk assessment. Use when user asks for portfolio review, action items, earnings risk, or position management across IB accounts. Requires TWS or IB Gateway running locally. dependencies: ["trading-skills"]
Generate a comprehensive portfolio action report that analyzes all positions across Interactive Brokers accounts, fetches earnings dates, and provides traffic-light risk indicators (🔴🟡🟢) for each position.
TWS or IB Gateway must be running locally with API enabled:
**Port fallback:** If the configured port fails, automatically retry on the other port. If the retry succeeds, save to memory which account type worked (live/paper) and reuse it for all IB skill calls in this and future sessions — until the user explicitly asks for the other account. If both ports fail, ask the user to verify that TWS or IB Gateway is running with API access enabled.
> **Note:** If `uv` is not installed or `pyproject.toml` is not found, replace `uv run python` with `python` in all commands below.
uv run python scripts/report.py [--port PORT] [--account ACCOUNT]
The script returns JSON to stdout with analyzed portfolio data including risk levels, earnings dates, technical indicators, and spread groupings.
Read `templates/markdown-template.md` for formatting instructions. Generate a markdown report from the JSON data and save to `sandbox/`.
**Filename**: `ib_portfolio_action_report_{ACCOUNT}_{YYYY-MM-DD}_{HHmm}.md`
Present critical findings to the user: red/yellow items requiring attention, top priority actions, and the saved report path.
The script returns structured JSON with:
1. **Critical Summary**: Count of positions by risk level (🔴/🟡/🟢) 2. **Immediate Action Required**: Positions expiring within 2 days 3. **Urgent - Expiring Within 1 Week**: Short-term positions needing attention 4. **Critical Earnings Alert**: Positions with earnings this week 5. **Earnings Next Week**: Upcoming earnings exposure 6. **Expiring in 2 Weeks**: Medium-term expirations 7. **Longer-Dated Positions**: Core holdings with spread analysis 8. **Top Priority Actions**: Numbered action items by urgency 9. **Position Size Summary**: Account-level breakdown 10. **Earnings Calendar**: Next 30 days of earnings dates 11. **Technical Analysis Summary**: RSI, trend, SMAs, MACD, ADX for each underlying
# All accounts (paper, default) uv run python scripts/report.py # Live account uv run python scripts/report.py --port 7496 # Specific account uv run python scripts/report.py --account U790497
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…