options-analytics-agent-guide
AI agent for options pricing, Greeks, and strategy analysis
Best use case
options-analytics-agent-guide is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
AI agent for options pricing, Greeks, and strategy analysis
Teams using options-analytics-agent-guide should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/options-analytics-agent-guide/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How options-analytics-agent-guide Compares
| Feature / Agent | options-analytics-agent-guide | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
AI agent for options pricing, Greeks, and strategy analysis
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
Related Guides
SKILL.md Source
# Options Analytics Agent Guide
## Overview
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.
## Core Capabilities
```python
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}")
```
## Greeks Analysis
```python
# 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")
```
## Strategy Evaluation
```python
# 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")
```
## Implied Volatility
```python
# 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")
```
## Use Cases
1. **Options pricing**: Black-Scholes and numerical methods
2. **Risk management**: Greeks and portfolio risk metrics
3. **Strategy analysis**: P&L profiles and breakeven analysis
4. **Volatility analysis**: IV surfaces and skew analysis
5. **Education**: Interactive derivatives teaching tool
## References
- [Options Analytics Agent](https://github.com/options-analytics/options-agent)
- [QuantLib](https://www.quantlib.org/) — Quantitative finance libraryRelated Skills
thuthesis-guide
Write Tsinghua University theses using the ThuThesis LaTeX template
thesis-writing-guide
Templates, formatting rules, and strategies for thesis and dissertation writing
thesis-template-guide
Set up LaTeX templates for PhD and Master's thesis documents
sjtuthesis-guide
Write SJTU theses using the SJTUThesis LaTeX template with full compliance
novathesis-guide
LaTeX thesis template supporting multiple universities and formats
graphical-abstract-guide
Create SVG graphical abstracts for journal paper submissions
beamer-presentation-guide
Guide to creating academic presentations with LaTeX Beamer
plagiarism-detection-guide
Use plagiarism detection tools and ensure manuscript originality
paper-polish-guide
Review and polish LaTeX research papers for clarity and style
grammar-checker-guide
Use grammar and style checking tools to polish academic manuscripts
conciseness-editing-guide
Eliminate wordiness and redundancy in academic prose for clarity
academic-translation-guide
Academic translation, post-editing, and Chinglish correction guide