STRASMORE/EXPLORE 2,500 QUERIES

SPY option volume by days to expiry, trailing six 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-09-20, from SPX vs SPY Options: Which One to Trade.

as of ranking 5×3read in context →
SPY option volume by days to expiry, trailing six weeks — 5 rows by 3 columns, computed from US exchange, SIP and OPRA data.
days_to_expiry_bucketcontracts_traded_millionsshare_of_volume_pct
0 to 1 days31.5632.4
2 to 7 days31.9732.9
8 to 30 days20.0720.6
31 to 90 days8.558.8
over 90 days5.135.3
Rows × columns
5 × 3
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 option volume by days to expiry, trailing six weeks, derived from the stored result.
ColumnTypeRangeNotes
days_to_expiry_bucket text 5 distinct values (0 to 1 days, 2 to 7 days, 31 to 90 days…)
contracts_traded_millions number 5.13 to 31.97 count
share_of_volume_pct number 5.3 to 32.9 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.

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
    bucket                                              AS days_to_expiry_bucket,
    round(contracts / 1e6, 2)                           AS contracts_traded_millions,
    round(100 * contracts / sum(contracts) OVER (), 1)  AS share_of_volume_pct
FROM
(
    SELECT
        multiIf(days_to_expiry <= 1,  '0 to 1 days',
                days_to_expiry <= 7,  '2 to 7 days',
                days_to_expiry <= 30, '8 to 30 days',
                days_to_expiry <= 90, '31 to 90 days',
                                      'over 90 days')  AS bucket,
        min(days_to_expiry)                            AS bucket_floor,
        sum(volume)                                    AS contracts
    FROM global_markets.options_greeks
    WHERE underlying_symbol = 'SPY'
      AND date >= today() - 45
      AND volume > 0
    GROUP BY bucket
)
ORDER BY bucket_floor
⌘/Ctrl + Enter

עבדו עם הנתונים האלה בעוזר ה-AI שלכם

נפתח מוכן לשאילתות, עם הנתונים של העמוד הזה. בחינם, בלי חשבון.

More from this analysisSPX vs SPY Options: Which One to Trade
Time value left in deep in-the-money SPY calls, against the dividend at stake ranking 15×4 What one contract controls: SPX, SPY and XSP ranking 3×4 How close SPY closes to the nearest whole-dollar strike on monthly expirations series 12×4 Share of contract volume by days to expiry, SPX and SPY ranking 5×3 Average daily options volume: Section 1256 names against equity options ranking 4×3 The prices behind the arithmetic: Thursday's close, the strike, Friday's open and close series 29×6 See all 2,500 queries →