Weekdays in the trailing year when stocks traded but no Treasury yield printed
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-08-25, from Is the Stock Market Open Today?.
| session_date | weekday |
|---|---|
| 2025-10-13 | Monday |
| 2025-11-11 | Tuesday |
- Rows × columns
- 2 × 2
- 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 |
|---|---|---|---|
session_date |
date | 2025-10-13 to 2025-11-11 | |
weekday |
date | Monday to Tuesday |
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
WITH stock_days AS (
SELECT toDate(toTimeZone(window_start, 'America/New_York')) AS d
FROM global_markets.delayed_stocks_minute_aggs
WHERE ticker = 'SPY'
AND window_start >= today() - 370
AND (toHour(toTimeZone(window_start, 'America/New_York')) * 60 + toMinute(toTimeZone(window_start, 'America/New_York'))) BETWEEN 570 AND 959
GROUP BY d
HAVING count() >= 100
)
SELECT toString(d) AS session_date,
formatDateTime(d, '%W') AS weekday
FROM stock_days
WHERE d <= (SELECT max(date) FROM global_markets.treasury_yields)
AND d NOT IN (SELECT date FROM global_markets.treasury_yields WHERE date >= today() - 370)
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 analysisIs the Stock Market Open Today?
This calendar year's closures: already passed (counted from the tape) plus still ahead (from the calendar)
table 2×5
→
Every upcoming NYSE closure and early close on the calendar feed, with a countdown
series 12×6
→
SPY across recent weekends and holiday weekends: Friday's close vs. the reopening print
series 11×6
→
Unscheduled closures on the tape: zero regular-session bars on an ordinary weekday
series 5×4
→
Market status computed at this page's refresh: weekday check, holiday check, and the ET clock
scalar 1×7
→
The most recent session on the tape: bar count, same-day SPY options prints, and the last half-day observed
scalar 1×6
→
See all 2,170 queries →