The Crypto Options Greeks Calculator prices a European vanilla option with the Black-Scholes-Merton model and returns all five Greeks for both a call and a put. It is built for traders on Deribit, Lyra, and similar venues who need fast, accurate sensitivities from spot, strike, time, implied volatility, and rate.
How it works
Black-Scholes defines two intermediate terms from your inputs (S = spot, K = strike, T = years to expiry, σ = implied volatility, r = risk-free rate):
d1 = ( ln(S/K) + (r + σ²/2)·T ) / ( σ·√T )
d2 = d1 − σ·√T
The prices are then:
Call = S·N(d1) − K·e^(−rT)·N(d2)
Put = K·e^(−rT)·N(−d2) − S·N(−d1)
where N is the standard normal cumulative distribution. The calculator evaluates N with a high-accuracy numerical approximation. The Greeks follow directly:
- Delta: N(d1) for a call, N(d1) − 1 for a put
- Gamma: N′(d1) / (S·σ·√T) — shared by call and put
- Vega: S·N′(d1)·√T (shown per 1% IV move)
- Theta: the time-decay term (shown per calendar day)
- Rho: K·T·e^(−rT)·N(d2) for a call
What each Greek tells you
| Greek | Measures | Typical use |
|---|---|---|
| Delta (Δ) | Price change per $1 spot move | Position sizing, directional hedging, delta-neutral books |
| Gamma (Γ) | Rate of change of delta per $1 spot move | How quickly your delta exposure shifts; concentrates near expiry |
| Theta (Θ) | Value lost per calendar day | Time-decay cost of holding long options; income for short sellers |
| Vega (ν) | Price change per 1% IV move | Exposure to volatility; long options gain when IV rises |
| Rho (ρ) | Price change per 1% rate move | Usually small for short-dated crypto options; larger for LEAPS |
Call delta runs 0 to 1; put delta runs −1 to 0. An at-the-money option has delta around ±0.5. Delta also approximates the probability the option expires in the money under the risk-neutral measure.
Worked example
Consider, for illustration, a BTC call with the following inputs:
- Spot: $60,000 · Strike: $60,000 (at the money)
- Time to expiry: 30 days (T = 30/365 ≈ 0.082 years)
- Implied volatility: 70% · Risk-free rate: 4%
At the money with 30 days remaining and 70% IV, the call prices at a few thousand dollars. Delta is close to 0.55 — slightly above 0.5 because the drift term (the rate) lifts the forward above spot. Gamma is relatively large because at-the-money options have maximum gamma near expiry. Theta is negative and accelerating — an option this close to expiry loses value faster each day. Vega is significant because 30 days of 70% IV means large uncertainty; a 1% rise in IV adds meaningfully to the premium.
As expiry approaches, gamma concentrates sharply around the strike and theta acceleration intensifies, while vega falls as less time remains for volatility to affect the outcome.
Notes and caveats
The model assumes a single flat implied volatility and rate. A live exchange risk engine uses a full volatility surface (the IV smile or skew) and may include funding rates and perpetual carry, so treat these as the textbook reference values rather than an exact match to a venue quote. Crypto markets also exhibit jump risk not captured by Black-Scholes. Use the Greeks here for intuition and planning, and cross-check with your exchange’s risk engine for live position management.