Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

Back to skills

Pricing Vanilla Equity Options

ASecurity

Calculates option values with Black-Scholes, binomial, and Monte Carlo methods including Greeks sensitivity analysis. Use when pricing equity options, calculating Greeks, or evaluating option strategies.

22 stars
0 votes
0 copies
0 views
Added 9/20/2026
business

Works with

cli

Security Analysis

A100/100

Scanned 9/20/2026

Install to Claude Code

$npx -y skills add lev-os/agents --skill pricing-vanilla-equity-options --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Pricing Vanilla Equity Options?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Pricing Vanilla Equity Options
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/lev-os-pricing-vanilla-equity-options/badge)](https://www.skillsdirectory.com/skills/lev-os-pricing-vanilla-equity-options)

More formats (shields.io, HTML) on the badges page.

Download Zip
Files
SKILL.md
---
name: pricing-vanilla-equity-options
description: Calculates option values with Black-Scholes, binomial, and Monte Carlo methods including Greeks sensitivity analysis. Use when pricing equity options, calculating Greeks, or evaluating option strategies.
tags:
  - valuation
  - derivatives-and-structured-products
metadata:
  author: casemark
  practice_areas:
    - Derivatives
    - Structured Products
    - Hedging
  document_types:
    - Valuation Report
  skill_modes:
    - Valuation
    - Calculation
---
# Pricing Vanilla Equity Options

## When To Use

- Pricing European or American calls/puts on single-name equities or equity indices
- Computing Greeks (delta, gamma, vega, theta, rho) for hedging or risk reporting
- Comparing theoretical fair value against quoted market prices to identify mispricings
- Evaluating simple option strategies (spreads, straddles, covered calls) at inception
- Generating sensitivity tables for trade approval memos or client-facing valuation reports

## Inputs To Gather

| Input | Description | Source Notes |
|---|---|---|
| **Spot price (S)** | Current underlying equity price | Live market feed or last close |
| **Strike price (K)** | Contract strike | Term sheet or exchange listing |
| **Time to expiry (T)** | Years (or fraction) to expiration date | Contract terms; use ACT/365 unless specified |
| **Risk-free rate (r)** | Continuously compounded rate matching tenor | Treasury yield curve or OIS rate [VERIFY tenor match] |
| **Dividend yield / schedule (q)** | Continuous yield or discrete dividend dates and amounts | Bloomberg/Refinitiv; confirm ex-dates [VERIFY] |
| **Volatility (σ)** | Implied vol from market, or historical/realized vol | Volatility surface, ATM quote, or historical window |
| **Option type** | Call or put | Contract terms |
| **Exercise style** | European or American | Contract terms — drives model choice |

## Workflow

### 1. Validate and Normalize Inputs

- Confirm spot, strike, and expiry are internally consistent (no expired contracts, no negative values).
- Convert discrete dividends to a continuous yield if using Black-Scholes, or keep discrete for binomial/Monte Carlo.
- Select the volatility input: implied vol (preferred for mark-to-market) vs. historical vol (fallback or scenario analysis). Note which is used.
- Match the risk-free rate tenor to option expiry. Interpolate the yield curve if an exact tenor is unavailable. [VERIFY rate convention: continuous vs. simple]

### 2. Select Pricing Model

- **Black-Scholes (closed-form):** Default for European options with continuous dividend yield. Fast and analytically tractable. Not suitable for American puts with early exercise value or discrete dividends of material size.
- **Binomial tree (CRR or Leisen-Reimer):** Use for American options or when discrete dividends must be modeled explicitly. Choose ≥200 steps for convergence; confirm convergence by doubling steps and checking price stability (tolerance < 0.01).
- **Monte Carlo simulation:** Use when payoff is path-dependent or when extending to multi-asset baskets. For vanilla options it serves as a cross-check. Use ≥100,000 paths with antithetic variates and report standard error.

### 3. Calculate Option Value and Greeks

- Compute the theoretical price under the chosen model.
- Calculate first-order Greeks: **Delta (Δ), Gamma (Γ), Vega (ν), Theta (Θ), Rho (ρ)**.
- For Black-Scholes, use closed-form Greek formulas. For tree/MC models, use finite-difference bumps:
  - Delta: bump spot ±0.5%; Gamma: second-order from same bumps; Vega: bump vol ±1 vol point; Rho: bump rate ±10 bps.
- Compute **implied volatility** if a market price is provided (Newton-Raphson or Brent's method on Black-Scholes).

### 4. Cross-Check and Validate

- **Put-call parity:** For Europeans, verify C − P = S·e^(−qT) − K·e^(−rT) within a tolerance of ±0.01.
- **Boundary conditions:** Option price ≥ intrinsic value; call ≤ S; put ≤ K·e^(−rT).
- **Early exercise premium:** For American options, confirm price ≥ European equivalent.
- **Greeks sign checks:** Delta in [0,1] for calls, [−1,0] for puts; gamma ≥ 0; vega ≥ 0; theta typically ≤ 0 for long options.
- If two models are run, compare prices and flag divergences > 1%.

### 5. Build Sensitivity Analysis

- Generate a **spot vs. vol matrix** showing option price across ±10–20% spot moves and ±5 vol point shifts.
- Produce a **time decay profile** showing theta bleed at weekly intervals to expiry.
- If relevant, show **dividend sensitivity** — price impact of ±10% change in dividend assumption.

## Output

Structure the deliverable as follows:

1. **Summary table** — Option type, spot, strike, expiry, vol, rate, dividend assumption, model used, theoretical price.
2. **Greeks table** — Delta, gamma, vega (per 1 vol point), theta (per day), rho (per 100 bps).
3. **Sensitivity matrix** — Spot × vol grid of prices (and optionally delta).
4. **Model notes** — Which model was used, number of steps/paths, convergence checks, and any assumptions or approximations.
5. **Flags** — Mark any [VERIFY] items, data staleness warnings, or cases where early exercise premium is significant.

## Quality Checks

- [ ] Put-call parity holds within tolerance for European options
- [ ] All Greeks pass sign and magnitude reasonableness checks
- [ ] Binomial tree convergence confirmed (step-doubling test)
- [ ] Volatility source clearly labeled (implied vs. historical, tenor, date)
- [ ] Risk-free rate tenor matches option expiry; interpolation method noted if used
- [ ] Dividend treatment documented (continuous yield vs. discrete schedule) [VERIFY ex-dates]
- [ ] Sensitivity tables cover a meaningful range of scenarios
- [ ] No stale market data — spot, vol, and rate quotes dated within one business day unless noted

Attribution

lev-oslev-os
View sourceMore from lev-os →
SSkills DirectorySkills Directory

Your tool, in front of Claude Code builders.

3 founder slots · $299/mo · GSC-verified traffic · sponsors can never buy grades.

See placements

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Your tool, in front of Claude Code builders.

3 founder slots · $299/mo · GSC-verified traffic · sponsors can never buy grades.

See placements

Related Skills

Solution Architect

Designs system architecture, component specifications, and technical integration strategy. Use when: designing solutions, system architecture, technology stack, or integration approaches.

192 votes

Akorchak:Venture Assessment

Generate a comprehensive VC investment assessment report for a company

72 votes

Stock Analysis

Analyze stocks and cryptocurrencies using Yahoo Finance data. Supports portfolio management (create, add, remove assets), crypto analysis (Top 20 by market cap), and periodic performance reports (daily/weekly/monthly/quarterly/yearly). 8 analysis dimensions for stocks, 3 for crypto. Use for stock analysis, portfolio tracking, earnings reactions, or crypto monitoring.

6511 votes

Just Fucking Cancel

Find and cancel unwanted subscriptions by analyzing bank transactions. Detects recurring charges, calculates annual waste, and helps you cancel with direct URLs and browser automation. Use when: 'cancel subscriptions', 'audit subscriptions', 'find recurring charges', 'what am I paying for', 'save money', 'subscription cleanup', 'stop wasting money'. Supports CSV import (Apple Card, Chase, Amex, Citi, Bank of America, Capital One, Mint, Copilot) OR Plaid API for automatic transaction pull. Out...

6511 votes

Telegram Compose

Compose rich, readable Telegram messages using HTML formatting via direct Telegram API. Use when: (1) Sending any Telegram message beyond a simple one-line reply, (2) Creating structured messages with sections, lists, or status updates, (3) Need formatting unavailable via Clawdbot's Markdown conversion (underline, spoilers, expandable blockquotes, user mentions by ID), (4) Sending alerts, reports, summaries, or notifications to Telegram, (5) Want professional, scannable message formatting wit...

6511 votes
View all in business →