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.
| fecha | dia | festivo | tipo | cierre_hora_centro | dias_faltan |
|---|---|---|---|---|---|
| 2026-11-26 | jueves | Thanksgiving | closed | 64 | |
| 2026-11-27 | viernes | Thanksgiving | early-close | 12:00 | 65 |
| 2026-12-24 | jueves | Christmas | early-close | 12:00 | 92 |
| 2026-12-25 | viernes | Christmas | closed | 93 | |
| 2027-01-01 | viernes | New Years Day | closed | 100 | |
| 2027-01-18 | lunes | Martin Luther King, Jr. Day | closed | 117 | |
| 2027-02-15 | lunes | Washington's Birthday | closed | 145 | |
| 2027-03-26 | viernes | Good Friday | closed | 184 | |
| 2027-05-31 | lunes | Memorial Day | closed | 250 | |
| 2027-06-18 | viernes | Juneteenth | closed | 268 | |
| 2027-07-05 | lunes | Independence Day | closed | 285 | |
| 2027-09-06 | lunes | Labor Day | closed | 348 |
- 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
What each column holds
| Column | Type | Range | Notes |
|---|---|---|---|
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
Trabaja con estos datos en tu asistente de IA
Se abre listo para consultar, con los datos de esta página. Gratis, sin cuenta.