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.
| ticker | fund_type | closing_print_share_pct | closing_stretch_share_pct |
|---|---|---|---|
| SPY | plain index fund | 0.58 | 18.29 |
| QQQ | plain index fund | 0.37 | 13.23 |
| SPXL | daily reset fund | 0.21 | 15.29 |
| UPRO | daily reset fund | 0.2 | 16.13 |
| XLK | plain index fund | 0.11 | 16.16 |
| SQQQ | daily reset fund | 0.11 | 9.18 |
| TQQQ | daily reset fund | 0.09 | 9.17 |
| SOXL | daily reset fund | 0.05 | 12.03 |
- Rows × columns
- 8 × 4
- Computed
- Completeness
- No missing values
- Source
- US exchange, SIP and OPRA market data
- Licence
- Strasmore terms · free, no signup
What each column holds
| Column | Type | Range | Notes |
|---|---|---|---|
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