Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计提醒

einstein-research-options-dv爱因斯坦研究选项 dv

Agent Skill

einstein-research-options-dv 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,220

周安装

129

GitHub Stars

公开资料未说明

下载量

1,042
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:einstein-research-options-dv(爱因斯坦研究选项 dv)
来源仓库:https://github.com/clawdiri-ai/einstein-research-options-dv
安装命令:
openclaw skills install einstein-research-options-dv
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install einstein-research-options-dv

简介

einstein-research-options-dv 提供期权交易策略分析与 Black-Scholes 定价模拟。

  • 专为 OpenClaw 设计,适用于衍生品策略开发与风险评估。
  • 通过 ClawHub 安装,支持 Greeks 计算与 P/L 情景模拟。
  • 使用前需确认权限范围、维护状态,以及是否会触发金融模型运算操作。
  • 建议校准波动率参数并使用蒙特卡洛方法验证极端情况。

SKILL.md

id
einstein-research-options
name
einstein-research-options
description
Options trading strategy analysis and simulation tool. Provides theoretical
version
1.0.0
author
DaVinci
last_amended_at
null
trigger_patterns
[]
pre_conditions
git_repo_required
false
tools_available
[]
expected_output_format
natural_language

Options Strategy Analyzer

Overview

This skill provides comprehensive analysis, simulation, and risk management for options trading strategies. It combines theoretical pricing with practical P/L simulation to help users understand the risk/reward profile of various options positions.

Core Features:

  • Black-Scholes Pricing: Theoretical option value calculation
  • Greeks Calculation: Delta, Gamma, Theta, Vega, Rho
  • Strategy Simulation: P/L charts for common strategies (covered calls, spreads, etc.)
  • Volatility Analysis: Implied vs. historical volatility, IV Rank/Percentile
  • Risk Management: Position sizing, max loss calculation, earnings event awareness
  • Educational Focus: Provides clear explanations of concepts and trade-offs

When to Use This Skill

Explicit Triggers:

  • "Analyze a covered call on AAPL"
  • "Show me the P/L for a protective put on TSLA"
  • "What's a good options strategy for a high-volatility stock?"
  • "Calculate the Greeks for this SPY call option"
  • "Simulate an iron condor on QQQ for next month"
  • "Help me with an options play for the upcoming earnings report"
  • "What are the risks of a cash-secured put?"
  • User mentions specific options strategies: covered call, protective put, cash-secured put, credit/debit spread, iron condor, straddle, strangle

Implicit Triggers:

  • User wants to hedge a stock position
  • User is looking for income-generating strategies
  • User is speculating on a large price move (up or down)
  • User asks about managing risk for an options trade

When NOT to Use:

  • Simple stock analysis (use us-stock-analysis)
  • Portfolio-level risk management (use portfolio-risk-analyzer)
  • Macroeconomic analysis (use macro-regime-detector)

Workflow

Step 1: Gather Inputs

The user must provide the following parameters for analysis:

options-analyzer analyze \
  --ticker AAPL \
  --strategy covered-call \
  --stock-price 175.00 \
  --strike-price 180.00 \
  --expiry-date 2026-04-17 \
  --option-type call \
  --risk-free-rate 0.05 \
  --dividend-yield 0.005 \
  # Optional:
  --volatility 0.35 # (If not provided, script fetches historical volatility)
  --num-shares 100
  --num-contracts 1

Required Parameters:

  • --ticker: Underlying stock symbol
  • --strategy: One of covered-call, protective-put, cash-secured-put, credit-spread, debit-spread, iron-condor, straddle, strangle
  • --stock-price: Current price of the underlying stock
  • --strike-price: Strike price of the option(s)
  • --expiry-date: Expiration date of the option(s) (YYYY-MM-DD)
  • --option-type: call or put
  • --risk-free-rate: Current risk-free rate (e.g., 10-year Treasury yield)

Optional Parameters:

  • --volatility: Implied volatility (if known, otherwise calculated from historical data)
  • --dividend-yield: Annual dividend yield of the stock
  • --num-shares: Number of shares held (for covered calls/puts)
  • --num-contracts: Number of options contracts

Step 2: Execute Analysis Script

Run the main analysis script with the gathered parameters:

python3 skills/options-analyzer/scripts/options_analyzer.py --ticker AAPL ...

The script performs the following actions:

  1. Fetches historical data via yfinance to calculate historical volatility (if not provided).
  2. Uses the Black-Scholes model to calculate the theoretical price of the option(s).
  3. Calculates all relevant Greeks (Delta, Gamma, Theta, Vega, Rho).
  4. Simulates the P/L of the strategy across a range of potential stock prices at expiration.
  5. Identifies key metrics: max profit, max loss, break-even point(s).
  6. Generates a P/L chart (ASCII or image) and a summary report.

Step 3: Analyze Results and Provide Recommendations

The script generates a JSON output and a human-readable Markdown report.

JSON Output (options_analysis_YYYY-MM-DD_HHMMSS.json):

{
  "strategy": "Covered Call",
  "ticker": "AAPL",
  "theoretical_premium": 2.50,
  "greeks": {
    "delta": 0.45,
    "gamma": 0.05,
    "theta": -0.02,
    "vega": 0.12,
    "rho": 0.01
  },
  "simulation": {
    "max_profit": 750.00,
    "max_loss": -17250.00,
    "break_even": 172.50,
    "pnl_data": [...]
  },
  "recommendations": [
    "This strategy profits if AAPL stays below $182.50 by expiration.",
    "Time decay (theta) is beneficial, generating daily income.",
    "High volatility (vega) increases the premium received but also risk."
  ]
}

Markdown Report (options_analysis_YYYY-MM-DD_HHMMSS.md):

  • Strategy Overview: Explanation of the covered call strategy.
  • Trade Setup: Summary of the user's inputs.
  • Theoretical Premium: Calculated value of the option.
  • The Greeks Explained: What each Greek means for this specific trade.
  • P/L Simulation: Max profit, max loss, break-even points.
  • P/L Chart: Visual representation of profit/loss at expiration.
  • Risk Analysis: Key risks associated with the strategy.
  • Earnings Alert: Checks if an earnings report falls within the trade duration.

Step 4: Present Findings to User

Synthesize the Markdown report into a clear, educational response.

  • Start with a high-level summary of the strategy's goal.
  • Explain the key metrics (max profit/loss, break-even).
  • Use the "Greeks Explained" section to educate the user on the trade's dynamics.
  • Highlight any warnings, such as an upcoming earnings report.
  • Attach the P/L chart image if generated.

Supported Strategies

  • Covered Call: Long stock, short call (income, limited upside)
  • Protective Put: Long stock, long put (hedging, downside protection)
  • Cash-Secured Put: Short put, cash collateral (income, willing to buy stock)
  • Credit Spread: Short option, long further OTM option (income, defined risk)
  • Debit Spread: Long option, short further OTM option (directional bet, defined risk)
  • Iron Condor: Short call spread + short put spread (range-bound, income)
  • Straddle: Long call + long put at same strike (speculating on large move)
  • Strangle: Long OTM call + long OTM put (cheaper straddle, needs larger move)

Important Considerations

  • American vs. European Options: The Black-Scholes model is for European options (exercised only at expiration). While most US stock options are American, this provides a standard theoretical benchmark. Always mention this limitation.
  • Liquidity: Remind users to check the bid-ask spread and open interest for the specific option contract. Illiquid options can have high transaction costs.
  • Earnings: Always check for earnings dates within the option's life. Volatility crush after earnings can significantly impact the value of options. The script should automatically flag this.
  • Not Financial Advice: Include a disclaimer that all analysis is for educational purposes only and not financial advice.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

70.06%
按下载量换算730

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills