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

Modeling Exotic Option Payoffs

ASecurity

Builds pricing models for barrier, Asian, lookback, and other path-dependent options with Monte Carlo simulation. Use when pricing exotic options, modeling complex payoffs, or evaluating structured product components.

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

Works with

terminalcli

Security Analysis

A100/100

Scanned 9/20/2026

Install to Claude Code

$npx -y skills add lev-os/agents --skill modeling-exotic-option-payoffs --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Modeling Exotic Option Payoffs?

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

Security grade badge for Modeling Exotic Option Payoffs
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/lev-os-modeling-exotic-option-payoffs/badge)](https://www.skillsdirectory.com/skills/lev-os-modeling-exotic-option-payoffs)

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

Download Zip
Files
SKILL.md
---
name: modeling-exotic-option-payoffs
description: Builds pricing models for barrier, Asian, lookback, and other path-dependent options with Monte Carlo simulation. Use when pricing exotic options, modeling complex payoffs, or evaluating structured product components.
tags:
  - modeling
  - derivatives-and-structured-products
metadata:
  author: casemark
  practice_areas:
    - Derivatives
    - Structured Products
    - Hedging
  document_types:
    - Financial Model
  skill_modes:
    - Modeling
    - Forecasting
---
# Modeling Exotic Option Payoffs

Builds pricing models for barrier, Asian, lookback, and other path-dependent options with Monte Carlo simulation.

## When To Use

- Pricing path-dependent options (barriers, Asians, lookbacks, cliquets, autocallables) where Black-Scholes closed forms are insufficient or unavailable
- Evaluating embedded option components within structured notes or equity-linked products
- Comparing fair value across exotic payoff structures for trade desk or risk management
- Stress-testing exotic book positions under alternative volatility surface or correlation assumptions
- Building hedging models that require Greeks derived from simulation (pathwise or likelihood-ratio methods)

## Inputs To Gather

- **Option term sheet**: payoff formula, barrier levels, observation schedule (continuous vs. discrete), averaging method (arithmetic vs. geometric), settlement type (cash vs. physical)
- **Underlying specifications**: spot price, dividend schedule (discrete or continuous yield), repo/borrow cost
- **Volatility data**: implied vol surface (strike × tenor), local vol grid, or calibrated stochastic vol parameters (Heston: v₀, κ, θ, σ_v, ρ; SABR: α, β, ρ, ν) [VERIFY calibration date and source]
- **Rate curve**: risk-free discount curve, funding spread if applicable
- **Correlation matrix**: for multi-asset exotics (worst-of, basket, rainbow) [VERIFY correlation estimation window and method]
- **Simulation parameters**: number of paths, time-step granularity, random number generator seed, variance reduction technique preferences

## Workflow

1. **Classify the payoff type and select methodology**
   - Map the payoff to a category: barrier (knock-in/knock-out, single/double), Asian (fixed/floating strike, arithmetic/geometric), lookback (fixed/floating), cliquet/ratchet, autocallable, or hybrid
   - Determine if a closed-form or semi-analytic solution exists (e.g., geometric Asian via adjusted Black-Scholes, continuous barrier via reflection principle) — use as a benchmark even when Monte Carlo is the primary method
   - Select volatility model: flat vol for quick indicative pricing, local vol for barrier-sensitive products, stochastic vol (Heston/SABR) for smile-dependent payoffs [VERIFY appropriateness of vol model for the specific exotic]

2. **Configure the Monte Carlo engine**
   - Set path count (10,000 minimum for indicative; 100,000–1,000,000 for production pricing) and time steps (daily or matching observation frequency)
   - Implement variance reduction: antithetic variates (standard), control variates (use vanilla option or geometric Asian as control), importance sampling for deep out-of-the-money barriers
   - For discrete barriers, apply Broadie-Glasserman-Kou continuity correction to reduce bias from discrete monitoring approximation
   - Generate correlated Brownian increments via Cholesky decomposition for multi-asset structures

3. **Implement the payoff function**
   - Code the exact contractual payoff, matching the term sheet precisely — barrier observation dates, averaging windows, memory features for autocallables, participation rates, caps/floors
   - Handle boundary cases: what happens at exact barrier touch, rounding conventions on averaging, early termination cashflows
   - For lookbacks, track running max/min along each path; for Asians, accumulate price observations at specified fixing dates

4. **Price and compute Greeks**
   - Discount expected payoff to present value using the appropriate curve
   - Compute delta, gamma, vega via finite-difference bumps on spot, vol surface; use pathwise differentiation where payoff is continuous, likelihood-ratio method where payoff has discontinuities (barriers)
   - Calculate vanna (∂²V/∂S∂σ) and volga (∂²V/∂σ²) for vol-of-vol sensitive structures
   - Report standard error of the Monte Carlo estimate alongside the price

5. **Validate and stress-test**
   - Benchmark against closed-form where available (geometric Asian, continuous barrier) — deviation should be within Monte Carlo standard error
   - Run convergence test: verify price stabilizes as path count increases
   - Stress-test key parameters: ±5 vol points, ±20% spot move, barrier shift by 1–2%, correlation ±0.1 for multi-asset
   - Verify put-call parity or other no-arbitrage relationships hold within tolerance

## Output

- **Pricing summary table**: fair value (mid), bid/ask spread estimate, standard error, number of paths, vol model used
- **Greeks table**: delta, gamma, vega, theta, rho; higher-order Greeks (vanna, volga) where relevant
- **Payoff diagram**: terminal payoff vs. underlying at expiry (and vs. path-dependent variable where applicable)
- **Sensitivity matrix**: price under spot × vol grid (at minimum 5×5), barrier distance sensitivity, correlation sensitivity for multi-asset
- **Methodology notes**: vol model choice and calibration details, variance reduction techniques applied, continuity corrections, any simplifying assumptions
- **Convergence evidence**: price vs. path count chart or table showing standard error reduction

## Quality Checks

- Payoff function matches term sheet exactly — verify barrier direction (up/down, in/out), averaging convention, observation schedule, and settlement terms against the contract
- Monte Carlo standard error is below 1% of the option price for production runs; flag if convergence is slow
- Greeks are internally consistent: delta integrates to approximately 1 for ATM calls, gamma is non-negative for long option positions
- Barrier options show expected price behavior: knock-out price ≤ corresponding vanilla price; knock-in + knock-out = vanilla (within MC noise) [VERIFY for discrete monitoring]
- Stochastic vol parameters produce a smile that matches market-observed implied vols at relevant strikes — report calibration error
- All market data inputs carry timestamps; flag any data older than T+1 for production pricing
- For structured product components, verify that the sum of decomposed parts reconciles to the total product price

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

ucoz-landing-skill

Playbook for creating and editing uCoz landing pages via MCP tools (`templates_tool`, `ftp_tool`, `modules_tool`). Use for tasks such as: "build a landing page", "update the homepage as a landing page", "create a promo page on the homepage", "add a lead form / menu / SEO to the homepage". Homepage: `page_list`, `page_get`; first publish — `page_update` with full `page_tmpl`; HTML edits after generation — `patch_template` (module_id=2, template_id=1), not `update_template`. Activate the mail f...

107 votes

Paperclip

Interact with the Paperclip control plane API for task coordination and governance. Use when checking assignments, updating issue status, posting comments, delegating work, managing routines, or calling Paperclip API endpoints.

805541 votes

Instantly Rdsthomas Mission Control

Instantly.ai cold email outreach API - manage campaigns, leads, accounts, and analytics. Use for cold email automation, lead management, campaign creation/monitoring, and email account warmup.

761 votes

Daw Music

Digital Audio Workstation usage, music composition, interactive music systems, and game audio implementation for immersive soundscapes.

761 votes

Caveman Compress

Compress natural language memory files (CLAUDE.md, todos, preferences) into caveman format to save input tokens. Preserves all technical substance, code, URLs, and structure. Compressed version overwrites the original file. Human-readable backup saved as FILE.original.md. Trigger: /caveman-compress FILEPATH or "compress memory file"

1023330 votes
View all in tools →