Sep 12, 2026

4 min read

Option Pricing!

Estimating option prices with delta and gammas

Option Pricing! post cover image

In quantitative trading, market making, and options risk management, rapid mental estimation of how option prices adjust to moves in the underlying asset is an essential skill. Traders use this mental arithmetic to be able to react to market events quickly. In fact, the FPGAs and low-latency systems also change their pricing using this very simple equation!

The Delta-Gamma Approximation

Let V(S)V(S) denote the price of an option as a function of the underlying price SS. When the underlying price moves from an initial price S0S_0 to a new price S1S_1, the change in underlying price is:

ΔS=S1S0\Delta S = S_1 - S_0

Taking a second-order Taylor expansion of V(S)V(S) around S0S_0:

V(S0+ΔS)V(S0)+VSΔS+122VS2(ΔS)2V(S_0 + \Delta S) \approx V(S_0) + \frac{\partial V}{\partial S} \Delta S + \frac{1}{2} \frac{\partial^2 V}{\partial S^2} (\Delta S)^2

Substituting the first-order Greek Delta (Δ=VS\Delta = \frac{\partial V}{\partial S}, a measure of how much the price of an option is expected to change for every $1 change in the price of the underlying asset.) and the second-order Greek Gamma (Γ=2VS2\Gamma = \frac{\partial^2 V}{\partial S^2}, derivative of Delta), we arrive at the standard Delta-Gamma formula for option price change ΔV\Delta V:

ΔVΔΔS+12Γ(ΔS)2\Delta V \approx \Delta \cdot \Delta S + \frac{1}{2} \Gamma (\Delta S)^2

The estimated new option price VnewV_{\text{new}} is therefore:

VnewV0+ΔV=V0+ΔΔS+12Γ(ΔS)2V_{\text{new}} \approx V_0 + \Delta V = V_0 + \Delta \cdot \Delta S + \frac{1}{2} \Gamma (\Delta S)^2

Dissecting the Two Components

  1. Delta Effect (Linear PnL): ΔΔS\Delta \cdot \Delta S
    • Measures the first-order directional exposure.
    • For long calls (Δ>0\Delta > 0), an upward move increases the option value, while a downward move decreases it.
    • For long puts (Δ<0\Delta < 0), an upward move decreases the option value, while a downward move increases it.
  2. Gamma Effect (Convexity PnL): 12Γ(ΔS)2\frac{1}{2} \Gamma (\Delta S)^2
    • Captures the curvature of the option price curve (how fast Delta changes as the stock moves).
    • Because (ΔS)20(\Delta S)^2 \ge 0 and Γ>0\Gamma > 0 for all long vanilla options, the Gamma effect is strictly positive regardless of whether the stock goes up or down.
    • Positive Gamma acts like a tailwind: as the stock moves in your favour, your position becomes longer (Delta increases); as the stock moves against you, your position becomes less exposed (Delta shrinks).

Mental Math Shortcuts for Trading Interviews

Quantitative trading firms may test Delta-Gamma mental math in interviews. You can simplify the convexity term 12Γ(ΔS)2\frac{1}{2} \Gamma (\Delta S)^2 with these mental shortcuts:

  • Move of ±1\pm 1: (ΔS)2=1    Gamma PnL=0.5×Γ(\Delta S)^2 = 1 \implies \text{Gamma PnL} = 0.5 \times \Gamma
  • Move of ±2\pm 2: (ΔS)2=4    Gamma PnL=2×Γ(\Delta S)^2 = 4 \implies \text{Gamma PnL} = 2 \times \Gamma
  • Move of ±3\pm 3: (ΔS)2=9    Gamma PnL=4.5×Γ(\Delta S)^2 = 9 \implies \text{Gamma PnL} = 4.5 \times \Gamma
  • Move of ±4\pm 4: (ΔS)2=16    Gamma PnL=8×Γ(\Delta S)^2 = 16 \implies \text{Gamma PnL} = 8 \times \Gamma

Quick Example

Suppose a call option has base price V0=$5.00V_0 = \textdollar5.00, Δ=0.50\Delta = 0.50, and Γ=0.08\Gamma = 0.08. The stock rises by $2.00\textdollar2.00 (ΔS=+2\Delta S = +2):

  1. Delta effect: 0.50×(+2)=+$1.000.50 \times (+2) = +\textdollar1.00
  2. Gamma effect: 12×0.08×(22)=2×0.08=+$0.16\frac{1}{2} \times 0.08 \times (2^2) = 2 \times 0.08 = +\textdollar0.16
  3. Total change ΔV\Delta V: +1.00+0.16=+$1.16+1.00 + 0.16 = +\textdollar1.16
  4. Estimated new price VnewV_{\text{new}}: $5.00+$1.16=$6.16\textdollar5.00 + \textdollar1.16 = \textdollar6.16

If instead the stock had fallen by $2.00\textdollar2.00 (ΔS=2\Delta S = -2):

  • Delta effect: 0.50×(2)=$1.000.50 \times (-2) = -\textdollar1.00
  • Gamma effect: +0.16+0.16 (still positive!)
  • New price: $5.001.00+0.16=$4.16\textdollar5.00 - 1.00 + 0.16 = \textdollar4.16

§

Interactive Practice Trainer

Test your mental calculation speed below. Randomized scenarios are generated with given base prices, underlying moves, Delta, and Gamma. Enter your estimated price in the box to check your answer and view the step-by-step breakdown.

streak=0bestStreak=0totalAnswered=0totalCorrect=0accuracy=0%

Long call option

Option price, V0V_0
$5.00
Underlying move, ΔS\Delta S
$100 → $102
Delta, Δ\Delta
+0.50
Gamma, Γ\Gamma
0.08

§

§