STRASMORE/EXPLORE 2,170 QUERIES

Same-day options volume by underlying: the ten heaviest names, 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-08-13, from When Do 0DTE Options Trade? By the Hour.

as of table 10×5read in context →
Same-day options volume by underlying: the ten heaviest names, July 10, 2026 — 10 rows by 5 columns, computed from US exchange, SIP and OPRA data.
underlyingsame_day_contracts_mpct_of_all_0dtesame_day_pct_of_namepct_traded_before_noon
SPY8.0125.572.154.4
QQQ4.5414.575.551.1
SPXW2.788.972.951.5
NVDA2.748.754.556.3
TSLA2.287.367.750.6
IWM0.92.865.467.4
AAPL0.762.456.556.4
META0.72.247.655.3
MU0.471.55144.5
AMZN0.381.246.960.4
Rows × columns
10 × 5
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 Same-day options volume by underlying: the ten heaviest names, July 10, 2026, derived from the stored result.
ColumnTypeRangeNotes
underlying text 10 distinct values (AAPL, AMZN, IWM…)
same_day_contracts_m number 0.38 to 8.01 count
pct_of_all_0dte number 1.2 to 25.5 percent
same_day_pct_of_name number 46.9 to 75.5 percent
pct_traded_before_noon number 44.5 to 67.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
WITH by_name AS (
    SELECT substring(ticker, 3, length(ticker) - 17) AS underlying,
           sumIf(size, substring(ticker, length(ticker) - 14, 6) = '260710') AS same_day_size,
           sumIf(size, substring(ticker, length(ticker) - 14, 6) = '260710'
                       AND toHour(toTimeZone(sip_timestamp, 'America/New_York')) < 12) AS morning_size,
           sum(size) AS all_size
    FROM global_markets.options_trades
    WHERE sip_timestamp >= toDateTime64('2026-07-10 13:30:00', 9)
      AND sip_timestamp < toDateTime64('2026-07-10 20:00:00', 9)
      AND ticker NOT LIKE 'O:SPCX%'
    GROUP BY underlying
)
SELECT underlying,
       round(same_day_size / 1e6, 2) AS same_day_contracts_m,
       round(100.0 * same_day_size / sum(same_day_size) OVER (), 1) AS pct_of_all_0dte,
       round(100.0 * same_day_size / all_size, 1) AS same_day_pct_of_name,
       round(100.0 * morning_size / same_day_size, 1) AS pct_traded_before_noon
FROM by_name
ORDER BY same_day_size DESC
LIMIT 10

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 analysisWhen Do 0DTE Options Trade? By the Hour
0DTE contract volume, share of all options volume, and flow rate by ET hour: Friday, July 10, 2026 table 7×5 Median bid-ask spread on SPY same-day contracts quoted $1-$10, by ET hour: July 10, 2026 ranking 7×4 Same-day calls vs. puts by ET hour, and the put share of 0DTE volume: July 10, 2026 ranking 7×4 Same-day share of options volume by weekday: all sessions, June 1 to July 10, 2026 series 5×5 What the last hour trades: same-day volume by premium paid, 10am hour vs. closing hour, July 10, 2026 ranking 5×4 Who owns Wednesday: roots by distinct Wednesday-dated expirations, July 6-9, 2026 tape table 8×5 See all 2,170 queries →