Crypto Options: Deribit Greeks and Vol Surface

Crypto option markets combine familiar option mathematics with continuous trading, fragmented spot liquidity, large jumps, and a market structure dominated by a few venues. Deribit is a major venue for BTC and ETH options, but a quant should not confuse a quoted implied volatility with an executable, hedgeable variance forecast. The tradeable object is a portfolio of contracts whose delta, gamma, vega, and funding exposure evolve through a volatile underlying and a changing surface.

Greeks are local derivatives

For option price \(V(S, \sigma, t)\), delta measures sensitivity to spot, gamma the curvature of delta, vega sensitivity to implied volatility, and theta time decay. A local P&L approximation is

dV ≈ delta × dS + 0.5 × gamma × dS² + vega × dIV + theta × dt

This identity is useful for attribution, not a guarantee. Crypto gaps, skew changes, and discrete hedging leave residual P&L. Gamma scalping earns realized movement only after paying option premium, bid-ask, trading costs, and adverse selection.

GreekPractical crypto interpretationMain hidden risk
DeltaSpot/perpetual hedge requirementHedge slippage during jumps
GammaConvex exposure to realized movesHigh turnover and short-gamma tails
VegaExposure to implied-vol repricingSurface moves are not parallel
ThetaPremium decayCan accelerate near expiry
VannaDelta change as IV movesSkew-driven hedge error

Many crypto desks hedge delta with perpetual swaps. That adds variable funding and exchange credit exposure, so an apparently delta-neutral options book is not necessarily cash-neutral. Compare the expected funding drag to spot borrow, futures basis, and custody constraints; crypto funding-rate arbitrage provides the carry mechanics.

Construct the surface

Raw option quotes should be filtered for crossed markets, stale quotes, minimum size, and arbitrage violations. Convert prices to implied vol using a consistent forward convention, then fit in delta or log-moneyness by expiry. A robust surface should preserve monotonicity and avoid calendar arbitrage where possible.

import numpy as np

def total_variance(iv, tenor_years):
    return iv**2 * tenor_years

def vega_weighted_iv(iv, vega):
    vega = np.maximum(vega, 1e-8)
    return np.sum(iv * vega) / np.sum(vega)

def variance_risk_premium(implied_var, realized_var_forecast):
    return implied_var - realized_var_forecast

Use total variance, not only volatility, when comparing maturities. A surface can show a lower annualized vol at a longer expiry while still having higher total uncertainty. The full interpolation and no-arbitrage problem is developed in implied volatility surface; in crypto, repeat validation after every venue or contract-specification change.

Trade expressions

A variance-risk-premium trade sells options only if the expected realized variance is below implied variance by enough to cover tail and execution costs. A skew trade isolates relative implied vols, for example downside puts versus calls, but must account for their different delta and vanna. A calendar trade forecasts relative forward variance, not merely that front IV is “high.”

For each expression, simulate a hedge rule and a surface-shock grid. Delta hedging every minute in a backtest at mid is an upper bound on P&L, not a strategy. Include exchange fees, trade size, latency, and the fact that spot/perpetual liquidity deteriorates during the moves that make gamma valuable.

Settlement, collateral, and liquidity

Verify whether an instrument is cash-settled or physically settled, its index calculation, exercise style, expiry timestamp, and collateral currency. Margin models can change as spot and IV jump together. A short put book that looks diversified across strikes can have concentrated liquidation risk when collateral is volatile.

Open interest is not executable depth. Measure quote size near the chosen delta, response latency, and ability to hedge the underlying. Venue concentration and stablecoin collateral create operational stress; stablecoin depeg risk explains why collateral value should be stressed independently from the option payoff.

Key takeaways

  • Greeks are local P&L coordinates; jumps, skew, and discrete hedging create residual risk.
  • Build surfaces from filtered executable quotes and compare maturities in total-variance space.
  • Perpetual delta hedges introduce funding and venue risk to an options portfolio.
  • Test trade ideas with actual hedge rules, fees, and liquidity-aware fills.
  • Contract settlement, collateral, and exchange concentration are first-class risk variables.
#crypto options #Deribit #Greeks #implied volatility #volatility surface #quant