STRASMORE/EXPLORE 2,309 QUERIES

cross_minutes

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-17, from what-does-cross-mean-in-trading.

as of series 7×4read in context →
cross_minutes — 7 rows by 4 columns, computed from US exchange, SIP and OPRA data.
et_timeavg_million_sharesratio_to_heaviestsessions
09:301.49121
09:310.30.221
10:000.170.1121
12:000.080.0521
15:000.080.0621
15:591.310.8821
16:000.990.6621
Rows × columns
7 × 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 cross_minutes, derived from the stored result.
ColumnTypeRangeNotes
et_time text 7 distinct values (09:30, 09:31, 10:00…)
avg_million_shares number 0.08 to 1.49 count
ratio_to_heaviest number 0.05 to 1 ratio or rate
sessions number every row is 21

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.

the exact SQL behind every number
SELECT
    et_time,
    round(toFloat64(avg(volume)) / 1e6, 2)                                  AS avg_million_shares,
    round(toFloat64(avg(volume)) / max(toFloat64(avg(volume))) OVER (), 2)  AS ratio_to_heaviest,
    count()                                                                 AS sessions
FROM
(
    SELECT
        formatDateTime(toTimeZone(window_start, 'America/New_York'), '%H:%i') AS et_time,
        volume
    FROM global_markets.delayed_stocks_minute_aggs
    WHERE ticker = 'AAPL'
      AND window_start >= toDateTime('2026-06-01 04:00:00', 'UTC')
      AND window_start <  toDateTime('2026-07-01 04:00:00', 'UTC')
)
WHERE et_time IN ('09:30', '09:31', '10:00', '12:00', '15:00', '15:59', '16:00')
GROUP BY et_time
ORDER BY et_time

Run your own version of this

The same 22 years of US equities and 12 years of options data are queryable in SQL or plain English. A free account runs 100 queries a day and takes no card.

More from this analysiswhat-does-cross-mean-in-trading
cross_codes table 13×5 quote_states ranking 3×4 One SPY $600 LEAPS call's price over two years (expired Jan 16 2026) series 470×2 monthly series 241×4 2s10s spread, monthly average: last 20 years series 240×2 rolling_7y series 193×5 See all 2,309 queries →