us_closures
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-26, from us-stock-market-hours-german-time.
| closure_date | closure_label | weekday | holiday | day_status | et_close | german_close | days_away |
|---|---|---|---|---|---|---|---|
| 2026-11-26 | 26 November | Thu | Thanksgiving | closed | 61 | ||
| 2026-11-27 | 27 November | Fri | Thanksgiving | early-close | 13:November | 19:November | 62 |
| 2026-12-24 | 24 December | Thu | Christmas | early-close | 13:December | 19:December | 89 |
| 2026-12-25 | 25 December | Fri | Christmas | closed | 90 | ||
| 2027-01-01 | 1 January | Fri | New Years Day | closed | 97 | ||
| 2027-01-18 | 18 January | Mon | Martin Luther King, Jr. Day | closed | 114 | ||
| 2027-02-15 | 15 February | Mon | Washington's Birthday | closed | 142 | ||
| 2027-03-26 | 26 March | Fri | Good Friday | closed | 181 | ||
| 2027-05-31 | 31 May | Mon | Memorial Day | closed | 247 | ||
| 2027-06-18 | 18 June | Fri | Juneteenth | closed | 265 | ||
| 2027-07-05 | 5 July | Mon | Independence Day | closed | 282 | ||
| 2027-09-06 | 6 September | Mon | Labor Day | closed | 345 |
- Rows × columns
- 12 × 8
- Period covered
- to
- Computed
- Completeness
- Some fields are partly empty — see the columns below
- Source
- US exchange, SIP and OPRA market data
- Licence
- Strasmore terms · free, no signup
What each column holds
| Column | Type | Range | Notes |
|---|---|---|---|
closure_date |
date | 2026-11-26 to 2027-09-06 | |
closure_label |
text | 12 distinct values (1 January, 15 February, 18 January…) | |
weekday |
text | 3 distinct values (Fri, Mon, Thu) | |
holiday |
text | 10 distinct values (Christmas, Good Friday, Independence Day…) | |
day_status |
text | 2 distinct values (closed, early-close) | |
et_close |
text | 2 distinct values (13:December, 13:November) | 2 of 12 rows populated |
german_close |
text | 2 distinct values (19:December, 19:November) | 2 of 12 rows populated |
days_away |
number | 61 to 345 |
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
toString(date) AS closure_date,
concat(toString(toDayOfMonth(date)), ' ', monthName(date)) AS closure_label,
formatDateTime(date, '%a') AS weekday,
any(name) AS holiday,
any(status) AS day_status,
any(if(status = 'early-close',
formatDateTime(toTimeZone(close, 'America/New_York'), '%H:%M'),
'')) AS et_close,
any(if(status = 'early-close',
formatDateTime(toTimeZone(close, 'Europe/Berlin'), '%H:%M'),
'')) AS german_close,
dateDiff('day', today(), date) AS days_away
FROM global_markets.stocks_market_holidays
WHERE date >= today()
GROUP BY date
ORDER BY date
Work with this data in your AI assistant
Opens ready to query, with this page's data. Free, no account.