Delta (Δ)
The most fundamental option greek. Measures the rate of option price change per $1 move in the underlying.
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.
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.
- 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
spot(query, required) — underlying price, e.g.550strike(query, required) — option strike price, e.g.560dte(query, required) — days to expiration, e.g.30sigma(query, required) — implied volatility as decimal, e.g.0.20type(query, required) —callorputr(query, optional) — risk-free rate, default0.05q(query, optional) — dividend yield, default0
{
"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"
Why Delta Matters for Trading
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
- Profits from up-moves
- Standard long calls or short puts
- Directional bullish exposure
- ATM ≈ 0.5, deep ITM ≈ 1
- Profits from down-moves
- Long puts or short calls
- Directional bearish exposure
- ATM ≈ -0.5, deep ITM ≈ -1
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.
Related Concepts
Rate of delta change per $1 move. The second derivative that drives delta-hedging rebalancing.
How delta changes with implied volatility. The cross-derivative ∂Δ/∂σ.
How delta decays with time. Drives end-of-day and overnight hedging rebalancing flows.
Net dealer delta exposure aggregated across the option chain.
Net dealer gamma exposure — measures how delta-hedging flows create support and resistance.
Daily time decay — how much option value erodes per day, all else equal.
Learn More
Full endpoint reference for computing all Black-Scholes Greeks.
How fast delta changes. The greek that creates GEX.
How delta-hedging aggregated across open interest creates market-wide support and resistance.
Net directional dealer exposure derived from delta across the option chain.