Trading during the Q1 2026 disclosure window, five household names
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-06, from When Are 13F Filings Due? 2026 Deadlines.
| ticker | sessions | volume_millions | move_pct |
|---|---|---|---|
| NVDA | 32 | 4003 | 28 |
| SPY | 32 | 1436.3 | 13 |
| AAPL | 32 | 1032.4 | 18.2 |
| MSFT | 32 | 824.2 | 13 |
| KO | 32 | 314.7 | 6.1 |
- Rows × columns
- 5 × 4
- Computed
- Completeness
- No missing values
- Source
- US exchange, SIP and OPRA market data
- Licence
- Strasmore terms · free, no signup
What each column holds
| Column | Type | Range | Notes |
|---|---|---|---|
ticker |
text | 5 distinct values (AAPL, KO, MSFT…) | |
sessions |
number | every row is 32 | |
volume_millions |
number | 314.7 to 4,003 | count |
move_pct |
number | 6.1 to 28 | 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
ticker,
uniqExact(toDate(toTimeZone(window_start, 'America/New_York'))) AS sessions,
round(sum(volume) / 1e6, 1) AS volume_millions,
round(100 * ((toFloat64(argMax(close, window_start))
/ toFloat64(argMin(open, window_start))) - 1), 1) AS move_pct
FROM global_markets.delayed_stocks_minute_aggs
WHERE ticker IN ('NVDA', 'AAPL', 'MSFT', 'SPY', 'KO')
AND window_start >= '2026-04-01'
AND window_start < '2026-05-16'
AND (toHour(toTimeZone(window_start, 'America/New_York')) * 60
+ toMinute(toTimeZone(window_start, 'America/New_York'))) >= 570
AND (toHour(toTimeZone(window_start, 'America/New_York')) * 60
+ toMinute(toTimeZone(window_start, 'America/New_York'))) < 960
GROUP BY ticker
ORDER BY volume_millions DESC