Features
- Stock quote functionality
- Options chain queries with comprehensive filters
- Delta filters (0.20-0.35 range for options sellers)
- DTE filters (min/max days to expiration) - NEW in v1.1.0
- Volume and open interest filters
- Moneyness filters (OTM/ITM)
- Paper and live trading support
- AI assistant integration ready (Claude, Codex, OpenClaw)
Installation
git clone https://github.com/erix/ib-options-cli.git
cd ib-options-cli
python3 -m venv venv
source venv/bin/activate
pip install ib_insyncQuick Start
# Stock quote
ib-options MSFT --quote
# Put options for selling (30-45 DTE, delta 0.20-0.35, OTM)
ib-options MSFT --chain --right P \
--min-delta 0.20 --max-delta 0.35 \
--min-dte 30 --max-dte 45 \
--otm-onlySee README.md for full documentation.