STRASMORE/EXPLORE 2,500 QUERIES

unang_at_huling_30

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 table 13×6read in context →
unang_at_huling_30 — 13 rows by 6 columns, computed from US exchange, SIP and OPRA data.
slot_etsimula_pht_dstsimula_pht_standardtapos_pht_dsttapos_pht_standardbahagi_ng_volume_pct
09:3021:3022:3022:0023:0011.6
10:0022:0023:0022:3023:308.42
10:3022:3023:3023:0000:007.13
11:0023:0000:0023:3000:307.33
11:3023:3000:3000:0001:005.59
12:0000:0001:0000:3001:305.39
12:3000:3001:3001:0002:004.57
13:0001:0002:0001:3002:304.81
13:3001:3002:3002:0003:004.02
14:0002:0003:0002:3003:305.33
14:3002:3003:3003:0004:006.47
15:0003:0004:0003:3004:307.48
15:3003:3004:3004:0005:0021.84
Rows × columns
13 × 6
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 unang_at_huling_30, derived from the stored result.
ColumnTypeRangeNotes
slot_et text 13 distinct values (09:30, 10:00, 10:30…)
simula_pht_dst text 13 distinct values (00:00, 00:30, 01:00…)
simula_pht_standard text 13 distinct values (00:00, 00:30, 01:00…)
tapos_pht_dst text 13 distinct values (00:00, 00:30, 01:00…)
tapos_pht_standard text 13 distinct values (00:00, 00:30, 01:00…)
bahagi_ng_volume_pct number 4.02 to 21.84 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(slot * 60, 'UTC'), '%H:%i')          AS slot_et,
    formatDateTime(toDateTime((slot + 720) * 60, 'UTC'), '%H:%i')  AS simula_pht_dst,
    formatDateTime(toDateTime((slot + 780) * 60, 'UTC'), '%H:%i')  AS simula_pht_standard,
    formatDateTime(toDateTime((slot + 750) * 60, 'UTC'), '%H:%i')  AS tapos_pht_dst,
    formatDateTime(toDateTime((slot + 810) * 60, 'UTC'), '%H:%i')  AS tapos_pht_standard,
    round(100 * sum(toFloat64(volume)) / sum(sum(toFloat64(volume))) OVER (), 2) AS bahagi_ng_volume_pct
FROM
(
    SELECT
        intDiv(toHour(toTimeZone(window_start, 'America/New_York')) * 60
               + toMinute(toTimeZone(window_start, 'America/New_York')), 30) * 30 AS slot,
        (toHour(toTimeZone(window_start, 'America/New_York')) * 60
               + toMinute(toTimeZone(window_start, 'America/New_York')))          AS et_minutes,
        volume
    FROM global_markets.delayed_stocks_minute_aggs
    WHERE ticker = 'SPY'
      AND window_start >= today() - 75
      AND window_start <  today() - 2
)
WHERE et_minutes >= 570 AND et_minutes < 960
GROUP BY slot
ORDER BY slot
⌘/Ctrl + Enter

Work with this data in your AI assistant

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