israel_clock_windows
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-26, from forex-trading-hours-in-israel.
| israel_open_label | israel_close_label | observed_count |
|---|---|---|
| 16:30 | 23:00 | 229 |
| 15:30 | 22:00 | 19 |
| 16:30 | 20:01 | 2 |
- Rows × columns
- 3 × 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 |
|---|---|---|---|
israel_open_label |
text | 2 distinct values (15:30, 16:30) | |
israel_close_label |
text | 3 distinct values (20:01, 22:00, 23:00) | |
observed_count |
number | 2 to 229 | count |
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
israel_open_label,
israel_close_label,
count() AS observed_count
FROM
(
SELECT
toDate(toTimeZone(window_start, 'America/New_York')) AS d,
formatDateTime(toTimeZone(min(window_start), 'Asia/Jerusalem'), '%H:%i') AS israel_open_label,
formatDateTime(toTimeZone(max(window_start) + toIntervalMinute(1), 'Asia/Jerusalem'), '%H:%i') AS israel_close_label
FROM global_markets.delayed_stocks_minute_aggs
WHERE ticker = 'SPY'
AND window_start >= today() - 371
AND window_start < today() - 6
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
)
GROUP BY israel_open_label, israel_close_label
ORDER BY observed_count DESC
Work with this data in your AI assistant
Opens ready to query, with this page's data. Free, no account.