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…
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 candidates, writing covered calls, or managing option positions. Requires TWS or IB Gateway running locally.
$ npx -y skills add staskh/trading_skills --skill ib-find-short-roll --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/ib-find-short-rollContext preview
The summary Claude sees to decide when to auto-load this skill.
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 candidates, writing covered calls, or managing option positions. Requires TWS or IB Gateway running locally.
name: ib-find-short-roll description: 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 candidates, writing covered calls, or managing option positions. Requires TWS or IB Gateway running locally. dependencies: ["trading-skills"]
Analyze roll options for short positions or find best short options to open against long stock using real-time data from Interactive Brokers.
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/roll.py SYMBOL [--strike STRIKE] [--expiry YYYYMMDD] [--right C|P] [--port PORT] [--account ACCOUNT] [--iv-multiplier N]
The script returns JSON to stdout with all position and candidate 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 position, credit/debit, and the saved report path.
1. **If short option position exists** (`mode: "roll"`): Analyzes roll candidates to different expirations/strikes 2. **If long option position exists** (`mode: "spread"`): Finds best short call/put to create a vertical spread 3. **If long stock exists** (`mode: "new_short"`): Finds best covered call (or protective put) to open 4. **If none of the above**: Returns error (use --strike/--expiry to specify manually)
The script outputs JSON with `mode` field indicating the analysis type:
The strike search window is IV-aware: `half_band = iv_multiplier × ATM_IV × spot × √(T/365)` where T is the DTE of the nearest roll expiry. For roll mode, ATM IV comes from IB model greeks on the current position's quote; if unavailable, it is estimated from the option mid-price using the Brenner-Subrahmanyam approximation. For new_short mode, a conservative default IV of 30% is used. This makes the band automatically wider for high-IV underlyings without requiring a manual override.
# Auto-detect GOOG position (short option, long option, or long stock) uv run python scripts/roll.py GOOG --port 7497 # Specify exact short position to roll uv run python scripts/roll.py GOOG --strike 350 --expiry 20260206 --right C # Find short call to sell against long call (vertical spread) uv run python scripts/roll.py AUR --right C # Find covered put for long stock uv run python scripts/roll.py TSLA --right P
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…