STRASMORE/EXPLORE 2,173 QUERIES

SPY move from Tuesday close to Friday close, the age of a COT snapshot

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-22, from How to Read the COT Report: Columns Explained.

as of ranking 11×4read in context →
SPY move from Tuesday close to Friday close, the age of a COT snapshot — 11 rows by 4 columns, computed from US exchange, SIP and OPRA data.
yearsession_pair_countmedian_gap_move_pctp90_gap_move_pct
2016510.882.2
2017500.331.11
2018501.142.71
2019510.882.35
2020481.244.21
2021500.752.08
2022511.724.32
2023500.882.8
2024521.042.17
2025500.842.43
2026231.262.92
Rows × columns
11 × 4
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 SPY move from Tuesday close to Friday close, the age of a COT snapshot, derived from the stored result.
ColumnTypeRangeNotes
year text 11 distinct values (2016, 2017, 2018…)
session_pair_count number 23 to 52 count
median_gap_move_pct number 0.33 to 1.72 percent
p90_gap_move_pct number 1.11 to 4.32 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
WITH spy AS
(
    SELECT
        date,
        toFloat64(close) AS close_px
    FROM global_markets.stocks_daily_aggs
    WHERE ticker = 'SPY'
      AND date >= '2016-01-01'
      AND date <  '2026-07-01'
)
SELECT
    toString(toYear(tue.date)) AS year,
    count()                    AS session_pair_count,
    round(quantileDeterministic(0.5)(abs(fri.close_px / tue.close_px - 1) * 100,
          toUInt64(toUnixTimestamp(tue.date))), 2) AS median_gap_move_pct,
    round(quantileDeterministic(0.9)(abs(fri.close_px / tue.close_px - 1) * 100,
          toUInt64(toUnixTimestamp(tue.date))), 2) AS p90_gap_move_pct
FROM spy AS tue
INNER JOIN spy AS fri ON fri.date = tue.date + 3
WHERE toDayOfWeek(tue.date) = 2
GROUP BY year
ORDER BY year

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 analysisHow to Read the COT Report: Columns Explained
AAPL days to cover and its rank inside the three-year window series 72×4 Net calls minus puts on AAPL, raw contracts and as a share of volume series 30×6 Latest days to cover, and where it sits in five years of the same name's history table 6×5 Units versus dollars: seven funds tracking the markets the COT covers, July 2026 ranking 7×4 SPY: the move from Tuesday's close to Friday 3:30 pm ET, week by week, Aug 2025 to Jul 2026 series 48×4 Where Friday volume sits on the clock: SPY, 15-minute buckets, full Friday sessions over the past year series 26×3 See all 2,173 queries →