Same session, five stocks, five VWAPs: final-minute price vs. session VWAP, July 2, 2026
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 What Is VWAP? Volume-Weighted Average Price.
| ticker | session_vwap | final_minute_price | final_vs_vwap_pct |
|---|---|---|---|
| AAPL | 305.99 | 308.22 | 0.73 |
| MSFT | 389.33 | 389.62 | 0.07 |
| NVDA | 195.14 | 194.51 | -0.32 |
| TSLA | 399.64 | 392.81 | -1.71 |
| KO | 82.96 | 83.98 | 1.23 |
- Rows × columns
- 5 × 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 | 5 distinct values (AAPL, KO, MSFT…) | |
session_vwap |
number | 82.96 to 399.64 | |
final_minute_price |
number | 83.98 to 392.81 | US dollars |
final_vs_vwap_pct |
number | -1.71 to 1.23 | 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 ticker,
round(sum(close * volume) / sum(volume), 2) AS session_vwap,
round(argMax(close, window_start), 2) AS final_minute_price,
round((argMax(close, window_start) - sum(close * volume) / sum(volume))
/ (sum(close * volume) / sum(volume)) * 100, 2) AS final_vs_vwap_pct
FROM global_markets.delayed_stocks_minute_aggs
WHERE ticker IN ('AAPL', 'MSFT', 'NVDA', 'TSLA', 'KO')
AND window_start >= toDateTime('2026-07-02 09:30:00', 'America/New_York')
AND window_start < toDateTime('2026-07-02 16:00:00', 'America/New_York')
GROUP BY ticker
HAVING count() = 390
ORDER BY indexOf(['AAPL', 'MSFT', 'NVDA', 'TSLA', 'KO'], ticker)
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 analysisWhat Is VWAP? Volume-Weighted Average Price
AAPL price vs. running VWAP: July 2, 2026 regular session, sampled every 5 minutes
series 78×3
→
The receipt: VWAP from every individual trade vs. the minute-bar shortcut (AAPL, July 2, 2026)
scalar 1×5
→
AAPL, July 2, 2026: session VWAP vs. equal-weight average vs. the final-minute price
scalar 1×8
→
NVDA's off-exchange share of volume by Eastern-time hour, July 2, 2026
ranking 16×4
→
How much the newest session can move an anchored VWAP (AAPL)
ranking 13×2
→
SPY's expiring June 18, 2026 series: contracts traded by strike, and each strike's distance from the closing price
ranking 12×4
→
See all 2,170 queries →