STRASMORE/EXPLORE 2,170 QUERIES

SPY near-the-money implied volatility by days to expiry

Answered against 22 years of US equities and 12 years of US options data and published with the query that produced it. This result is stored as of 2026-08-22, from What Is VIX1D? The 1-Day Volatility Index.

as of ranking 8×2read in context →
SPY near-the-money implied volatility by days to expiry — 8 rows by 2 columns, computed from US exchange, SIP and OPRA data.
dte_bucketspy_iv_pct
120.4
2-317.8
4-715.2
8-1415.4
15-2116.1
22-3016.1
31-6016.2
61-9016.3
Rows × columns
8 × 2
Computed
Completeness
No missing values
Source
US exchange, SIP and OPRA market data
Licence
Strasmore terms · free, no signup
Formats
JSON · CSV · the SQL below

What each column holds

Column definitions for SPY near-the-money implied volatility by days to expiry, derived from the stored result.
ColumnTypeRangeNotes
dte_bucket text 8 distinct values (1, 15-21, 2-3…)
spy_iv_pct number 15.2 to 20.4 percent

Computed from Strasmore's warehouse of US exchange, SIP and OPRA market data. Equity prices are delayed; options greeks and implied volatility are end-of-day. This result is stored, not recomputed on load — it is exactly the numbers that were returned on , and the query below is what returned them.

the exact SQL behind every number
SELECT
    multiIf(
        days_to_expiry = 0,   '0 (today)',
        days_to_expiry = 1,   '1',
        days_to_expiry <= 3,  '2-3',
        days_to_expiry <= 7,  '4-7',
        days_to_expiry <= 14, '8-14',
        days_to_expiry <= 21, '15-21',
        days_to_expiry <= 30, '22-30',
        days_to_expiry <= 60, '31-60',
                              '61-90')      AS dte_bucket,
    round(avg(implied_volatility) * 100, 1) AS spy_iv_pct
FROM global_markets.options_greeks
WHERE underlying_symbol = 'SPY'
  AND date >= today() - 180
  AND iv_converged = 1
  AND volume > 0
  AND days_to_expiry <= 90
  AND abs(toFloat64(strike_price) / toFloat64(underlying_close) - 1) < 0.02
GROUP BY dte_bucket
ORDER BY min(days_to_expiry)

Run your own version of this

The same 22 years of US equities and 12 years of options data are queryable in SQL or plain English. A free account runs 100 queries a day and takes no card.

More from this analysisWhat Is VIX1D? The 1-Day Volatility Index
SPY absolute daily move, median and 90th percentile by year ranking 8×4 Implied daily move (IV / 16) against realized daily movement, SPY by month series 14×5 SPY option volume by expiration through one session, June 17 2026 series 14×4 Median daily percent change: VXX against SPY, by calendar year ranking 7×4 SPY near-the-money implied volatility by distance to expiration ranking 6×3 The near-to-far implied volatility gap across liquid names ranking 6×4 See all 2,170 queries →