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.
| et_date | nvda_pct | amd_pct | mu_pct | intc_pct | tsm_pct |
|---|---|---|---|---|---|
| 2026-07-06 | 0.6 | 6.5 | 0.9 | 1.5 | 4 |
| 2026-07-07 | 0.7 | -6.4 | -4.6 | -9.6 | -4.2 |
| 2026-07-08 | 3.7 | 0.1 | 1.1 | -0.2 | 0.9 |
| 2026-07-09 | -0.7 | 5.7 | 4.3 | 2.1 | 0.1 |
| 2026-07-10 | 4 | 2.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
What each column holds
| Column | Type | Range | Notes |
|---|---|---|---|
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 →