mcpbeat Sign in

Options Pricing Skill for Claude

[STUB] Options pricing models including Black-Scholes, binomial trees, Monte Carlo, implied volatility surfaces, and Greeks for crypto options

6k tokens
context cost
the whole folder, loaded on every use
3
files
ships runnable scripts
0
copies elsewhere
how many repositories repackaged it
257
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/agiprolabs/claude-trading-skills --skill options-pricing

The instruction itself

17 sections, as written by the author

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.

import math
from scipy.stats import norm

def black_scholes_call(S: float, K: float, T: float, r: float, sigma: float) -> float:
    """Price a European call option using Black-Scholes.

    Args:
        S: Current underlying price.
        K: Strike price.
        T: Time to expiration in years.
        r: Risk-free rate (annualized).
        sigma: Volatility (annualized).

    Returns:
        Theoretical call option price.
    """
    d1 = (math.log(S / K) + (r + 0.5 * sigma**2) * T) / (sigma * math.sqrt(T))
    d2 = d1 - sigma * math.sqrt(T)
    return S * norm.cdf(d1) - K * math.exp(-r * T) * norm.cdf(d2)

Run the demo:

python scripts/black_scholes.py --demo

Planned Capabilities

When fully implemented, this skill will cover:

Pricing Models

| Model | Option Style | Use Case |

|-------|-------------|----------|

| Black-Scholes | European | Vanilla calls/puts, quick Greeks |

| Binomial Tree | American | Early exercise, dividend-paying assets |

| Monte Carlo | Exotic | Path-dependent, barrier, Asian options |

| Black-76 | Futures | Futures options on crypto perpetuals |

Greeks

| Greek | Measures | Formula Basis |

|-------|----------|---------------|

| Delta | Price sensitivity to underlying | dC/dS |

| Gamma | Delta sensitivity to underlying | d²C/dS² |

| Theta | Time decay per day | dC/dT |

| Vega | Sensitivity to volatility | dC/dσ |

| Rho | Sensitivity to interest rates | dC/dr |

Implied Volatility

  • Newton-Raphson and bisection IV solvers
  • Volatility smile and skew analysis
  • IV surface construction (strike x expiry)
  • IV term structure analysis
  • Vol-of-vol estimation

Crypto Options Platforms

| Platform | Chain | Assets | Style |

|----------|-------|--------|-------|

| Deribit | Off-chain | BTC, ETH | European |

| Lyra | Optimism/Arbitrum | ETH, BTC | European |

| Aevo | Ethereum L2 | BTC, ETH, alts | European |

| Zeta Markets | Solana | SOL, BTC | European |

| PsyOptions | Solana | SOL, various | American |

Structured Products

  • Covered calls and protective puts
  • Straddles and strangles for volatility trading
  • Vertical spreads for directional exposure
  • Iron condors for range-bound markets
  • Calendar spreads for term structure trades

Prerequisites

# Core (for full implementation)
uv pip install numpy scipy

# Optional (for visualization)
uv pip install matplotlib

The included scripts/black_scholes.py uses only the Python standard library (math module) and runs without any dependencies.


Use Cases

Hedging

Compute delta-neutral hedge ratios for crypto spot positions using options. Calculate the number of put contracts needed to protect a portfolio against downside moves.

Volatility Trading

Compare implied volatility to realized volatility to identify over/underpriced options. When IV significantly exceeds realized vol, selling premium may be favorable (and vice versa).

Structured Products

Price structured products that combine options at different strikes and expirations. Analyze payoff profiles and breakeven points before execution.

Risk Assessment

Use Greeks to understand portfolio-level exposure to price moves (delta), acceleration (gamma), time decay (theta), and volatility changes (vega).


Quick Reference: Black-Scholes Formulas

Call price:

C = S * N(d1) - K * e^(-rT) * N(d2)

Put price:

P = K * e^(-rT) * N(-d2) - S * N(-d1)

Where:

d1 = [ln(S/K) + (r + σ²/2) * T] / (σ * √T)
d2 = d1 - σ * √T

Put-call parity:

C - P = S - K * e^(-rT)

Files

| File | Description |

|------|-------------|

| references/planned_features.md | Planned features, formulas, data sources, and implementation priorities |

| scripts/black_scholes.py | Black-Scholes calculator with Greeks and implied vol solver |


Contributing

This skill is a stub awaiting full implementation. To contribute:

  • Implement binomial tree pricing for American-style options
  • Add Monte Carlo simulation for exotic payoffs
  • Build IV surface construction from market quotes
  • Integrate Deribit API for live options chain data
  • Add portfolio Greeks aggregation

See references/planned_features.md for the full feature list and implementation priorities.


*This skill provides analytical tools and mathematical models for informational purposes only. It does not constitute financial advice. Options trading involves substantial risk of loss.*

Other skills for the same job

different authors, same section of the catalogue
Dcf Model
by anthropics
vendor ×1

Real DCF (Discounted Cash Flow) model creation for equity valuation. Retrieves financial data from SEC filings and analyst reports, builds comprehensive cash flow projections with proper WACC calculations, performs sensitivity analysis, and outputs professional Excel models with executive summaries. Use when users need to value a company using DCF methodology, request intrinsic value analysis, or ask for detailed financial modeling with growth projections and terminal value calculations.

16k tokens scripts
Canslim Screener
by BaggaT236
×1

Screen US stocks using William O'Neil's CANSLIM growth stock methodology. Use when user requests CANSLIM stock screening, growth stock analysis, momentum stock identification, or wants to find stocks with strong earnings and price momentum following O'Neil's investment system.

90k tokens scripts
Dividend Growth Pullback Screener
by BaggaT236
×1

Use this skill to find high-quality dividend growth stocks (12%+ annual dividend growth, 1.5%+ yield) that are experiencing temporary pullbacks, identified by RSI oversold conditions (RSI ≤40). This skill combines fundamental dividend analysis with technical timing indicators to identify buying opportunities in strong dividend growers during short-term weakness.

30k tokens scripts
Options Strategy Advisor
by BaggaT236
×1

Options trading strategy analysis and simulation tool. Provides theoretical pricing using Black-Scholes model, Greeks calculation, strategy P/L simulation, and risk management guidance. Use when user requests options strategy analysis, covered calls, protective puts, spreads, iron condors, earnings plays, or options risk management. Includes volatility analysis, position sizing, and earnings-based strategy recommendations. Educational focus with practical trade simulation.

20k tokens scripts
Bond Futures Basis
by anthropics
vendor

Analyze the bond futures basis by pricing futures, identifying the cheapest-to-deliver, and comparing with yield curves to assess delivery option value and basis trading opportunities. Use when analyzing bond futures, computing the basis, identifying CTD bonds, calculating implied repo rates, or evaluating basis trades.

912 tokens
Buyer List
by anthropics
vendor

Build and organize a universe of potential acquirers for sell-side M&A processes. Identifies strategic and financial buyers, assesses fit, and prioritizes outreach. Use when preparing for a sell-side mandate, building a buyer universe, or evaluating potential partners. Triggers on "buyer list", "buyer universe", "potential acquirers", "who would buy this", "strategic buyers", or "financial sponsors".

987 tokens
Option Vol Analysis
by anthropics
vendor

Analyze option volatility by combining vol surface data, option pricing with Greeks, and historical price data to assess implied vs realized volatility. Use when pricing options, analyzing volatility surfaces, computing Greeks, assessing vol premiums, or evaluating vol trading strategies.

1k tokens
Price Check
by anthropics
vendor

Produces a margin-by-product table and three pricing-scenario data views so the owner can see the full financial picture before making a pricing decision. Accepts optional product name argument.

745 tokens

How to use it

Copy the folder

Take agiprolabs/options-pricing from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.

Install what it needs

The instructions reference pip, uv. Without those the skill loads but fails at the first command.