NVDA's off-exchange share of volume by Eastern-time hour, July 2, 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-07-26, from What Is Dark Pool Trading? FINRA Volume Data.
| et_hour | off_exchange_shares_m | on_exchange_shares_m | off_exchange_pct |
|---|---|---|---|
| 04:00 | 0.39 | 0.19 | 68 |
| 05:00 | 0.02 | 0.09 | 18.3 |
| 06:00 | 0.02 | 0.12 | 14.1 |
| 07:00 | 0.18 | 0.32 | 36.8 |
| 08:00 | 0.33 | 0.53 | 38.3 |
| 09:00 | 7.31 | 6.23 | 54 |
| 10:00 | 10.14 | 10.26 | 49.7 |
| 11:00 | 8.23 | 9.16 | 47.3 |
| 12:00 | 6.24 | 7.77 | 44.5 |
| 13:00 | 5.39 | 6.22 | 46.4 |
| 14:00 | 5.02 | 5.84 | 46.2 |
| 15:00 | 8.26 | 12.86 | 39.1 |
| 16:00 | 11.67 | 17.76 | 39.7 |
| 17:00 | 1.88 | 0.09 | 95.5 |
| 18:00 | 0.11 | 0.1 | 52.9 |
| 19:00 | 0.12 | 0.07 | 62.4 |
- Rows × columns
- 16 × 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 |
|---|---|---|---|
et_hour |
text | 16 distinct values (04:00, 05:00, 06:00…) | |
off_exchange_shares_m |
number | 0.02 to 11.67 | count |
on_exchange_shares_m |
number | 0.07 to 17.76 | count |
off_exchange_pct |
number | 14.1 to 95.5 | 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
SELECT
formatDateTime(toStartOfHour(toTimeZone(sip_timestamp, 'America/New_York')), '%H:00') AS et_hour,
round(toFloat64(sumIf(size, exchange = 4)) / 1e6, 2) AS off_exchange_shares_m,
round(toFloat64(sumIf(size, exchange != 4)) / 1e6, 2) AS on_exchange_shares_m,
round(100 * toFloat64(sumIf(size, exchange = 4)) / toFloat64(sum(size)), 1) AS off_exchange_pct
FROM global_markets.stocks_trades
WHERE ticker = 'NVDA'
AND sip_timestamp >= '2026-07-02 00:00:00' AND sip_timestamp < '2026-07-03 00:00:00'
AND NOT hasAny(conditions, [15, 16, 38])
GROUP BY et_hour
ORDER BY et_hour
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 Is Dark Pool Trading? FINRA Volume Data
Where AAPL's trade reports came from on July 2, 2026: and which carry a TRF timestamp
ranking 6×4
→
Off-exchange share of matched volume: five liquid names, July 2, 2026
ranking 5×4
→
Anatomy of TSLA's prints on July 2, 2026: off-exchange vs. on-exchange
table 2×7
→
The receipt: TRF timestamps and the FINRA venue code agree on every AAPL report
scalar 1×5
→
Full-day RVOL percentiles across high-volume US stocks and ETFs (20-day ADV above 5M shares), latest completed session
ranking 6×2
→
SPY: average share of full-day volume completed by each clock time (last 20 sessions)
ranking 5×2
→
See all 2,170 queries →