STRASMORE/EXPLORE 2,170 QUERIES

The week so far: index moves and advancer share for each completed session

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-07-26, from Market Recap: July 9, 2026, The Day in Numbers.

as of series 4×5read in context →
The week so far: index moves and advancer share for each completed session — 4 rows by 5 columns, computed from US exchange, SIP and OPRA data.
datespy_pctqqq_pctadvancer_pctliquid_names
2026-07-060.871.3962.46189
2026-07-07-0.48-1.8233.96189
2026-07-08-0.310.2529.66162
2026-07-090.851.6771.45973
Rows × columns
4 × 5
Period covered
to
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 The week so far: index moves and advancer share for each completed session, derived from the stored result.
ColumnTypeRangeNotes
date date 2026-07-06 to 2026-07-09
spy_pct number -0.48 to 0.87 percent
qqq_pct number -1.82 to 1.67 percent
advancer_pct number 29.6 to 71.4 percent
liquid_names number 5,973 to 6,189

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
WITH per_day AS (
    SELECT ticker,
           toDate(toTimeZone(window_start, 'America/New_York')) AS d,
           argMax(toFloat64(close), window_start) AS c,
           sum(toFloat64(close) * toFloat64(volume)) AS dv
    FROM global_markets.delayed_stocks_minute_aggs
    WHERE window_start >= '2026-07-02 13:30:00' AND window_start < '2026-07-09 20:00:00'
      AND (toHour(window_start) * 60 + toMinute(window_start)) BETWEEN 810 AND 1199
    GROUP BY ticker, d
),
lagged AS (
    SELECT ticker, d, c, dv,
           lagInFrame(c) OVER (PARTITION BY ticker ORDER BY d) AS prev_c
    FROM per_day
)
SELECT
    toString(d) AS date,
    round(anyIf((c / prev_c - 1) * 100, ticker = 'SPY'), 2) AS spy_pct,
    round(anyIf((c / prev_c - 1) * 100, ticker = 'QQQ'), 2) AS qqq_pct,
    round(100.0 * countIf(c > prev_c AND prev_c > 0 AND dv >= 1000000) / countIf(c > 0 AND prev_c > 0 AND dv >= 1000000), 1) AS advancer_pct,
    countIf(c > 0 AND prev_c > 0 AND dv >= 1000000) AS liquid_names
FROM lagged
WHERE d >= toDate('2026-07-06')
GROUP BY d
ORDER BY d

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 analysisMarket Recap: July 9, 2026, The Day in Numbers
Shares per 30-minute ET bucket, regular hours, with % of the day's biggest bucket series 13×3 Fourteen chip names: gap at the open vs the rest of the day, July 9 table 14×8 Top 6 by dollars traded, top 4 by shares traded: July 9 regular hours table 10×6 Named catalysts on file: news articles and SEC filings per name, Wednesday's close through Thursday's table 9×5 Eight declared sector baskets, three names each: July 9 close-over-close, equal-weighted table 8×6 Eight mega-caps and defensives: gap at the open vs the rest of the day, July 9 table 8×8 See all 2,170 queries →