STRASMORE/EXPLORE 2,648 QUERIES

dst_trace

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.

as of series 21×5read in context →
dst_trace — 21 rows by 5 columns, computed from US exchange, SIP and OPRA data.
session_datecalendar_textisrael_open_labelisrael_open_hourisrael_close_hour
2025-10-1717/10/202516:3016.523
2025-10-2020/10/202516:3016.523
2025-10-2121/10/202516:3016.523
2025-10-2222/10/202516:3016.523
2025-10-2323/10/202516:3016.523
2025-10-2424/10/202516:3016.523
2025-10-2727/10/202515:3015.522
2025-10-2828/10/202515:3015.522
2025-10-2929/10/202515:3015.522
2025-10-3030/10/202515:3015.522
2025-10-3131/10/202515:3015.522
2025-11-0303/11/202516:3016.523
2025-11-0404/11/202516:3016.523
2025-11-0505/11/202516:3016.523
2025-11-0606/11/202516:3016.523
2025-11-0707/11/202516:3016.523
2025-11-1010/11/202516:3016.523
2025-11-1111/11/202516:3016.523
2025-11-1212/11/202516:3016.523
2025-11-1313/11/202516:3016.523
2025-11-1414/11/202516:3016.523
Rows × columns
21 × 5
Period covered
to
Computed
Completeness
No missing values
Source
US exchange, SIP and OPRA market data
Licence
Strasmore terms · free, no signup
Formats
JSON · CSV · the SQL below

What each column holds

Column definitions for dst_trace, derived from the stored result.
ColumnTypeRangeNotes
session_date date 2025-10-17 to 2025-11-14
calendar_text text 21 distinct values (03/11/2025, 04/11/2025, 05/11/2025…)
israel_open_label text 2 distinct values (15:30, 16:30)
israel_open_hour number 15.5 to 16.5 US dollars
israel_close_hour number 22 to 23 US dollars

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(d)                        AS session_date,
    formatDateTime(d, '%d/%m/%Y')      AS calendar_text,
    israel_open_label,
    israel_open_hour,
    israel_close_hour
FROM
(
    SELECT
        toDate(toTimeZone(window_start, 'America/New_York')) AS d,
        formatDateTime(toTimeZone(min(window_start), 'Asia/Jerusalem'), '%H:%i') AS israel_open_label,
        round(toHour(toTimeZone(min(window_start), 'Asia/Jerusalem'))
              + toMinute(toTimeZone(min(window_start), 'Asia/Jerusalem')) / 60, 2) AS israel_open_hour,
        round(toHour(toTimeZone(max(window_start) + toIntervalMinute(1), 'Asia/Jerusalem'))
              + toMinute(toTimeZone(max(window_start) + toIntervalMinute(1), 'Asia/Jerusalem')) / 60, 2) AS israel_close_hour
    FROM global_markets.delayed_stocks_minute_aggs
    WHERE ticker = 'SPY'
      AND window_start >= toDateTime('2025-10-17 00:00:00')
      AND window_start <  toDateTime('2025-11-15 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
)
ORDER BY d
⌘/Ctrl + Enter

Work with this data in your AI assistant

Opens ready to query, with this page's data. Free, no account.