settle_calendar
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 agentic-trading-bots-on-retail-brokerages.
| holiday_date | holiday_label | weekday | holiday | day_status | days_away |
|---|---|---|---|---|---|
| 2026-11-26 | Nov 26 | Thu | Thanksgiving | closed | 61 |
| 2026-11-27 | Nov 27 | Fri | Thanksgiving | early-close | 62 |
| 2026-12-24 | Dec 24 | Thu | Christmas | early-close | 89 |
| 2026-12-25 | Dec 25 | Fri | Christmas | closed | 90 |
| 2027-01-01 | Jan 1 | Fri | New Years Day | closed | 97 |
| 2027-01-18 | Jan 18 | Mon | Martin Luther King, Jr. Day | closed | 114 |
| 2027-02-15 | Feb 15 | Mon | Washington's Birthday | closed | 142 |
| 2027-03-26 | Mar 26 | Fri | Good Friday | closed | 181 |
| 2027-05-31 | May 31 | Mon | Memorial Day | closed | 247 |
| 2027-06-18 | Jun 18 | Fri | Juneteenth | closed | 265 |
| 2027-07-05 | Jul 5 | Mon | Independence Day | closed | 282 |
| 2027-09-06 | Sep 6 | Mon | Labor Day | closed | 345 |
- 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 | |
holiday_label |
text | 12 distinct values (Dec 24, Dec 25, Feb 15…) | |
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) | |
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 holiday_date,
concat(formatDateTime(date, '%b'), ' ', toString(toDayOfMonth(date))) AS holiday_label,
formatDateTime(date, '%a') AS weekday,
any(name) AS holiday,
any(status) AS day_status,
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.