STRASMORE/EXPLORE 2,500 QUERIES

One-minute AAPL bars rebuilt from individual trades, June 10 2026

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-08-08, from How OHLCV Bars Are Built From Ticks.

as of series 15×6read in context →
One-minute AAPL bars rebuilt from individual trades, June 10 2026 — 15 rows by 6 columns, computed from US exchange, SIP and OPRA data.
et_timebar_openbar_highbar_lowbar_closevolume_millions
09:30290.74290.98290.1290.871.5
09:31290.82291290.07290.640.2
09:32290.64290.86289.78289.780.18
09:33289.83290.55289.09289.270.15
09:34289.27300.27288.62288.70.15
09:35288.69290.55288.56289.190.19
09:36289.17290.55288.58289.10.24
09:37289.09290.55288.93289.250.24
09:38289.08290.5288.85288.990.24
09:39288.99289.4288.66289.240.35
09:40289.2289.27288.25288.410.25
09:41288.39289.31287.38287.440.3
09:42287.44289.03287.38288.940.26
09:43288.95289.6287.98289.390.2
09:44289.4290.05288.56289.920.21
Rows × columns
15 × 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 One-minute AAPL bars rebuilt from individual trades, June 10 2026, derived from the stored result.
ColumnTypeRangeNotes
et_time text 15 distinct values (09:30, 09:31, 09:32…)
bar_open number 287.44 to 290.82 US dollars
bar_high number 289.03 to 300.27 US dollars
bar_low number 287.38 to 290.1 US dollars
bar_close number 287.44 to 290.87 US dollars
volume_millions number 0.15 to 1.5 count

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(toStartOfMinute(toTimeZone(sip_timestamp, 'America/New_York')), '%H:%i') AS et_time,
    round(toFloat64(argMin(price, (sip_timestamp, sequence_number))), 2) AS bar_open,
    round(toFloat64(max(price)), 2)                                      AS bar_high,
    round(toFloat64(min(price)), 2)                                      AS bar_low,
    round(toFloat64(argMax(price, (sip_timestamp, sequence_number))), 2) AS bar_close,
    round(toFloat64(sum(size)) / 1e6, 2)                                 AS volume_millions
FROM global_markets.stocks_trades
WHERE ticker = 'AAPL'
  AND sip_timestamp >= '2026-06-10 13:30:00'
  AND sip_timestamp <  '2026-06-10 13:45:00'
GROUP BY et_time
ORDER BY et_time
⌘/Ctrl + Enter

Work with this data in your AI assistant

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

More from this analysisHow OHLCV Bars Are Built From Ticks
SPY volume by minute into the close, June 10 2026 series 25×3 Odd lot share of prints and of volume, minute by minute series 15×4 How many of the 390 session minutes each US symbol traded in ranking 10×2 Trade condition codes that restrict high, low, and last ranking 7×3 KO quarterly dividend in cents and as a percent of the share price, 2016 to 2026 series 42×4 Trading sessions per year under FB and META ranking 15×3 See all 2,500 queries →