STRASMORE/EXPLORE 2,549 QUERIES

holiday_ict

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-24, from us-stock-market-hours-thai-time.

as of series 12×6read in context →
holiday_ict — 12 rows by 6 columns, computed from US exchange, SIP and OPRA data.
holiday_datethai_dateholidayday_statusict_closedays_away
2026-11-2626 พ.ย. 2026Thanksgivingclosed63
2026-11-2727 พ.ย. 2026Thanksgivingearly-close01:0064
2026-12-2424 ธ.ค. 2026Christmasearly-close01:0091
2026-12-2525 ธ.ค. 2026Christmasclosed92
2027-01-011 ม.ค. 2027New Years Dayclosed99
2027-01-1818 ม.ค. 2027Martin Luther King, Jr. Dayclosed116
2027-02-1515 ก.พ. 2027Washington's Birthdayclosed144
2027-03-2626 มี.ค. 2027Good Fridayclosed183
2027-05-3131 พ.ค. 2027Memorial Dayclosed249
2027-06-1818 มิ.ย. 2027Juneteenthclosed267
2027-07-055 ก.ค. 2027Independence Dayclosed284
2027-09-066 ก.ย. 2027Labor Dayclosed347
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 holiday_ict, derived from the stored result.
ColumnTypeRangeNotes
holiday_date date 2026-11-26 to 2027-09-06
thai_date text 12 distinct values (1 ม.ค. 2027, 15 ก.พ. 2027, 18 ม.ค. 2027…)
holiday text 10 distinct values (Christmas, Good Friday, Independence Day…)
day_status text 2 distinct values (closed, early-close)
ict_close text 1 distinct value (01:00) 2 of 12 rows populated
days_away number 63 to 347

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(toString(toDayOfMonth(date)), ' ',
           arrayElement(['ม.ค.', 'ก.พ.', 'มี.ค.', 'เม.ย.', 'พ.ค.', 'มิ.ย.',
                         'ก.ค.', 'ส.ค.', 'ก.ย.', 'ต.ค.', 'พ.ย.', 'ธ.ค.'],
                        toMonth(date)), ' ', toString(toYear(date))) AS thai_date,
    any(name)                                                      AS holiday,
    any(status)                                                    AS day_status,
    any(if(status = 'early-close',
           formatDateTime(toTimeZone(close, 'Asia/Bangkok'), '%H:%i'),
           ''))                                                    AS ict_close,
    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.