STRASMORE/EXPLORE 2,469 QUERIES

closing_print_share

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-22, from leveraged-etf-rebalancing-and-the-close.

as of ranking 8×4read in context →
closing_print_share — 8 rows by 4 columns, computed from US exchange, SIP and OPRA data.
tickerfund_typeclosing_print_share_pctclosing_stretch_share_pct
SPYplain index fund0.5818.29
QQQplain index fund0.3713.23
SPXLdaily reset fund0.2115.29
UPROdaily reset fund0.216.13
XLKplain index fund0.1116.16
SQQQdaily reset fund0.119.18
TQQQdaily reset fund0.099.17
SOXLdaily reset fund0.0512.03
Rows × columns
8 × 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 closing_print_share, derived from the stored result.
ColumnTypeRangeNotes
ticker text 8 distinct values (QQQ, SOXL, SPXL…)
fund_type text 2 distinct values (daily reset fund, plain index fund)
closing_print_share_pct number 0.05 to 0.58 percent
closing_stretch_share_pct number 9.17 to 18.29 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
    ticker,
    multiIf(ticker IN ('TQQQ', 'SQQQ', 'SOXL', 'SPXL', 'UPRO'),
            'daily reset fund', 'plain index fund')                    AS fund_type,
    round(100 * sumIf(volume, et_minute = 960) / sum(volume), 2)       AS closing_print_share_pct,
    round(100 * sumIf(volume, et_minute >= 930) / sum(volume), 2)      AS closing_stretch_share_pct
FROM
(
    SELECT
        ticker,
        volume,
        toHour(toTimeZone(window_start, 'America/New_York')) * 60
          + toMinute(toTimeZone(window_start, 'America/New_York')) AS et_minute
    FROM global_markets.delayed_stocks_minute_aggs
    WHERE ticker IN ('TQQQ', 'SQQQ', 'SOXL', 'SPXL', 'UPRO', 'QQQ', 'SPY', 'XLK')
      AND window_start >= '2025-07-01 00:00:00'
      AND window_start <  '2026-01-01 00:00:00'
)
WHERE et_minute >= 570
  AND et_minute <= 960
GROUP BY ticker
ORDER BY closing_print_share_pct DESC
⌘/Ctrl + Enter
More from this analysisleveraged-etf-rebalancing-and-the-close
move_buckets ranking 5×3 reset_day_trace series 31×3 reset_math series 12×6 Top 25 weekly-options underlyings by distinct contracts traded, with expiration weekdays ranking 25×4 Annualized volatility vs total return, 25 large caps, calmest to wildest (~2 years) ranking 25×3 SPY options median spread by expiration date, near-the-money strikes only ranking 25×4 See all 2,469 queries →