STRASMORE/EXPLORE 2,170 QUERIES

Options ADV: average daily contracts and share-equivalent exposure (June 11 – July 10, 2026)

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-07-26, from What Is Average Daily Volume (ADV)?.

as of ranking 4×4read in context →
Options ADV: average daily contracts and share-equivalent exposure (June 11 – July 10, 2026) — 4 rows by 4 columns, computed from US exchange, SIP and OPRA data.
underlyingavg_daily_contracts_kshare_equivalent_msessions
SPY12543.21254.320
AAPL1265.1126.520
MU804.780.520
KO64.66.520
Rows × columns
4 × 4
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 Options ADV: average daily contracts and share-equivalent exposure (June 11 – July 10, 2026), derived from the stored result.
ColumnTypeRangeNotes
underlying text 4 distinct values (AAPL, KO, MU…)
avg_daily_contracts_k number 64.6 to 12,543.2 count
share_equivalent_m number 6.5 to 1,254.3
sessions number every row is 20

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 multiIf(ticker LIKE 'O:SPY2%', 'SPY', ticker LIKE 'O:AAPL2%', 'AAPL', ticker LIKE 'O:MU2%', 'MU', 'KO') AS underlying,
           toDate(toTimeZone(window_start, 'America/New_York')) AS et_date,
           sum(toFloat64(volume)) AS contracts
    FROM global_markets.options_minute_aggs
    WHERE (ticker LIKE 'O:SPY2%' OR ticker LIKE 'O:AAPL2%' OR ticker LIKE 'O:MU2%' OR ticker LIKE 'O:KO2%')
      AND window_start >= toDateTime('2026-06-11 00:00:00', 'America/New_York')
      AND window_start < toDateTime('2026-07-11 00:00:00', 'America/New_York')
    GROUP BY underlying, et_date
)
SELECT underlying,
       round(avg(contracts) / 1e3, 1) AS avg_daily_contracts_k,
       round(avg(contracts) * 100 / 1e6, 1) AS share_equivalent_m,
       count() AS sessions
FROM daily
GROUP BY underlying
ORDER BY avg_daily_contracts_k DESC

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 Average Daily Volume (ADV)?
MU: rolling 20-session vs 90-session ADV, December 2025 through July 10, 2026 (sampled every third session) series 49×3 ADV by hand: KO's five daily volumes, their sum, and the average (July 6–10, 2026) series 5×5 20-session regular-hours ADV: shares, dollars, and the extended-hours share (June 11 – July 10, 2026) table 5×5 Days to cover, recomputed: FINRA's denominator vs this page's 20-session regular-hours ADV (settlement June 30, 2026) table 2×6 MU's sharpest 2026 volume shock: the event day vs the trailing ADV before and after scalar 1×6 Dollar ADV across the whole US tape: percentiles and threshold counts (June 11 – July 10, 2026) scalar 1×10 See all 2,170 queries →