STRASMORE/EXPLORE 2,173 QUERIES 22Y EQUITIES · 12Y OPTIONS

2,173 answered market questions

every one with its exact SQL, its result and the date it was computed · free, no signup

Bracket Orders and OCO Orders Explained
Share of SPY sessions reaching a given distance from the open (Aug 2023 to Jul 2026)ranking · 2026-08-22 · 6×3Preview: 6 ranked values, largest first. AAPL's ten largest overnight gaps down, Jan 2023 to Jun 2026ranking · 2026-08-22 · 10×2Preview: 10 ranked values, smallest first. Typical daily range and open-to-close move, trailing yearranking · 2026-08-22 · 6×3Preview: 6 ranked values, largest first. SPY minute-bar movement and volume by ET clock timeseries · 2026-08-22 · 32×3Preview: a 16-point series, roughly flat.
Share of SPY sessions reaching a given distance from the open (Aug 2023 to Jul 2026)

Share of SPY sessions reaching a given distance from the open (Aug 2023 to Jul 2026)

most recentas of ranking 6×3read in context →
Share of SPY sessions reaching a given distance from the open (Aug 2023 to Jul 2026) — 6 rows by 3 columns, computed from US exchange, SIP and OPRA data.
distance_from_openreached_below_pctreached_above_pct
0.25%62.364.7
0.5%42.539.2
1%16.19.3
1.5%5.22.7
2%2.11.2
3%0.50.3
the exact SQL behind every number
SELECT
    concat(toString(d.dist), '%')                             AS distance_from_open,
    round(100 * countIf(
        (toFloat64(a.open) - toFloat64(a.low)) / toFloat64(a.open) * 100 >= d.dist
    ) / count(), 1)                                           AS reached_below_pct,
    round(100 * countIf(
        (toFloat64(a.high) - toFloat64(a.open)) / toFloat64(a.open) * 100 >= d.dist
    ) / count(), 1)                                           AS reached_above_pct
FROM global_markets.stocks_daily_aggs AS a
CROSS JOIN
(
    SELECT arrayJoin([0.25, 0.5, 1.0, 1.5, 2.0, 3.0]) AS dist
) AS d
WHERE a.ticker = 'SPY'
  AND a.date >= '2023-08-01'
  AND a.date <  '2026-08-01'
GROUP BY d.dist
ORDER BY d.dist
$