用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/brycewang-stanford/Auto-Empirical-Research-Skills --skill options-analytics-agent-guide命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Route empirical-research requests through the Auto-Empirical Research Skills catalog when this whole repository is installed as one skill in Codex, CodeBuddy, Claude Code, or another IDE. Use to choose and load the right vendored AERS skill for causal inference, econometrics, replication, data acquisition, manuscript writing, peer review and referee responses, citation checking, de-AIGC editing, or full empirical-paper workflows without reading the entire repository at once.
中英双语学术降 AIGC / bilingual academic de-AIGC skill. Removes AI-generated writing signatures from empirical papers in economics, management, and the social sciences — in both English and Chinese. Covers Turnitin AI, GPTZero, Originality.ai on the English side and 知网 AMLC, 万方, 维普 on the Chinese side. Uses a six-step loop (intake → audit → claim-evidence check → differentiated rewrite → five-dimension self-score → cold-reader recheck) with two pattern libraries (22 English + 17 Chinese patterns), section-by-section strategies for empirical papers, and hard protections that keep every number, coefficient, and citation intact.
Use when a research task needs reproducible Kaggle discovery, metadata inspection, bounded public-data downloads, competition or kernel discovery, model discovery, or an explicitly approved Kaggle write/delete operation through the official CLI.
基于 SOC 职业分类
正在显示 SKILL.md
| name | options-analytics-agent-guide |
| description | AI agent for options pricing, Greeks, and strategy analysis |
| metadata | {"openclaw":{"emoji":"📉","category":"domains","subcategory":"finance","keywords":["options analytics","derivatives","Greeks","Black-Scholes","strategy analysis","financial agent"],"source":"wentor-research-plugins"}} |
An AI agent for options pricing, risk analysis, and strategy evaluation. It combines Black-Scholes and binomial models, Greeks calculations, implied volatility surfaces, and portfolio risk analytics into a conversational interface. Researchers and quantitative analysts can query options data, price exotic derivatives, and evaluate trading strategies through natural language.
from options_agent import OptionsAgent
agent = OptionsAgent(llm_provider="anthropic")
# Price an option
result = agent.price(
option_type="call",
strike=100,
spot=105,
expiry_days=30,
risk_free_rate=0.05,
volatility=0.20,
model="black_scholes",
)
print(f"Price: ${result.price:.2f}")
print(f"Delta: {result.delta:.4f}")
print(f"Gamma: {result.gamma:.4f}")
print(f"Theta: {result.theta:.4f}")
print(f"Vega: {result.vega:.4f}")
print(f"Rho: {result.rho:.4f}")
# Full Greeks surface
surface = agent.greeks_surface(
strike=100,
spot_range=(80, 120),
expiry_range=(7, 90), # days
volatility=0.25,
)
surface.plot_delta_surface("delta_surface.png")
surface.plot_gamma_surface("gamma_surface.png")
surface.plot_theta_decay("theta_decay.png")
# Evaluate an options strategy
strategy = agent.evaluate_strategy(
legs=[
{"type": "call", "strike": 100, "action": "buy", "qty": 1},
{"type": "call", "strike": 110, "action": "sell", "qty": 1},
],
spot=105,
expiry_days=30,
volatility=0.20,
)
print(f"Strategy: {strategy.name}") # Bull Call Spread
print(f"Max profit: ${strategy.max_profit:.2f}")
print(f"Max loss: ${strategy.max_loss:.2f}")
print(f"Breakeven: ${strategy.breakeven:.2f}")
strategy.plot_payoff("payoff.png")
strategy.plot_pnl_scenarios("scenarios.png")
# Calculate implied volatility
iv = agent.implied_volatility(
market_price=5.50,
option_type="call",
strike=100,
spot=105,
expiry_days=30,
risk_free_rate=0.05,
)
print(f"Implied volatility: {iv:.2%}")
# Volatility smile/surface
vol_surface = agent.volatility_surface(
ticker="SPY",
date="2025-03-10",
)
vol_surface.plot("vol_surface.png")