STRASMORE/EXPLORE 2,648 QUERIES

us_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-26, from forex-trading-hours-in-israel.

as of series 12×6read in context →
us_holidays — 12 rows by 6 columns, computed from US exchange, SIP and OPRA data.
holiday_datecalendar_textholidayday_statusisrael_close_textdays_away
2026-11-2626/11/2026Thanksgivingclosed61
2026-11-2727/11/2026Thanksgivingearly-close20:0062
2026-12-2424/12/2026Christmasearly-close20:0089
2026-12-2525/12/2026Christmasclosed90
2027-01-0101/01/2027New Years Dayclosed97
2027-01-1818/01/2027Martin Luther King, Jr. Dayclosed114
2027-02-1515/02/2027Washington's Birthdayclosed142
2027-03-2626/03/2027Good Fridayclosed181
2027-05-3131/05/2027Memorial Dayclosed247
2027-06-1818/06/2027Juneteenthclosed265
2027-07-0505/07/2027Independence Dayclosed282
2027-09-0606/09/2027Labor Dayclosed345
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
Formats
JSON · CSV · the SQL below

What each column holds

Column definitions for us_holidays, derived from the stored result.
ColumnTypeRangeNotes
holiday_date date 2026-11-26 to 2027-09-06
calendar_text text 12 distinct values (01/01/2027, 05/07/2027, 06/09/2027…)
holiday text 10 distinct values (Christmas, Good Friday, Independence Day…)
day_status text 2 distinct values (closed, early-close)
israel_close_text text 1 distinct value (20:00) 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 holiday_date,
    formatDateTime(date, '%d/%m/%Y') AS calendar_text,
    any(name)                       AS holiday,
    any(status)                     AS day_status,
    any(if(status = 'early-close',
           formatDateTime(toTimeZone(close, 'Asia/Jerusalem'), '%H:%i'),
           ''))                     AS israel_close_text,
    dateDiff('day', today(), date)  AS days_away
FROM global_markets.stocks_market_holidays
WHERE date >= today()
GROUP BY date
ORDER BY date
⌘/Ctrl + Enter

Work with this data in your AI assistant

Opens ready to query, with this page's data. Free, no account.