The US trading day converted into ten local clocks: static illustrative reference, July 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 US Stock Market Hours Around the World.
| city | local_premarket_open | local_regular_open | local_regular_close | local_after_hours_close | hours_ahead_of_new_york |
|---|---|---|---|---|---|
| Los Angeles | 01:00 | 06:30 | 13:00 | 17:00 | -3 |
| New York | 04:00 | 09:30 | 16:00 | 20:00 | 0 |
| Sao Paulo | 05:00 | 10:30 | 17:00 | 21:00 | 1 |
| London | 09:00 | 14:30 | 21:00 | 01:00 | 5 |
| Frankfurt | 10:00 | 15:30 | 22:00 | 02:00 | 6 |
| Moscow | 15:00 | 20:30 | 03:00 | 07:00 | 7 |
| Dubai | 12:00 | 17:30 | 00:00 | 04:00 | 8 |
| Singapore | 16:00 | 21:30 | 04:00 | 08:00 | 12 |
| Tokyo | 17:00 | 22:30 | 05:00 | 09:00 | 13 |
| Sydney | 18:00 | 23:30 | 06:00 | 10:00 | 14 |
- Rows × columns
- 10 × 6
- 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 |
|---|---|---|---|
city |
text | 10 distinct values (Dubai, Frankfurt, London…) | |
local_premarket_open |
text | 10 distinct values (01:00, 04:00, 05:00…) | |
local_regular_open |
text | 10 distinct values (06:30, 09:30, 10:30…) | |
local_regular_close |
text | 10 distinct values (00:00, 03:00, 04:00…) | |
local_after_hours_close |
text | 10 distinct values (01:00, 02:00, 04:00…) | |
hours_ahead_of_new_york |
number | -3 to 14 |
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
w.1 AS city,
w.2 AS local_premarket_open,
w.3 AS local_regular_open,
w.4 AS local_regular_close,
w.5 AS local_after_hours_close,
w.6 AS hours_ahead_of_new_york
FROM
(
SELECT arrayJoin([
('Los Angeles', '01:00', '06:30', '13:00', '17:00', -3),
('New York', '04:00', '09:30', '16:00', '20:00', 0),
('Sao Paulo', '05:00', '10:30', '17:00', '21:00', 1),
('London', '09:00', '14:30', '21:00', '01:00', 5),
('Frankfurt', '10:00', '15:30', '22:00', '02:00', 6),
('Moscow', '15:00', '20:30', '03:00', '07:00', 7),
('Dubai', '12:00', '17:30', '00:00', '04:00', 8),
('Singapore', '16:00', '21:30', '04:00', '08:00', 12),
('Tokyo', '17:00', '22:30', '05:00', '09:00', 13),
('Sydney', '18:00', '23:30', '06:00', '10:00', 14)
]) AS w
)
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 analysisUS Stock Market Hours Around the World
Local time of the 9:30 a.m. New York open, January against July: static illustrative reference for 2026
ranking 6×4
→
SPY volume by half hour, premarket through after-hours (same session, ET clock)
table 32×2
→
The 9:30 New York open in eight cities: US summer clock against US winter clock, 2026
table 8×5
→
Share of a month's volume by clock window: SPY, AAPL, NVDA (full sessions only)
table 3×5
→
AAPL median shares per traded minute, and the share of minutes that traded at all (ET)
series 32×3
→
London and Frankfurt distance from New York, session by session, March to April 2026
series 29×6
→
See all 2,170 queries →