📊 Options Analyzer — 专业期权策略分析器
让期权交易变得简单!从数据获取到策略推荐,一站式搞定。
✨ 核心能力
| 功能 | 脚本 | 说明 |
|---|
| 期权链 | INLINECODE0 | 获取实时数据,筛选到期日/行权价 |
| Greeks |
greeks_calc.py | Delta/Gamma/Theta/Vega/Rho 计算 |
| IV分析 |
iv_analysis.py | IV Rank/Percentile, HV vs IV |
| 策略分析 |
strategy_analyzer.py | 15+种策略盈亏、Breakeven |
| 策略推荐 |
strategy_recommend.py | 基于观点+IV环境智能推荐 |
🚀 快速开始
CODEBLOCK0
期权链
CODEBLOCK1
Greeks 计算
CODEBLOCK2
IV 分析
CODEBLOCK3
策略分析
CODEBLOCK4
策略推荐
CODEBLOCK5
📚 参考文档
☕ 支持作者
如果这个工具帮到了你,请考虑请我喝杯咖啡!
你的支持是我持续改进的动力 🚀
📊 期权分析器 — 专业期权策略分析工具
让期权交易变得简单!从数据获取到策略推荐,一站式搞定。
✨ 核心能力
| 功能 | 脚本 | 说明 |
|---|
| 期权链 | optionschain.py | 获取实时数据,筛选到期日/行权价 |
| Greeks |
greekscalc.py | Delta/Gamma/Theta/Vega/Rho 计算 |
| IV分析 | iv_analysis.py | IV Rank/Percentile, HV vs IV |
| 策略分析 | strategy_analyzer.py | 15+种策略盈亏、盈亏平衡点 |
| 策略推荐 | strategy_recommend.py | 基于观点+IV环境智能推荐 |
🚀 快速开始
bash
pip install yfinance mibian pandas numpy # 安装依赖
期权链
bash
python scripts/options_chain.py AAPL
python scripts/options_chain.py AAPL --expiry 2024-03-15
python scripts/options_chain.py SPY --strike-range 5 # ATM ±5%
python scripts/options_chain.py AAPL --format json
Greeks 计算
bash
手动参数 (iv/rate 用百分比)
python scripts/greeks_calc.py --spot 180 --strike 185 --dte 30 --rate 5 --iv 25 --type call
从实时数据
python scripts/greeks_calc.py --symbol AAPL --strike 185 --expiry 2024-03-15 --type call
IV 分析
bash
python scripts/iv_analysis.py AAPL
输出: ATM IV, IV Rank, IV Percentile, HV(20/60), IV-HV Premium
策略分析
bash
Iron Condor
python scripts/strategy
analyzer.py --strategy ironcondor --spot 180 \
--legs 175p@2.5,180p@4.0,185c@3.5,190c@1.5 --dte 30
Bull Call Spread
python scripts/strategy
analyzer.py --strategy bullcall_spread --spot 180 \
--legs 180c@5.0,190c@2.0 --dte 30
策略推荐
bash
python scripts/strategy_recommend.py AAPL --outlook bullish --risk moderate
python scripts/strategy_recommend.py SPY --outlook neutral --risk conservative
📚 参考文档
☕ 支持作者
如果这个工具帮到了你,请考虑请我喝杯咖啡!
你的支持是我持续改进的动力 🚀