STRASMORE/EXPLORE 2,500 QUERIES

festivos_eua

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 bmv-hours-vs-us-market-hours.

as of table 12×6read in context →
festivos_eua — 12 rows by 6 columns, computed from US exchange, SIP and OPRA data.
fechadiafestivotipocierre_hora_centrodias_faltan
2026-11-26juevesThanksgivingclosed64
2026-11-27viernesThanksgivingearly-close12:0065
2026-12-24juevesChristmasearly-close12:0092
2026-12-25viernesChristmasclosed93
2027-01-01viernesNew Years Dayclosed100
2027-01-18lunesMartin Luther King, Jr. Dayclosed117
2027-02-15lunesWashington's Birthdayclosed145
2027-03-26viernesGood Fridayclosed184
2027-05-31lunesMemorial Dayclosed250
2027-06-18viernesJuneteenthclosed268
2027-07-05lunesIndependence Dayclosed285
2027-09-06lunesLabor Dayclosed348
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 festivos_eua, derived from the stored result.
ColumnTypeRangeNotes
fecha date 2026-11-26 to 2027-09-06
dia text 3 distinct values (jueves, lunes, viernes)
festivo text 10 distinct values (Christmas, Good Friday, Independence Day…)
tipo text 2 distinct values (closed, early-close)
cierre_hora_centro text 1 distinct value (12:00) 2 of 12 rows populated
dias_faltan 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 fecha,
    arrayElement(['lunes', 'martes', 'miércoles', 'jueves', 'viernes', 'sábado', 'domingo'],
                 toDayOfWeek(date))               AS dia,
    any(name)                                     AS festivo,
    any(status)                                   AS tipo,
    any(if(status = 'early-close',
           formatDateTime(toTimeZone(close, 'America/Mexico_City'), '%H:%i'),
           ''))                                   AS cierre_hora_centro,
    dateDiff('day', today(), date)                AS dias_faltan
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.