Same-day options volume by Japan Standard Time hour: all US-listed options, Friday 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-07-31, from Trading US 0DTE Options From Japan.
| jst_hour | et_hour | same_day_contracts_m | same_day_pct |
|---|---|---|---|
| 22:00 | 09:00 | 4.47 | 52.9 |
| 23:00 | 10:00 | 7.19 | 52.9 |
| 00:00 | 11:00 | 5.8 | 53.4 |
| 01:00 | 12:00 | 3.99 | 48.6 |
| 02:00 | 13:00 | 3.5 | 47.2 |
| 03:00 | 14:00 | 3.02 | 45.6 |
| 04:00 | 15:00 | 3.75 | 38.4 |
- Rows × columns
- 7 × 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 |
|---|---|---|---|
jst_hour |
text | 7 distinct values (00:00, 01:00, 02:00…) | |
et_hour |
text | 7 distinct values (09:00, 10:00, 11:00…) | |
same_day_contracts_m |
number | 3.02 to 7.19 | count |
same_day_pct |
number | 38.4 to 53.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
SELECT formatDateTime(toStartOfHour(toTimeZone(sip_timestamp, 'Asia/Tokyo')), '%H:%i') AS jst_hour,
formatDateTime(toStartOfHour(toTimeZone(sip_timestamp, 'America/New_York')), '%H:%i') AS et_hour,
round(sumIf(size, substring(ticker, length(ticker) - 14, 6) = '260710') / 1e6, 2) AS same_day_contracts_m,
round(100.0 * sumIf(size, substring(ticker, length(ticker) - 14, 6) = '260710') / sum(size), 1) AS same_day_pct
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)
GROUP BY jst_hour, 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 analysisTrading US 0DTE Options From Japan
Median bid-ask spread on SPY same-day contracts quoted $1-$10, by Japan Standard Time hour: July 10, 2026
ranking 7×4
→
The US trading day converted into Japan Standard Time: static illustrative reference, July 2026
series 6×5
→
Japanese local time of each US session boundary, January against July: static illustrative reference for 2026
series 4×4
→
Which tickers carry the most upcoming expirations: option roots by distinct expiration dates in the next six weeks
ranking 20×3
→
Opening prints on settlement morning, May 15, 2026: twelve large US constituents
ranking 12×3
→
Was the April expiration Friday a trading day?
ranking 11×4
→
See all 2,170 queries →