STRASMORE/EXPLORE 2,500 QUERIES

buong_session_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 ranking 16×4read in context →
buong_session_pht — 16 rows by 4 columns, computed from US exchange, SIP and OPRA data.
oras_etpht_dstpht_standardbahagi_ng_volume_pct
04:0016:0017:000.234
05:0017:0018:000.082
06:0018:0019:000.124
07:0019:0020:000.467
08:0020:0021:000.952
09:0021:0022:0010.404
10:0022:0023:0013.199
11:0023:0000:0010.961
12:0000:0001:008.456
13:0001:0002:007.491
14:0002:0003:0010.015
15:0003:0004:0024.874
16:0004:0005:0011.756
17:0005:0006:000.671
18:0006:0007:000.211
19:0007:0008:000.103
Rows × columns
16 × 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 buong_session_pht, derived from the stored result.
ColumnTypeRangeNotes
oras_et text 16 distinct values (04:00, 05:00, 06:00…)
pht_dst text 16 distinct values (00:00, 01:00, 02:00…)
pht_standard text 16 distinct values (00:00, 01:00, 02:00…)
bahagi_ng_volume_pct number 0.082 to 24.874 percent

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(toDateTime(et_hour * 3600, 'UTC'), '%H:%i')          AS oras_et,
    formatDateTime(toDateTime((et_hour + 12) * 3600, 'UTC'), '%H:%i')   AS pht_dst,
    formatDateTime(toDateTime((et_hour + 13) * 3600, 'UTC'), '%H:%i')   AS pht_standard,
    round(100 * sum(toFloat64(volume)) / sum(sum(toFloat64(volume))) OVER (), 3) AS bahagi_ng_volume_pct
FROM
(
    SELECT
        toHour(toTimeZone(window_start, 'America/New_York')) AS et_hour,
        volume
    FROM global_markets.delayed_stocks_minute_aggs
    WHERE ticker = 'SPY'
      AND window_start >= today() - 75
      AND window_start <  today() - 2
)
GROUP BY et_hour
ORDER BY et_hour
⌘/Ctrl + Enter

Work with this data in your AI assistant

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