STRASMORE/EXPLORE 2,648 QUERIES

Options volume by time left to expiry, AAPL, April to June 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-08-10, from How Continuous Futures Contracts Are Built.

as of ranking 5×2read in context →
Options volume by time left to expiry, AAPL, April to June 2026 — 5 rows by 2 columns, computed from US exchange, SIP and OPRA data.
time_to_expirycontracts_traded_m
under 1 week28.52
1 to 4 weeks9.18
1 to 3 months6.14
3 to 6 months2.56
over 6 months2.71
Rows × columns
5 × 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 Options volume by time left to expiry, AAPL, April to June 2026, derived from the stored result.
ColumnTypeRangeNotes
time_to_expiry text 5 distinct values
contracts_traded_m number 2.56 to 28.52 count

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.

Run it yourself

This is the exact query behind the result above. Change a ticker, a date or a column and run it against the warehouse — no account, no key. The no-signup tier is smaller than the one this page was computed on; a query that reaches past it comes back saying which plan runs it.

SELECT
    multiIf(days_to_expiry <= 7,   'under 1 week',
            days_to_expiry <= 30,  '1 to 4 weeks',
            days_to_expiry <= 90,  '1 to 3 months',
            days_to_expiry <= 180, '3 to 6 months',
                                   'over 6 months') AS time_to_expiry,
    round(sum(volume) / 1e6, 2)                      AS contracts_traded_m
FROM global_markets.options_greeks
WHERE underlying_symbol = 'AAPL'
  AND date >= '2026-04-01'
  AND date <= '2026-06-30'
  AND volume > 0
GROUP BY time_to_expiry
ORDER BY min(days_to_expiry)
⌘/Ctrl + Enter

Work with this data in your AI assistant

Opens ready to query, with this page's data. Free, no account.

More from this analysisHow Continuous Futures Contracts Are Built
KO quarterly dividend in cents and as a percent of the share price, 2016 to 2026 series 42×4 → Trading sessions per year under FB and META ranking 15×3 → New listings landing on a symbol that already had history ranking 11×3 → When each symbol last printed a daily bar ranking 6×3 → Which share-class spellings actually carry history ranking 4×4 → How many of the 390 session minutes each US symbol traded in ranking 10×2 → See all 2,648 queries →