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 tactical collar strategy reports for protecting PMCC positions through earnings or high-risk events. Requires TWS or IB Gateway running locally.
$ npx -y skills add staskh/trading_skills --skill ib-collar --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/ib-collarContext preview
The summary Claude sees to decide when to auto-load this skill.
Generate tactical collar strategy reports for protecting PMCC positions through earnings or high-risk events. Requires TWS or IB Gateway running locally.
name: ib-collar description: Generate tactical collar strategy reports for protecting PMCC positions through earnings or high-risk events. Requires TWS or IB Gateway running locally. dependencies: ["trading-skills"]
Generate a tactical collar strategy report for protecting PMCC positions through earnings or high-risk events.
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.
uv run python scripts/collar.py SYMBOL [--port PORT] [--account ACCOUNT]
The script returns JSON to stdout with all position and scenario data.
Read `templates/markdown-template.md` for formatting instructions. Generate a markdown report from the JSON data and save to `sandbox/`.
Present key findings to the user: recommended put protection, cost/benefit, and the saved report path.
The script returns JSON with these key fields:
1. **Position Summary**: Current PMCC structure (long calls, short calls) 2. **PMCC Health Check**: Is structure proper (short > long strike) or broken? 3. **Earnings Risk**: Next earnings date and days until event 4. **Put Duration Analysis**: Comparison of short vs medium vs long-dated puts 5. **Collar Scenarios**: Gap up, flat, gap down outcomes with each put duration 6. **Cost/Benefit Analysis**: Insurance cost vs protection value 7. **Implementation Timeline**: Step-by-step checklist with dates 8. **Recommendation**: Optimal put strike and expiration
**Proper PMCC Structure**:
**Broken PMCC Structure**:
**Tactical Collar**:
**Put Duration Trade-offs**:
# Analyze NVDA position (defaults to paper port 7497) uv run python scripts/collar.py NVDA # Analyze specific account uv run python scripts/collar.py AMZN --account U790497 # Use paper trading port instead uv run python scripts/collar.py NVDA --port 7497
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…
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…
Find roll options for existing short positions OR find best covered call/put to open against long stock. Use when user asks about rolling shorts, finding roll…