STRASMORE/EXPLORE 2,170 QUERIES

Average S&P 500 tracker return by calendar month, May 2005 through April 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-08-03, from Does Sell in May and Go Away Work?.

as of table 12×5read in context →
Average S&P 500 tracker return by calendar month, May 2005 through April 2026 — 12 rows by 5 columns, computed from US exchange, SIP and OPRA data.
labelreadingsavg_return_pctmedian_return_pctpositive_readings
Jan210.361.5912
Feb210.130.2511
Mar210.580.9613
Apr212.41.5617
May210.881.3916
Jun21-0.19-0.1910
Jul212.632.2817
Aug210.281.4213
Sep21-0.750.3812
Oct210.972.1712
Nov212.392.7516
Dec210.190.413
Rows × columns
12 × 5
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 Average S&P 500 tracker return by calendar month, May 2005 through April 2026, derived from the stored result.
ColumnTypeRangeNotes
label text 12 distinct values (Apr, Aug, Dec…)
readings number every row is 21
avg_return_pct number -0.75 to 2.63 percent
median_return_pct number -0.19 to 2.75 percent
positive_readings number 10 to 17

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 monthly AS (
    SELECT toStartOfMonth(toDate(toTimeZone(window_start, 'America/New_York'))) AS month_start,
           argMax(close, window_start) AS month_close
    FROM global_markets.delayed_stocks_minute_aggs
    WHERE ticker = 'SPY'
      AND toDate(toTimeZone(window_start, 'America/New_York')) >= toDate('2005-04-01')
      AND toDate(toTimeZone(window_start, 'America/New_York')) <= toDate('2026-04-30')
      AND (toHour(toTimeZone(window_start, 'America/New_York')) * 60
           + toMinute(toTimeZone(window_start, 'America/New_York'))) BETWEEN 570 AND 959
    GROUP BY month_start
),
month_returns AS (
    SELECT m1.month_start AS month_start,
           100 * (toFloat64(m1.month_close) / toFloat64(m0.month_close) - 1) AS ret_pct
    FROM monthly AS m1
    INNER JOIN monthly AS m0 ON m0.month_start = addMonths(m1.month_start, -1)
)
SELECT formatDateTime(month_start, '%b') AS label,
       count() AS readings,
       round(avg(ret_pct), 2) AS avg_return_pct,
       round(quantileDeterministic(0.5)(ret_pct, cityHash64(month_start)), 2) AS median_return_pct,
       countIf(ret_pct > 0) AS positive_readings
FROM month_returns
GROUP BY label
ORDER BY min(toMonth(month_start))

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 analysisDoes Sell in May and Go Away Work?
The seasonal gap by era: average half-year returns and the spread between them table 3×6 Growth of one dollar: holding all year vs holding only November through April ranking 21×3 S&P 500 tracker: May to October vs November to April, season by season ranking 21×3 SPY distributions by ex-dividend month: inside the May to October window vs outside it ranking 19×3 Survivorship in the universe: names trading each year, share still listed in July 2026, and median return table 10×6 Same-bar decision vs a one-session lag: SPY, average session gain, 2016-2025 table 10×5 See all 2,170 queries →