Delta (Δ)

The most fundamental option greek. Measures the rate of option price change per $1 move in the underlying.

Definition

Delta (Δ) is the first partial derivative of the option's theoretical value with respect to the price of the underlying asset (∂V/∂S). It measures how much an option's price changes for each $1 move in the underlying. For calls, delta ranges from 0 to 1; for puts, from -1 to 0. At-the-money options have delta near ±0.50.

Formula (Black-Scholes)
Δ_call = e^(-qT) × N(d₁)
Δ_put = e^(-qT) × [N(d₁) - 1]
d₁ = [ln(S/K) + (r - q + σ²/2)T] / (σ√T)

Where S is spot price, K is strike, r is risk-free rate, q is dividend yield, σ is implied volatility, T is time to expiration in years, and N is the cumulative standard normal distribution.

Inputs
spot price (S) strike (K) volatility (σ) time (T) rate (r) yield (q)
Output
first_order.delta
Interpretation
  • Delta near 1.0 (call) or -1.0 (put): deep ITM. Option moves nearly dollar-for-dollar with the underlying.
  • Delta near 0.50 (call) or -0.50 (put): ATM. Roughly 50% probability of expiring in-the-money.
  • Delta near 0 (call) or 0 (put): deep OTM. Option has little sensitivity to underlying price changes.
  • Hedge ratio: delta tells a dealer how many shares to hold to delta-hedge an option position.

How Delta Works

Delta is the most intuitive of all Greeks because it answers the simplest question: if the stock moves $1, how much does my option move? A call with delta 0.60 gains roughly $0.60 when the stock rises $1, and loses $0.60 when it falls $1. A put with delta -0.40 gains $0.40 when the stock falls $1.

Delta also serves as a rough probability proxy. An option with delta 0.30 has approximately a 30% chance of expiring in-the-money. This is not a precise risk-neutral probability, but it is a useful first-order approximation that traders reference constantly when sizing positions and selecting strikes.

As the underlying moves, delta itself changes. The rate of that change is gamma. For ATM options near expiry, gamma is highest and delta swings rapidly between 0 and 1. This is why short-dated ATM options are the most dynamic and why dealers holding them must rebalance aggressively. The chain of delta hedging rebalancing, aggregated across all open interest, is what creates delta exposure (DEX) and ultimately drives dealer flow in the market.

Delta also changes with implied volatility (that sensitivity is vanna) and with time (that sensitivity is charm). These second-order effects are what make delta a living, breathing number rather than a static hedge ratio.

Compute Delta via API

Endpoint
GET /v1/pricing/greeks
Tier
Free
Parameters
  • spot (query, required) — underlying price, e.g. 550
  • strike (query, required) — option strike price, e.g. 560
  • dte (query, required) — days to expiration, e.g. 30
  • sigma (query, required) — implied volatility as decimal, e.g. 0.20
  • type (query, required) — call or put
  • r (query, optional) — risk-free rate, default 0.05
  • q (query, optional) — dividend yield, default 0
Response field
{
  "first_order": {
    "delta": 0.4284,
    "gamma": ...,
    "theta": ...,
    "vega": ...,
    "rho": ...
  },
  "second_order": { ... }
}
curl -H "X-Api-Key: YOUR_KEY" \
  "https://lab.flashalpha.com/v1/pricing/greeks?spot=550&strike=560&dte=30&sigma=0.20&type=call&r=0.05&q=0.013"
import requests
r = requests.get(
    "https://lab.flashalpha.com/v1/pricing/greeks",
    params={"spot": 550, "strike": 560, "dte": 30, "sigma": 0.20,
            "type": "call", "r": 0.05, "q": 0.013},
    headers={"X-Api-Key": "YOUR_KEY"}
)
d = r.json()
print(f"Delta: {d['first_order']['delta']:.4f}")
const params = new URLSearchParams({
  spot: 550, strike: 560, dte: 30, sigma: 0.20,
  type: "call", r: 0.05, q: 0.013
});
const r = await fetch(
  `https://lab.flashalpha.com/v1/pricing/greeks?${params}`,
  { headers: { "X-Api-Key": "YOUR_KEY" } }
);
const d = await r.json();
console.log(`Delta: ${d.first_order.delta}`);

Why Delta Matters for Trading

TL;DR

Delta is how much the option price moves per $1 move in the underlying. The core directional sensitivity — everything else is second-order.

What it measures
∂V/∂S. For calls, between 0 and 1; for puts, between -1 and 0. ATM ≈ ±0.5.
What it signals
Directional exposure per option contract.
Why we measure it
Delta is how you measure 'how long' or 'how short' a position really is. Position sizing starts here.
Who uses it
Every options trader.

How to read Delta

Long delta
  • Profits from up-moves
  • Standard long calls or short puts
  • Directional bullish exposure
  • ATM ≈ 0.5, deep ITM ≈ 1
Good for: bullish trades
Short delta
  • Profits from down-moves
  • Long puts or short calls
  • Directional bearish exposure
  • ATM ≈ -0.5, deep ITM ≈ -1
Good for: bearish trades, hedges
Delta-neutral
  • No directional exposure
  • Straddles, iron condors, flies
  • P&L driven by gamma, vega, theta
  • Standard vol strategies
Delta-neutral

Rules of thumb

  • Delta ≈ probability ITM. A 0.25 call has ~25% probability of expiring ITM. Not exact, but close enough.
  • Delta changes with spot (gamma). Your 0.5 delta today can be 0.7 tomorrow if spot moves — re-hedge.
  • Use net delta for multi-leg. Total position delta matters, not individual legs.
  • Deep ITM = stock proxy. A 0.98-delta call behaves almost identically to owning the stock.
  • Watch delta drift near expiry. ATM delta moves faster into expiry — your delta-neutral trade can drift fast.