STRASMORE/EXPLORE 2,500 QUERIES

orasan_ng_pht

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 us-stock-market-hours-philippine-time.

as of series 14×4read in context →
orasan_ng_pht — 14 rows by 4 columns, computed from US exchange, SIP and OPRA data.
monthopen_phtlead_oras_phtsessions
2025-0821:301221
2025-0921:301221
2025-1021:301223
2025-1122:301319
2025-1222:301322
2026-0122:301320
2026-0222:301319
2026-0322:3012.2322
2026-0421:301221
2026-0521:301220
2026-0621:301221
2026-0721:301222
2026-0821:301221
2026-0921:301213
Rows × columns
14 × 4
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 orasan_ng_pht, derived from the stored result.
ColumnTypeRangeNotes
month text 14 distinct values (2025-08, 2025-09, 2025-10…)
open_pht text 2 distinct values (21:30, 22:30)
lead_oras_pht number 12 to 13
sessions number 13 to 23

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
    formatDateTime(toStartOfMonth(session_date), '%Y-%m')  AS month,
    max(open_pht)                                          AS open_pht,
    round(avg(lead_minutes) / 60, 2)                       AS lead_oras_pht,
    countDistinct(session_date)                            AS sessions
FROM
(
    SELECT
        toDate(toTimeZone(window_start, 'America/New_York'))               AS session_date,
        formatDateTime(toTimeZone(window_start, 'Asia/Manila'), '%H:%i')   AS open_pht,
        (toHour(toTimeZone(window_start, 'Asia/Manila')) * 60
            + toMinute(toTimeZone(window_start, 'Asia/Manila')))
        - (toHour(toTimeZone(window_start, 'America/New_York')) * 60
            + toMinute(toTimeZone(window_start, 'America/New_York')))      AS lead_minutes
    FROM global_markets.delayed_stocks_minute_aggs
    WHERE ticker = 'SPY'
      AND window_start >= toStartOfMonth(today() - 400)
      AND window_start <  today() - 2
      AND toHour(toTimeZone(window_start, 'America/New_York')) = 9
      AND toMinute(toTimeZone(window_start, 'America/New_York')) = 30
)
GROUP BY month
ORDER BY month
⌘/Ctrl + Enter

Work with this data in your AI assistant

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