options-pricing
Options Pricing provides quantitative models for valuing derivatives on crypto assets like BTC and ETH across platforms including Deribit, Lyra, and Aevo. The skill currently includes a working Black-Scholes calculator with Greeks computation and an implied volatility solver, with planned support for binomial trees, Monte Carlo simulation, and volatility surface analysis. Use it to hedge spot positions, identify mispriced options, and assess portfolio risk.
Options Pricing computes theoretical option values and Greeks for crypto derivatives using Black-Scholes and planned binomial models.
AI-generated summary based on this skill's SKILL.md
Install
agiprolabs/claude-trading-skills/options-pricing · repository language: Python
git clone https://github.com/agiprolabs/claude-trading-skills
cp -r claude-trading-skills/skills/options-pricing ~/.claude/skills/options-pricingnpx skillfed install agiprolabs/claude-trading-skills/options-pricingFrequently asked questions
AI-generated answers based on this skill's SKILL.md and metadata
What models does options-pricing support for crypto option valuation?
Options Pricing provides Black-Scholes and binomial tree models for pricing European and American crypto options on assets like BTC and ETH. The skill includes a working Black-Scholes calculator with Greeks computation and an implied volatility solver. Planned enhancements will add Monte Carlo simulation and volatility surface analysis to support structured products and multi-leg strategies across platforms including Deribit, Lyra, and Aevo.
How do I use options-pricing to calculate the Greeks for portfolio risk?
Options Pricing computes delta, gamma, theta, vega, and rho to quantify portfolio Greeks for hedging and risk management. These sensitivities help you understand how option values respond to underlying price changes, time decay, volatility shifts, and interest rate moves. Use the Greeks output to determine hedging ratios and adjust positions to maintain your target risk exposure on crypto derivatives.
Can options-pricing construct implied volatility surfaces and analyze volatility term structure?
Options Pricing includes an implied volatility solver and supports volatility surface construction and term structure analysis. This lets you examine volatility smile and skew patterns across strikes and maturities, compare realized versus implied volatility, and identify potential mispricings in crypto options markets. Surface analysis helps you assess market expectations and refine hedging strategies.
What is the difference between European vs American option pricing in options-pricing?
Options Pricing handles both European and American crypto options. European options can only be exercised at expiration and are priced using Black-Scholes; American options allow early exercise and are priced using binomial trees. The skill helps you value both styles on crypto assets, enabling you to hedge spot positions and compare pricing across different exercise features.
How does options-pricing help with structured products and multi-leg strategies?
Options Pricing values structured products and multi-leg option strategies like covered calls and protective puts. By combining single-option Greeks and pricing models, the skill lets you assess payoff profiles, compute net Greeks, and identify arbitrage opportunities across legs. This supports both hedging spot crypto holdings and constructing synthetic positions.
Which crypto derivatives platforms does options-pricing work with?
Options Pricing is designed for major crypto options platforms including Deribit, Lyra, Aevo, and Zeta Markets. The skill values derivatives on BTC, ETH, SOL, and other crypto assets using quantitative models. It's released under the MIT license, making it freely available for integration into your trading and risk management workflows.
SKILL.md
rendered from the published skill — quoted content, verbatim
Options Pricing
> Status: STUB — This skill provides a basic Black-Scholes implementation and an overview of planned capabilities. Full implementation is awaiting community contribution.
Options pricing is the quantitative foundation of derivatives trading. For crypto markets, options on BTC and ETH trade actively on Deribit, Lyra, and Aevo, while Solana options are emerging on platforms like Zeta Markets and PsyOptions. Understanding pricing models, implied volatility surfaces, and Greeks is essential for hedging, volatility trading, and constructing structured products.
This skill is informational and analytical only. It does not provide financial advice or trading recommendations.
Current Capabilities
This stub includes a working Black-Scholes calculator with Greeks computation and a basic implied volatility solver. See scripts/black_scholes.py for the implementation.
```python import math from scipy.stats import norm
def black_scholes_call(S: float, K: float, T: float,
(truncated - see the full file via the links below)
Read as markdown · JSON record · Browse the source repository
File tree — 3 files
skills/options-pricing/SKILL.md
skills/options-pricing/references/planned_features.md
skills/options-pricing/scripts/black_scholes.py