half_sessions
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 do-mutual-funds-trade-on-holidays.
| half_day_label | last_bar_et | regular_session_bars |
|---|---|---|
| Jul 3, 2024 | 01:00 PM | 211 |
| Nov 29, 2024 | 01:00 PM | 211 |
| Dec 24, 2024 | 01:00 PM | 211 |
| Jul 3, 2025 | 01:00 PM | 211 |
| Nov 28, 2025 | 01:00 PM | 211 |
| Dec 24, 2025 | 01:00 PM | 211 |
- Rows × columns
- 6 × 3
- 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 |
|---|---|---|---|
half_day_label |
text | 6 distinct values (Dec 24, 2024, Dec 24, 2025, Jul 3, 2024…) | |
last_bar_et |
text | 1 distinct value (01:00 PM) | |
regular_session_bars |
number | every row is 211 |
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
concat(formatDateTime(d, '%b '), toString(toDayOfMonth(d)), ', ', toString(toYear(d))) AS half_day_label,
formatDateTime(toTimeZone(last_bar, 'America/New_York'), '%I:%i %p') AS last_bar_et,
bars AS regular_session_bars
FROM
(
SELECT
toDate(toTimeZone(window_start, 'America/New_York')) AS d,
max(window_start) AS last_bar,
count() AS bars
FROM global_markets.delayed_stocks_minute_aggs
WHERE ticker = 'SPY'
AND window_start >= '2024-01-01 00:00:00'
AND window_start < '2026-09-01 00:00:00'
AND (toHour(toTimeZone(window_start, 'America/New_York')) * 60
+ toMinute(toTimeZone(window_start, 'America/New_York'))) >= 570
AND (toHour(toTimeZone(window_start, 'America/New_York')) * 60
+ toMinute(toTimeZone(window_start, 'America/New_York'))) < 960
GROUP BY d
HAVING bars BETWEEN 1 AND 300
)
ORDER BY d
Work with this data in your AI assistant
Opens ready to query, with this page's data. Free, no account.