STRASMORE/EXPLORE 2,469 QUERIES

How much the newest session can move an anchored VWAP (AAPL)

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-08-07, from Anchored VWAP Explained: Formula and Uses.

as of ranking 13×2read in context →
How much the newest session can move an anchored VWAP (AAPL) — 13 rows by 2 columns, computed from US exchange, SIP and OPRA data.
bars_since_anchornewest_bar_weight_pct
1030.09
208.09
304.44
402.3
501.65
601.62
701.28
801.24
901.35
1000.99
1101.15
1200.99
1302.14
Rows × columns
13 × 2
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 How much the newest session can move an anchored VWAP (AAPL), derived from the stored result.
ColumnTypeRangeNotes
bars_since_anchor number 10 to 130
newest_bar_weight_pct number 0.99 to 30.09 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.

WITH running AS (
    SELECT
        row_number() OVER (ORDER BY date) AS n,
        toFloat64(volume)
      / sum(toFloat64(volume)) OVER (ORDER BY date ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW) AS weight
    FROM global_markets.stocks_daily_aggs
    WHERE ticker = 'AAPL'
      AND date >= '2026-01-02'
      AND date <= '2026-06-30'
)
SELECT
    intDiv(n - 1, 10) * 10 + 10 AS bars_since_anchor,
    round(100 * avg(weight), 2) AS newest_bar_weight_pct
FROM running
GROUP BY bars_since_anchor
ORDER BY bars_since_anchor
⌘/Ctrl + Enter
More from this analysisAnchored VWAP Explained: Formula and Uses
The same stock and the same last price, twelve different anchors (AAPL) ranking 12×3 Daily session VWAP against a VWAP anchored on one date (AAPL) series 62×4 Anchored at each name's own lowest close of the past twelve months table 5×5 Same session, five stocks, five VWAPs: final-minute price vs. session VWAP, July 2, 2026 ranking 5×4 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 See all 2,469 queries →