upcoming
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-25, from mutual-fund-order-cutoff-times-by-broker.
| closure_date | weekday | date_label | closure_name | day_status | early_close_et | days_away |
|---|---|---|---|---|---|---|
| 2026-11-26 | Thu | November 26 | Thanksgiving | closed | 62 | |
| 2026-11-27 | Fri | November 27 | Thanksgiving | early-close | 01:00 PM | 63 |
| 2026-12-24 | Thu | December 24 | Christmas | early-close | 01:00 PM | 90 |
| 2026-12-25 | Fri | December 25 | Christmas | closed | 91 | |
| 2027-01-01 | Fri | January 1 | New Years Day | closed | 98 | |
| 2027-01-18 | Mon | January 18 | Martin Luther King, Jr. Day | closed | 115 | |
| 2027-02-15 | Mon | February 15 | Washington's Birthday | closed | 143 | |
| 2027-03-26 | Fri | March 26 | Good Friday | closed | 182 | |
| 2027-05-31 | Mon | May 31 | Memorial Day | closed | 248 | |
| 2027-06-18 | Fri | June 18 | Juneteenth | closed | 266 | |
| 2027-07-05 | Mon | July 5 | Independence Day | closed | 283 | |
| 2027-09-06 | Mon | September 6 | Labor Day | closed | 346 |
- Rows × columns
- 12 × 7
- 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 | |
weekday |
text | 3 distinct values (Fri, Mon, Thu) | |
date_label |
text | 12 distinct values (December 24, December 25, February 15…) | |
closure_name |
text | 10 distinct values (Christmas, Good Friday, Independence Day…) | |
day_status |
text | 2 distinct values (closed, early-close) | |
early_close_et |
text | 1 distinct value (01:00 PM) | 2 of 12 rows populated |
days_away |
number | 62 to 346 |
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,
formatDateTime(date, '%a') AS weekday,
concat(monthName(date), ' ', toString(toDayOfMonth(date))) AS date_label,
any(name) AS closure_name,
any(status) AS day_status,
any(if(status = 'early-close',
formatDateTime(toTimeZone(close, 'America/New_York'), '%I:%i %p'),
'')) AS early_close_et,
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.