STRASMORE/EXPLORE 2,170 QUERIES

AAPL at the money implied volatility, weekly, trailing 52 weeks

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 IV Rank vs IV Percentile: Formulas Explained.

as of series 53×5read in context →
AAPL at the money implied volatility, weekly, trailing 52 weeks — 53 rows by 5 columns, computed from US exchange, SIP and OPRA data.
weekweek_labelaapl_atm_iv_pctweek_low_iv_pctweek_high_iv_pct
2025-08-18Aug 18, 202524.0923.3324.67
2025-08-25Aug 25, 202524.3323.4125.34
2025-09-01Sep 1, 202523.3321.2527.6
2025-09-08Sep 8, 202522.7822.3523.74
2025-09-15Sep 15, 202523.1722.7523.57
2025-09-22Sep 22, 202524.523.6125.24
2025-09-29Sep 29, 202525.224.7225.47
2025-10-06Oct 6, 202528.2926.631.81
2025-10-13Oct 13, 202530.3329.7331.79
2025-10-20Oct 20, 202527.826.7228.63
2025-10-27Oct 27, 202526.623.1927.89
2025-11-03Nov 3, 202523.4822.6623.96
2025-11-10Nov 10, 202523.3722.6324.46
2025-11-17Nov 17, 202525.2424.5127.15
2025-11-24Nov 24, 202521.6720.7222.86
2025-12-01Dec 1, 202520.5619.5421.41
2025-12-08Dec 8, 202520.1419.221.09
2025-12-15Dec 15, 202520.7419.9321.18
2025-12-22Dec 22, 202519.5918.9819.85
2025-12-29Dec 29, 202521.7221.3522.39
2026-01-05Jan 5, 202625.9424.1127.56
2026-01-12Jan 12, 202626.9526.7127.28
2026-01-19Jan 19, 202629.4528.4331.4
2026-01-26Jan 26, 202628.2624.8130.81
2026-02-02Feb 2, 202624.5423.126.76
2026-02-09Feb 9, 202625.7122.8728.85
2026-02-16Feb 16, 202626.525.8827.11
2026-02-23Feb 23, 202626.0825.0626.9
2026-03-02Mar 2, 202628.527.1230.46
2026-03-09Mar 9, 202628.5527.630
2026-03-16Mar 16, 202627.2425.8228.65
2026-03-23Mar 23, 202628.8427.0933.15
2026-03-30Mar 30, 202630.1928.6933.47
2026-04-06Apr 6, 202629.7128.4332.4
2026-04-13Apr 13, 202628.927.929.62
2026-04-20Apr 20, 202628.4727.529.32
2026-04-27Apr 27, 202626.9122.528.84
2026-05-04May 4, 202623.9622.9624.82
2026-05-11May 11, 202624.4423.8924.9
2026-05-18May 18, 202623.2522.0924.06
2026-05-25May 25, 202622.4421.9122.91
2026-06-01Jun 1, 202624.2423.5825.2
2026-06-08Jun 8, 202624.4923.1925.21
2026-06-15Jun 15, 202622.9621.9823.53
2026-06-22Jun 22, 202626.8724.5628.88
2026-06-29Jun 29, 202627.727.3627.85
2026-07-06Jul 6, 202628.1327.7928.59
2026-07-13Jul 13, 202629.1727.8331.51
2026-07-20Jul 20, 202630.1329.3230.84
2026-07-27Jul 27, 202632.4227.6345.92
2026-08-03Aug 3, 202626.2424.3227.7
2026-08-10Aug 10, 202623.7122.6124.81
2026-08-17Aug 17, 202624.3123.7924.89
Rows × columns
53 × 5
Period covered
to
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 AAPL at the money implied volatility, weekly, trailing 52 weeks, derived from the stored result.
ColumnTypeRangeNotes
week date 2025-08-18 to 2026-08-17
week_label text 53 distinct values (Apr 13, 2026, Apr 20, 2026, Apr 27, 2026…)
aapl_atm_iv_pct number 19.59 to 32.42 percent
week_low_iv_pct number 18.98 to 29.73 percent
week_high_iv_pct number 19.85 to 45.92 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
WITH daily AS
(
    SELECT
        date,
        avg(toFloat64(implied_volatility)) * 100 AS atm_iv
    FROM global_markets.options_greeks
    WHERE underlying_symbol = 'AAPL'
      AND date >= today() - 371
      AND iv_converged = 1
      AND volume > 0
      AND days_to_expiry BETWEEN 20 AND 45
      AND abs(toFloat64(strike_price) / toFloat64(underlying_close) - 1) < 0.05
    GROUP BY date
)
SELECT
    toString(toMonday(date))                    AS week,
    formatDateTime(toMonday(date), '%b %e, %Y') AS week_label,
    round(avg(atm_iv), 2)                       AS aapl_atm_iv_pct,
    round(min(atm_iv), 2)                       AS week_low_iv_pct,
    round(max(atm_iv), 2)                       AS week_high_iv_pct
FROM daily
GROUP BY toMonday(date)
ORDER BY toMonday(date)

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 analysisIV Rank vs IV Percentile: Formulas Explained
IV rank vs IV percentile, eight liquid names, 52 week lookback table 8×5 Current, 52 week low and 52 week high ATM IV for each name table 8×6 The same session scored at five different lookback windows ranking 5×4 One stock, one session, three definitions of the IV input table 3×6 The top-ranked name's implied volatility by week, with its 52-week high and low series 53×4 Monthly median 30-day implied volatility: index ETF, staple, and chipmaker series 24×5 See all 2,170 queries →