off_hours_share
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-18, from what-are-tokenized-stocks.
| ticker | off_hours_volume_pct | total_volume_millions |
|---|---|---|
| SPY | 14.59 | 684.5 |
| NVDA | 9.1 | 2145.2 |
| MSFT | 6.44 | 289.7 |
| AAPL | 4.81 | 655.1 |
| KO | 2.41 | 195.2 |
- Rows × columns
- 5 × 3
- 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…) | |
off_hours_volume_pct |
number | 2.41 to 14.59 | percent |
total_volume_millions |
number | 195.2 to 2,145.2 | 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.
the exact SQL behind every number
SELECT
ticker,
round(100 * toFloat64(sumIf(volume, minute_of_day < 570 OR minute_of_day > 960))
/ toFloat64(sum(volume)), 2) AS off_hours_volume_pct,
round(toFloat64(sum(volume)) / 1e6, 1) AS total_volume_millions
FROM
(
SELECT
ticker,
volume,
toHour(toTimeZone(window_start, 'America/New_York')) * 60
+ toMinute(toTimeZone(window_start, 'America/New_York')) AS minute_of_day
FROM global_markets.delayed_stocks_minute_aggs
WHERE ticker IN ('AAPL', 'MSFT', 'NVDA', 'SPY', 'KO')
AND window_start >= toDateTime('2026-08-17 08:00:00', 'UTC')
AND window_start < toDateTime('2026-09-12 00:00:00', 'UTC')
)
GROUP BY ticker
ORDER BY off_hours_volume_pct DESC
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 analysiswhat-are-tokenized-stocks
volume_by_segment
ranking 5×3
→
aapl_dividends
series 11×7
→
Top 25 weekly-options underlyings by distinct contracts traded, with expiration weekdays
ranking 25×4
→
Annualized volatility vs total return, 25 large caps, calmest to wildest (~2 years)
ranking 25×3
→
SPY options median spread by expiration date, near-the-money strikes only
ranking 25×4
→
Share of prints with a placeholder participant timestamp, one March session per year (IBM and MSFT)
ranking 24×4
→
See all 2,358 queries →