sgt_holidays
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 us-stock-market-hours-singapore-time.
| holiday_date | holiday_date_label | holiday | day_status | sgt_close_local | days_away |
|---|---|---|---|---|---|
| 2026-11-26 | Nov 26, 2026 | Thanksgiving | closed | 62 | |
| 2026-11-27 | Nov 27, 2026 | Thanksgiving | early-close | Sat 02:00 | 63 |
| 2026-12-24 | Dec 24, 2026 | Christmas | early-close | Fri 02:00 | 90 |
| 2026-12-25 | Dec 25, 2026 | Christmas | closed | 91 | |
| 2027-01-01 | Jan 1, 2027 | New Years Day | closed | 98 | |
| 2027-01-18 | Jan 18, 2027 | Martin Luther King, Jr. Day | closed | 115 | |
| 2027-02-15 | Feb 15, 2027 | Washington's Birthday | closed | 143 | |
| 2027-03-26 | Mar 26, 2027 | Good Friday | closed | 182 | |
| 2027-05-31 | May 31, 2027 | Memorial Day | closed | 248 | |
| 2027-06-18 | Jun 18, 2027 | Juneteenth | closed | 266 | |
| 2027-07-05 | Jul 5, 2027 | Independence Day | closed | 283 | |
| 2027-09-06 | Sep 6, 2027 | Labor Day | closed | 346 |
- Rows × columns
- 12 × 6
- 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 |
|---|---|---|---|
holiday_date |
date | 2026-11-26 to 2027-09-06 | |
holiday_date_label |
text | 12 distinct values (Dec 24, 2026, Dec 25, 2026, Feb 15, 2027…) | |
holiday |
text | 10 distinct values (Christmas, Good Friday, Independence Day…) | |
day_status |
text | 2 distinct values (closed, early-close) | |
sgt_close_local |
text | 2 distinct values (Fri 02:00, Sat 02:00) | 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 holiday_date,
formatDateTime(date, '%b %e, %Y') AS holiday_date_label,
any(name) AS holiday,
any(status) AS day_status,
any(if(status = 'early-close',
formatDateTime(toTimeZone(close, 'Asia/Singapore'), '%a %H:%i'),
'')) AS sgt_close_local,
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.