Upcoming sessions where the standard 4 p.m. cutoff does not apply
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-20, from Can You Cancel a Mutual Fund Order? 4 pm Cutoff.
| holiday_date | weekday | holiday | day_status | cutoff_et | days_away |
|---|---|---|---|---|---|
| 2026-11-26 | Thu | Thanksgiving | closed | no NAV struck | 67 |
| 2026-11-27 | Fri | Thanksgiving | early-close | 01:00 PM | 68 |
| 2026-12-24 | Thu | Christmas | early-close | 01:00 PM | 95 |
| 2026-12-25 | Fri | Christmas | closed | no NAV struck | 96 |
| 2027-01-01 | Fri | New Years Day | closed | no NAV struck | 103 |
| 2027-01-18 | Mon | Martin Luther King, Jr. Day | closed | no NAV struck | 120 |
| 2027-02-15 | Mon | Washington's Birthday | closed | no NAV struck | 148 |
| 2027-03-26 | Fri | Good Friday | closed | no NAV struck | 187 |
| 2027-05-31 | Mon | Memorial Day | closed | no NAV struck | 253 |
| 2027-06-18 | Fri | Juneteenth | closed | no NAV struck | 271 |
| 2027-07-05 | Mon | Independence Day | closed | no NAV struck | 288 |
| 2027-09-06 | Mon | Labor Day | closed | no NAV struck | 351 |
- Rows × columns
- 12 × 6
- Period covered
- to
- 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 |
|---|---|---|---|
holiday_date |
date | 2026-11-26 to 2027-09-06 | |
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) | |
cutoff_et |
text | 2 distinct values (01:00 PM, no NAV struck) | |
days_away |
number | 67 to 351 |
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 holiday_date,
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'), '%I:%i %p'),
'no NAV struck')) AS cutoff_et,
dateDiff('day', today(), date) AS days_away
FROM global_markets.stocks_market_holidays
WHERE date >= today()
GROUP BY date
ORDER BY date