skills$openclaw/options-analyzer
benzema21610.0k

by benzema216

options-analyzer – OpenClaw Skill

options-analyzer is an OpenClaw Skills integration for data analytics workflows. |

10.0k stars8.4k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026data analytics

Skill Snapshot

nameoptions-analyzer
description| OpenClaw Skills integration.
ownerbenzema216
repositorybenzema216/options-analyzer
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @benzema216/options-analyzer
last updatedFeb 7, 2026

Maintainer

benzema216

benzema216

Maintains options-analyzer in the OpenClaw Skills directory.

View GitHub profile
File Explorer
11 files
.
references
greeks_guide.md
4.7 KB
strategies.md
5.6 KB
scripts
greeks_calc.py
9.8 KB
iv_analysis.py
7.9 KB
options_chain.py
5.3 KB
strategy_analyzer.py
13.1 KB
strategy_recommend.py
10.8 KB
_meta.json
288 B
SKILL.md
2.8 KB
SKILL.md

name: options-analyzer description: | 📊 专业期权策略分析器 — 期权链、Greeks、IV分析、策略推荐一站式解决! 使用 yfinance 获取实时期权数据,Black-Scholes 计算 Greeks。 触发条件: 用户询问期权链、Greeks计算、IV分析、期权策略分析、策略推荐、 Iron Condor/Butterfly/Straddle/Strangle/Spread等策略、"分析期权"、 "推荐期权策略"、"看涨/看跌期权"、Delta/Gamma/Theta/Vega计算、隐含波动率。

📊 Options Analyzer — 专业期权策略分析器

让期权交易变得简单!从数据获取到策略推荐,一站式搞定。

✨ 核心能力

功能脚本说明
期权链options_chain.py获取实时数据,筛选到期日/行权价
Greeksgreeks_calc.pyDelta/Gamma/Theta/Vega/Rho 计算
IV分析iv_analysis.pyIV Rank/Percentile, HV vs IV
策略分析strategy_analyzer.py15+种策略盈亏、Breakeven
策略推荐strategy_recommend.py基于观点+IV环境智能推荐

🚀 快速开始

pip install yfinance mibian pandas numpy  # 安装依赖

期权链

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 计算

# 手动参数 (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 分析

python scripts/iv_analysis.py AAPL
# 输出: ATM IV, IV Rank, IV Percentile, HV(20/60), IV-HV Premium

策略分析

# Iron Condor
python scripts/strategy_analyzer.py --strategy iron_condor --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 bull_call_spread --spot 180 \
  --legs "180c@5.0,190c@2.0" --dte 30

策略推荐

python scripts/strategy_recommend.py AAPL --outlook bullish --risk moderate
python scripts/strategy_recommend.py SPY --outlook neutral --risk conservative

📚 参考文档


☕ 支持作者

如果这个工具帮到了你,请考虑请我喝杯咖啡!

你的支持是我持续改进的动力 🚀

README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install options-analyzer?

Run openclaw add @benzema216/options-analyzer in your terminal. This installs options-analyzer into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/benzema216/options-analyzer. Review commits and README documentation before installing.