Token导航 LogoToken导航TokenDH.com
开发权限需确认github未标认证来源可访问许可证需确认审计通过

volatility-modeling波动率建模

Agent Skill

volatility-modeling 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,157

周安装

89

GitHub Stars

58

下载量

705
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:volatility-modeling(波动率建模)
来源仓库:https://github.com/joellewis/finance_skills
仓库路径:skills/volatility-modeling
安装命令:
npx skills add https://github.com/joellewis/finance_skills --skill volatility-modeling
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/joellewis/finance_skills --skill volatility-modeling

简介

volatility-modeling 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态或代码变更进行整理。
  • 通过 npx skills add 命令从指定仓库安装并使用。
  • 建议确认权限范围和维护状态,注意是否触发联网或文件读写。
  • 可结合来源仓库和 README 进一步核验具体用法。

SKILL.md

Volatility Modeling

Purpose

Model, forecast, and interpret volatility using time-series models and options-implied measures. This skill covers EWMA and GARCH(1,1) for volatility forecasting, implied volatility extraction, volatility smile/skew/surface construction, the volatility term structure, the realized-vs-implied volatility gap (volatility risk premium), and the VIX index. These tools are foundational for options pricing, risk management, and trading strategy development.

Layer

1b — Forward-Looking Risk

Direction

Prospective

When to Use

  • Forecasting future volatility for risk management or position sizing
  • Building EWMA or GARCH models to capture volatility clustering and mean reversion
  • Extracting implied volatility from option prices using Black-Scholes or other models
  • Constructing or interpreting volatility smiles, skews, and surfaces
  • Analyzing the volatility term structure across different maturities
  • Comparing realized (historical) volatility to implied volatility to assess the volatility risk premium
  • Understanding VIX and its relationship to market sentiment and expected risk

Core Concepts

EWMA (Exponentially Weighted Moving Average)

A simple volatility model that gives more weight to recent observations. RiskMetrics popularized this approach with a standard decay factor.

sigma^2_t = lambda * sigma^2_{t-1} + (1 - lambda) * r^2_{t-1}

where:

  • lambda = decay factor (RiskMetrics standard: 0.94 for daily, 0.97 for monthly)
  • r_{t-1} = return in period t-1 (typically demeaned, but for daily returns the mean is often assumed to be zero)
  • sigma^2_{t-1} = previous period's variance estimate

Properties:

  • Assigns exponentially decaying weights to past squared returns.
  • Effective window is approximately 1/(1 - lambda) observations. For lambda = 0.94, effective window is approximately 17 days.
  • No mean reversion: the model is equivalent to IGARCH (integrated GARCH) where alpha + beta = 1. Volatility shocks persist indefinitely.
  • Simple to implement and requires only one parameter.

GARCH(1,1)

The Generalized Autoregressive Conditional Heteroskedasticity model adds a constant term that induces mean reversion in volatility.

sigma^2_t = omega + alpha * r^2_{t-1} + beta * sigma^2_{t-1}

where:

  • omega > 0: constant term (determines long-run variance level)
  • alpha >= 0: reaction coefficient (sensitivity to recent shocks)
  • beta >= 0: persistence coefficient (memory of past variance)

Stationarity condition: alpha + beta < 1. This ensures the process is covariance-stationary and mean-reverting.

Long-run (unconditional) variance:

V_L = omega / (1 - alpha - beta)

Long-run annualized volatility: sigma_L = sqrt(V_L * 252).

Persistence: The quantity alpha + beta measures how quickly volatility reverts to its long-run level. Higher persistence means slower mean reversion.

Half-life of volatility shocks: The number of periods for a volatility shock to decay by half:

h = -ln(2) / ln(alpha + beta)

Since alpha + beta < 1, ln(alpha + beta) < 0, and h is positive.

Multi-step forecasts: The h-step-ahead GARCH(1,1) forecast:

E[sigma^2_{t+h}] = V_L + (alpha + beta)^h * (sigma^2_t - V_L)

The forecast converges to V_L as h approaches infinity.

Implied Volatility

The volatility value that, when plugged into an option pricing model (typically Black-Scholes), produces a theoretical price equal to the observed market price.

For a European call under Black-Scholes:

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

d1 = [ln(S/K) + (r + sigma^2/2) * T] / (sigma * sqrt(T))
d2 = d1 - sigma * sqrt(T)

Implied volatility is the sigma that solves C_model(sigma) = C_market. There is no closed-form solution; it must be found numerically (e.g., Newton-Raphson, bisection).

Volatility Smile and Skew

In practice, implied volatility varies by strike price, contradicting the constant-volatility assumption of Black-Scholes.

  • Volatility smile: IV is higher for both deep in-the-money and deep out-of-the-money options, forming a U-shape. Common in FX markets.
  • Volatility skew (smirk): IV increases for lower strikes (OTM puts have higher IV than OTM calls). This is the dominant pattern in equity markets and reflects demand for downside protection and the reality of fat left tails.
  • Skew is often quantified as the difference in IV between a 25-delta put and a 25-delta call, or between 90% moneyness and 110% moneyness strikes.

Volatility Term Structure

Implied volatility varies across option expiration dates.

  • Normal (upward-sloping): Longer-dated options have higher IV. Reflects uncertainty increasing over time.
  • Inverted (downward-sloping): Near-term IV exceeds long-term IV. Common during market stress when short-term uncertainty spikes (e.g., around earnings, elections, crises).
  • Humped: IV peaks at an intermediate maturity. May occur around a specific anticipated event.

Volatility Surface

The two-dimensional surface of implied volatility across both strike (or delta/moneyness) and maturity. The volatility surface is the most complete representation of the options market's view of future uncertainty.

Practitioners interpolate the surface to price options at arbitrary strike/maturity combinations. Surface dynamics (how the surface shifts, tilts, and bends) are critical for options portfolio risk management.

Realized vs Implied Volatility: The Volatility Risk Premium

Implied volatility systematically exceeds subsequent realized volatility on average. This gap is the volatility risk premium (VRP).

VRP = IV - RV_subsequent

The VRP exists because investors are willing to pay a premium for options (insurance), and option sellers demand compensation for bearing tail risk. The VRP is typically positive and has been a persistent source of return for volatility sellers.

Key considerations:

  • The VRP varies over time and is larger during periods of market stress.
  • Selling volatility (harvesting VRP) earns a steady premium but is exposed to large, infrequent losses.
  • The VRP can turn negative during extreme events.

VIX Index

The CBOE Volatility Index measures the market's expectation of 30-day forward volatility, derived from S&P 500 option prices.

  • VIX is quoted in annualized percentage points (e.g., VIX = 20 means approximately 20% expected annualized vol).
  • VIX is computed from a wide strip of OTM put and call options, not from the Black-Scholes model.
  • VIX levels: 12-15 = low/complacent, 15-20 = normal, 20-30 = elevated, 30+ = high stress, 40+ = crisis.
  • VIX has strong mean-reverting properties and tends to spike during market selloffs ("fear gauge").

Key Formulas

FormulaExpressionUse Case
EWMA Variancesigma^2_t = lambda * sigma^2_{t-1} + (1-lambda) * r^2_{t-1}Simple volatility forecast
GARCH(1,1) Variancesigma^2_t = omega + alpha * r^2_{t-1} + beta * sigma^2_{t-1}Mean-reverting vol forecast
GARCH Long-Run VarianceV_L = omega / (1 - alpha - beta)Unconditional variance level
GARCH Half-Lifeh = -ln(2) / ln(alpha + beta)Speed of mean reversion
GARCH h-Step ForecastV_L + (alpha+beta)^h * (sigma^2_t - V_L)Multi-period vol forecast
Black-Scholes CallS * N(d1) - K * exp(-rT) * N(d2)Option pricing (IV extraction)
Volatility Risk PremiumIV - RV_subsequentPremium earned by vol sellers
EWMA Effective Windowapproximately 1 / (1 - lambda)Implicit lookback period

Worked Examples

Example 1: EWMA Variance Update

Given: Yesterday's variance estimate sigma^2_{t-1} = 0.0004 (daily vol = 2%), yesterday's return r_{t-1} = -3% (i.e., r = -0.03), and lambda = 0.94.

Calculate: Today's EWMA variance estimate and daily volatility.

Solution:

sigma^2_t = 0.94 * 0.0004 + (1 - 0.94) * (-0.03)^2
          = 0.94 * 0.0004 + 0.06 * 0.0009
          = 0.000376 + 0.000054
          = 0.000430

Daily volatility:

sigma_t = sqrt(0.000430) = 0.02074 = 2.074%

The large negative return (-3%) caused the volatility estimate to increase from 2.0% to 2.074%. The EWMA responded to the shock, but the high lambda (0.94) dampened the reaction.

Example 2: GARCH(1,1) Long-Run Volatility and Half-Life

Given: GARCH(1,1) parameters estimated from daily S&P 500 returns: omega = 0.000002, alpha = 0.08, beta = 0.91.

Calculate: Long-run daily variance, long-run annualized volatility, and half-life of volatility shocks.

Solution:

Stationarity check: alpha + beta = 0.08 + 0.91 = 0.99 < 1 (stationary, but highly persistent).

Long-run variance:

V_L = 0.000002 / (1 - 0.99) = 0.000002 / 0.01 = 0.0002

Long-run daily volatility:

sigma_L = sqrt(0.0002) = 0.01414 = 1.414%

Annualized:

sigma_annual = 0.01414 * sqrt(252) = 22.45%

Half-life:

h = -ln(2) / ln(0.99) = -0.6931 / (-0.01005) = 68.97 ~ 69 trading days

Interpretation: After a volatility shock, it takes approximately 69 trading days (about 3 months) for the excess volatility to decay by half. This high persistence (alpha + beta = 0.99) is typical for equity index returns.

Example 3: Implied Volatility Interpretation

Given: A stock trades at $100. A 3-month ATM call (K = $100) trades at $6.50. The risk-free rate is 5%. Using Black-Scholes, the implied volatility is determined (via numerical solver) to be 30%.

Calculate: What does this tell us, and how does it compare to realized vol of 22%?

Solution:

The implied volatility of 30% represents the market's consensus forecast of annualized volatility over the next 3 months, as embedded in option prices.

Comparing to realized (historical) volatility of 22%:

VRP = IV - RV = 30% - 22% = 8%

The positive 8-percentage-point gap is the volatility risk premium. Possible interpretations:

  • The market expects volatility to rise above recent realized levels.
  • Option sellers are demanding a premium for bearing tail risk.
  • There may be an upcoming event (earnings, regulatory decision) that could cause a volatility spike.

A systematic vol-selling strategy would sell this option, expecting to profit from the VRP if realized vol remains near 22%. However, the seller bears the risk that realized vol could exceed 30%.

Common Pitfalls

  • GARCH stationarity: alpha + beta must be strictly less than 1 for the GARCH(1,1) process to be covariance-stationary. If alpha + beta >= 1, the long-run variance is undefined and the model is IGARCH (or explosive). Always check this condition after estimation.
  • EWMA has no mean reversion: EWMA is equivalent to IGARCH (alpha + beta = 1), so volatility shocks never decay. This makes EWMA unsuitable for long-horizon volatility forecasts where mean reversion is expected.
  • Implied volatility is model-dependent: IV extracted using Black-Scholes assumes log-normal returns, constant volatility, continuous trading, and no jumps. The "smile" and "skew" exist precisely because these assumptions are violated. IV is a quoting convention, not a true forecast.
  • Conflating historical vol with forward-looking vol: Historical (realized) volatility measures what has happened. Implied volatility reflects market expectations about the future. They address different questions and can diverge substantially.
  • Using daily GARCH for long-horizon forecasts without term structure adjustment: Daily GARCH forecasts converge to the unconditional variance at long horizons. Use the multi-step forecast formula E[sigma^2_{t+h}] = V_L + (alpha+beta)^h * (sigma^2_t - V_L) and aggregate appropriately.
  • Overfitting GARCH models: Higher-order GARCH(p,q) models or extensions (EGARCH, TGARCH, GJR-GARCH) can overfit in-sample. GARCH(1,1) is remarkably hard to beat out-of-sample for most financial return series. Start with GARCH(1,1) and justify added complexity.
  • Lambda selection for EWMA: The choice of lambda significantly affects responsiveness. lambda = 0.94 responds quickly to shocks (effective window approximately 17 days); lambda = 0.97 is smoother (effective window approximately 33 days). The choice should match the application's horizon.

Cross-References

  • historical-risk (wealth-management plugin, Layer 1a): Close-to-close, Parkinson, and Yang-Zhang volatility estimators provide the realized volatility benchmarks against which GARCH forecasts and implied volatility are compared.
  • forward-risk (wealth-management plugin, Layer 1b): Volatility forecasts from EWMA and GARCH are direct inputs to parametric and Monte Carlo VaR calculations.
  • performance-metrics (wealth-management plugin, Layer 1a): Volatility estimates affect the denominators of Sharpe, Sortino, and other risk-adjusted ratios. Using forward-looking (GARCH) volatility can produce conditional performance ratios.

Reference Implementation

See scripts/volatility_modeling.py for computational helpers.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

32.17%
按下载量换算227

Claude

29.97%
按下载量换算211

Cursor

20.68%
按下载量换算146

Gemini CLI

10.08%
按下载量换算71

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

权限需确认

当前来源未能明确判断权限范围,默认进入异常复核队列。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills