Strasmore Research
Learn Matt ConnorBy Matt Connor · Updated 2026-07-15

What Is Implied Volatility? IV, Explained

Implied volatility is the future move an option's price implies. See IV across stocks, the term structure, the volatility skew, and a year of SPY's vol regime.

Implied volatility (IV) is the future move a stock's option prices imply — the annualized swing the market is pricing in, backed out of what options actually cost. It is not the stock's past movement; it is the market's forward bet, and it is the single biggest driver of how expensive every option is. We compute it across the whole US options tape, so we can show what IV actually looks like across stocks, across strikes, across expiries, and across time.

Implied volatility is different for every stock

A calm index and a volatile single stock carry very different IV. Here is at-the-money IV across the largest names:

QueryAt-the-money implied volatility by stock (2026-07-13)
The exact SQL behind every number
SELECT underlying_symbol AS symbol,
       round(avg(implied_volatility) * 100, 1) AS atm_iv_pct
FROM global_markets.options_greeks
WHERE date = '2026-07-13' AND underlying_symbol IN ('SPY','QQQ','AAPL','MSFT','AMZN','NVDA','TSLA')
  AND abs(delta) BETWEEN 0.45 AND 0.55 AND days_to_expiry BETWEEN 20 AND 45
GROUP BY symbol ORDER BY atm_iv_pct DESC

Broad index ETFs like SPY sit at the bottom — their moves are diversified away — while single stocks, especially high-beta names, carry multiples of that: the top name here is priced for a swing several times SPY's. A stock's IV is the market's price tag on its uncertainty, which is why an earnings date or a product launch can lift one name's IV while the index barely moves.

The term structure: IV changes with time

IV is not one number per stock — it varies with how far out the option expires. Plotting at-the-money SPY IV against time gives the term structure:

QuerySPY at-the-money IV by time to expiry: the term structure (2026-07-13)
The exact SQL behind every number
SELECT multiIf(days_to_expiry<=7,'0-7 days',days_to_expiry<=30,'8-30 days',
               days_to_expiry<=90,'31-90 days','90+ days') AS time_to_expiry,
       round(avg(implied_volatility) * 100, 1) AS atm_iv_pct
FROM global_markets.options_greeks
WHERE date = '2026-07-13' AND underlying_symbol = 'SPY' AND abs(delta) BETWEEN 0.45 AND 0.55
GROUP BY time_to_expiry ORDER BY min(days_to_expiry)

In calm markets the curve usually slopes gently upward: longer-dated options carry more IV, since more can happen over more time. It can invert ahead of a known near-term event, when the market pays up for short-dated protection — the short-dated demand behind 0DTE options. The shape is a read on when the market expects turbulence.

The volatility skew: crash insurance costs more

Fix the expiry and vary the strike, and IV is still not flat. Out-of-the-money puts — the contracts that pay off in a crash — carry markedly higher IV than at-the-money options:

QuerySPY put IV rises as strikes fall: the volatility skew (2026-07-13)
The exact SQL behind every number
SELECT multiIf(delta>-0.15,'far OTM put (|d|<0.15)',delta>-0.35,'OTM put (0.15-0.35)',
               delta>-0.55,'ATM (~0.50)',delta>-0.75,'ITM put (0.55-0.75)','deep ITM put') AS put_moneyness,
       round(avg(implied_volatility) * 100, 1) AS avg_iv_pct
FROM global_markets.options_greeks
WHERE date = '2026-07-13' AND underlying_symbol = 'SPY' AND option_type = 'P' AND days_to_expiry BETWEEN 20 AND 45
GROUP BY put_moneyness ORDER BY avg(delta)

That upward tilt toward low strikes is the volatility skew (or "smile"): investors pay a premium for downside protection, so put demand bids up the price — and the implied volatility — of low strikes. Skew is why you cannot call an option "cheap" or "expensive" on IV alone without saying which strike, and why selling far-out-of-the-money puts collects a fat premium against a fat tail risk. The delta that labels each strike, and the vega that turns an IV move into dollars, are its close companions.

IV moves over time: the vol regime

Zoom out from a single day and IV tells the market's mood over months. Here is SPY's at-the-money IV, one reading a month for a year:

QuerySPY at-the-money implied volatility, month by month (Jul 2025 – Jul 2026)
The exact SQL behind every number
SELECT toStartOfMonth(date) AS month,
       round(avg(implied_volatility) * 100, 1) AS spy_atm_iv_pct
FROM global_markets.options_greeks
WHERE date IN ('2025-07-15','2025-08-15','2025-09-15','2025-10-15','2025-11-14','2025-12-15','2026-01-15','2026-02-13','2026-03-13','2026-04-15','2026-05-15','2026-06-15','2026-07-10') AND underlying_symbol = 'SPY'
  AND abs(delta) BETWEEN 0.45 AND 0.55 AND days_to_expiry BETWEEN 20 AND 45
GROUP BY month ORDER BY month

Volatility is not constant — it clusters. Quiet months run in the low teens; a stress event can double IV in weeks, and it mean-reverts back down once the fear passes. Reading where today's IV sits against that range — its "IV rank" — is how traders judge whether options are cheap or rich right now, the same judgment the greek vega prices at the level of a single contract.

FAQ

What is implied volatility in simple terms?

It is the future stock movement an option's price implies, stated as an annualized percentage. High implied volatility means the market expects a big move and options are expensive; low implied volatility means the opposite. It is derived from the option's price, not from the stock's past.

Is high implied volatility good or bad?

Neither by itself — it depends on your side. High IV makes options expensive, which helps sellers and hurts buyers. Buyers also risk a "vol crush," where IV falls after an event and the option loses value even if the stock cooperates.

What is the difference between implied and historical volatility?

Historical (or realized) volatility measures how much the stock actually moved in the past. Implied volatility is forward-looking — the movement the option market is pricing for the future. When implied sits far above realized, options are pricing in more risk than the stock has recently shown.

Why do out-of-the-money puts have higher implied volatility?

Investors pay a premium for crash protection. Demand for low-strike puts bids up their price, and with it their implied volatility, producing the volatility skew. It captures that market crashes tend to be faster and deeper than rallies.

What is IV rank?

IV rank places today's implied volatility within its own recent range — near the top means options are expensive versus their history, near the bottom means cheap. It is the standard way to judge whether to be a net buyer or seller of options right now.