STRASMORE/EXPLORE 2,170 QUERIES

NVDA vs the chip complex: close-over-close % change by 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 NVDA: Sit-Out, Then Surge, Week of July 6.

as of series 5×6read in context →
NVDA vs the chip complex: close-over-close % change by session — 5 rows by 6 columns, computed from US exchange, SIP and OPRA data.
et_datenvda_pctamd_pctmu_pctintc_pcttsm_pct
2026-07-060.66.50.91.54
2026-07-070.7-6.4-4.6-9.6-4.2
2026-07-083.70.11.1-0.20.9
2026-07-09-0.75.74.32.10.1
2026-07-1042.1-1.2-2.4-0.6
Rows × columns
5 × 6
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 NVDA vs the chip complex: close-over-close % change by session, derived from the stored result.
ColumnTypeRangeNotes
et_date date 2026-07-06 to 2026-07-10
nvda_pct number -0.7 to 4 percent
amd_pct number -6.4 to 6.5 percent
mu_pct number -4.6 to 4.3 percent
intc_pct number -9.6 to 2.1 percent
tsm_pct number -4.2 to 4 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.

the exact SQL behind every number
SELECT
    toString(d) AS et_date,
    round(maxIf(pct, ticker = 'NVDA'), 1) AS nvda_pct,
    round(maxIf(pct, ticker = 'AMD'), 1) AS amd_pct,
    round(maxIf(pct, ticker = 'MU'), 1) AS mu_pct,
    round(maxIf(pct, ticker = 'INTC'), 1) AS intc_pct,
    round(maxIf(pct, ticker = 'TSM'), 1) AS tsm_pct
FROM (
    SELECT ticker, d,
           (c / lagInFrame(c) OVER (PARTITION BY ticker ORDER BY d ASC ROWS BETWEEN 1 PRECEDING AND CURRENT ROW) - 1) * 100 AS pct
    FROM (
        SELECT ticker,
               toDate(toTimeZone(window_start, 'America/New_York')) AS d,
               argMaxIf(toFloat64(close), window_start, (toHour(window_start) * 60 + toMinute(window_start)) BETWEEN 810 AND 1199) AS c
        FROM global_markets.delayed_stocks_minute_aggs
        WHERE ticker IN ('NVDA', 'AMD', 'MU', 'INTC', 'TSM')
          AND window_start >= toDateTime('2026-07-02 00:00:00') AND window_start < toDateTime('2026-07-11 00:00:00')
        GROUP BY ticker, d
    )
)
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 analysisNVDA: Sit-Out, Then Surge, Week of July 6
NVDA median quoted spread by session, regular hours (bps of midpoint) series 5×3 NVDA by session: close, change, shares, dollars series 5×5 NVDA weekly returns, trailing ~26 weeks (open-to-close per week): where this week ranks table 27×3 The week's heaviest tickers by regular-hours dollar volume ranking 6×2 FINRA daily short volume, NVDA: with the file-completeness caveat ranking 5×3 Print-size anatomy and quote census: NVDA, full week scalar 1×5 See all 2,170 queries →