STRASMORE/EXPLORE 2,433 QUERIES

trace

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 best-stocks-for-day-trading-options.

as of series 20×6read in context →
trace — 20 rows by 6 columns, computed from US exchange, SIP and OPRA data.
session_datesession_labelspy_millionsqqq_millionsiwm_millionsnvda_millions
2026-08-20Aug 203.282.591.222.03
2026-08-21Aug 212.61.740.721.46
2026-08-24Aug 242.512.050.491.81
2026-08-25Aug 252.181.510.441.85
2026-08-26Aug 262.241.830.42.57
2026-08-27Aug 273.152.040.616.88
2026-08-28Aug 283.482.121.353.25
2026-08-31Aug 312.981.770.871.58
2026-09-01Sep 13.652.61.52.49
2026-09-02Sep 22.531.891.052.62
2026-09-03Sep 33.712.41.13.52
2026-09-04Sep 42.681.80.472.17
2026-09-08Sep 82.881.860.652.37
2026-09-09Sep 92.81.811.081.29
2026-09-10Sep 103.812.261.552.26
2026-09-11Sep 113.262.010.941.39
2026-09-14Sep 143.32.731.351.88
2026-09-15Sep 153.112.251.11.64
2026-09-16Sep 164.823.041.441.56
2026-09-17Sep 174.222.651.121.91
Rows × columns
20 × 6
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 trace, derived from the stored result.
ColumnTypeRangeNotes
session_date date 2026-08-20 to 2026-09-17
session_label text 20 distinct values (Aug 20, Aug 21, Aug 24…)
spy_millions number 2.18 to 4.82
qqq_millions number 1.51 to 3.04
iwm_millions number 0.4 to 1.55
nvda_millions number 1.29 to 6.88

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
    toString(date)                                                         AS session_date,
    concat(formatDateTime(date, '%b'), ' ', toString(toDayOfMonth(date)))  AS session_label,
    round(sumIf(volume, underlying_symbol = 'SPY') / 1e6, 2)               AS spy_millions,
    round(sumIf(volume, underlying_symbol = 'QQQ') / 1e6, 2)               AS qqq_millions,
    round(sumIf(volume, underlying_symbol = 'IWM') / 1e6, 2)               AS iwm_millions,
    round(sumIf(volume, underlying_symbol = 'NVDA') / 1e6, 2)              AS nvda_millions
FROM global_markets.options_greeks
WHERE date IN
    (
        SELECT date
        FROM global_markets.options_greeks
        WHERE date >= today() - 40
        GROUP BY date
        ORDER BY date DESC
        LIMIT 20
    )
  AND underlying_symbol IN ('SPY', 'QQQ', 'IWM', 'NVDA')
  AND volume > 0
GROUP BY date
ORDER BY date
⌘/Ctrl + Enter
More from this analysisbest-stocks-for-day-trading-options
ranked ranking 15×4 spread_pin ranking 5×4 concentration ranking 4×3 The 2s10s spread by month, full history series 604×5 One SPY $600 LEAPS call's price over two years (expired Jan 16 2026) series 470×2 3m10y and 2s10s spreads, monthly averages over twenty years series 241×4 See all 2,433 queries →