Xetra non-trading days 2026, from the Deutsche Börse trading calendar
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-16, from Xetra Trading Hours and Holidays 2026–2027.
| holiday_date | weekday | holiday | xetra_status | settlement |
|---|---|---|---|---|
| 2026-01-01 | Thu | New Year's Day | closed | closed |
| 2026-04-03 | Fri | Good Friday | closed | closed |
| 2026-04-06 | Mon | Easter Monday | closed | closed |
| 2026-05-01 | Fri | Labour Day | closed | closed |
| 2026-12-24 | Thu | Christmas Eve | closed | runs |
| 2026-12-25 | Fri | Christmas Day | closed | closed |
| 2026-12-26 | Sat | Boxing Day | weekend | closed |
| 2026-12-31 | Thu | New Year's Eve | closed | runs |
- Rows × columns
- 8 × 5
- Period covered
- to
- Computed
- Completeness
- No missing values
- Source
- US exchange, SIP and OPRA market data
- Licence
- Strasmore terms · free, no signup
What each column holds
| Column | Type | Range | Notes |
|---|---|---|---|
holiday_date |
date | 2026-01-01 to 2026-12-31 | |
weekday |
text | 4 distinct values (Fri, Mon, Sat…) | |
holiday |
text | 8 distinct values (Boxing Day, Christmas Day, Christmas Eve…) | |
xetra_status |
text | 2 distinct values (closed, weekend) | |
settlement |
text | 2 distinct values (closed, runs) |
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.
the exact SQL behind every number
SELECT
toString(d) AS holiday_date,
formatDateTime(d, '%a') AS weekday,
n AS holiday,
if(toDayOfWeek(d) <= 5, 'closed', 'weekend') AS xetra_status,
if(n IN ('Christmas Eve', 'New Year''s Eve'), 'runs', 'closed') AS settlement
FROM
(
SELECT
arrayMap(x -> toDate(x),
['2026-01-01', '2026-04-03', '2026-04-06', '2026-05-01',
'2026-12-24', '2026-12-25', '2026-12-26', '2026-12-31']) AS dates,
['New Year''s Day', 'Good Friday', 'Easter Monday', 'Labour Day',
'Christmas Eve', 'Christmas Day', 'Boxing Day', 'New Year''s Eve'] AS names
)
ARRAY JOIN dates AS d, names AS n
ORDER BY d
Run your own version of this
The same 22 years of US equities and 12 years of options data are queryable in SQL or plain English. A free account runs 100 queries a day and takes no card.
More from this analysisXetra Trading Hours and Holidays 2026–2027
Xetra non-trading days 2027, from the Deutsche Börse trading calendar
table 8×5
→
Weekdays, weekday closures and Xetra sessions per calendar year
table 2×5
→
Days when the New York open lands at 14:30 Frankfurt time (three-hour overlap), 2026 and 2027
series 4×5
→
SPY option volume, minute by minute into the 9:30 open
series 46×3
→
Where SPY volume lands inside the day, 30 minute buckets, October 2024
series 32×3
→
US option contract volume by Eastern-time half hour
series 21×3
→
See all 2,272 queries →