STRASMORE/EXPLORE 2,500 QUERIES

closures_bj

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

as of series 12×7read in context →
closures_bj — 12 rows by 7 columns, computed from US exchange, SIP and OPRA data.
holiday_datedate_labelweekday_cnholidayday_statusbeijing_closedays_away
2026-11-2611月26日周四Thanksgivingclosed64
2026-11-2711月27日周五Thanksgivingearly-close次日 02:0065
2026-12-2412月24日周四Christmasearly-close次日 02:0092
2026-12-2512月25日周五Christmasclosed93
2027-01-011月1日周五New Years Dayclosed100
2027-01-181月18日周一Martin Luther King, Jr. Dayclosed117
2027-02-152月15日周一Washington's Birthdayclosed145
2027-03-263月26日周五Good Fridayclosed184
2027-05-315月31日周一Memorial Dayclosed250
2027-06-186月18日周五Juneteenthclosed268
2027-07-057月5日周一Independence Dayclosed285
2027-09-069月6日周一Labor Dayclosed348
Rows × columns
12 × 7
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 closures_bj, derived from the stored result.
ColumnTypeRangeNotes
holiday_date date 2026-11-26 to 2027-09-06
date_label text 12 distinct values (11月26日, 11月27日, 12月24日…)
weekday_cn text 3 distinct values (周一, 周五, 周四)
holiday text 10 distinct values (Christmas, Good Friday, Independence Day…)
day_status text 2 distinct values (closed, early-close)
beijing_close text 1 distinct value (次日 02:00) 2 of 12 rows populated
days_away number 64 to 348

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(toMonth(date)), '月', toString(toDayOfMonth(date)), '日')          AS date_label,
    arrayElement(['周一', '周二', '周三', '周四', '周五', '周六', '周日'], toDayOfWeek(date)) AS weekday_cn,
    any(name)                                                                         AS holiday,
    any(status)                                                                       AS day_status,
    any(if(status = 'early-close',
           concat('次日 ', formatDateTime(toTimeZone(close, 'Asia/Shanghai'), '%H:%i')),
           ''))                                                                       AS beijing_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

在你的 AI 助手中使用这些数据

打开即可查询,已带上本页数据。免费,无需账号。