STRASMORE/EXPLORE 2,358 QUERIES

monthly

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-09-18, from the-september-effect.

as of table 12×6read in context →
monthly — 12 rows by 6 columns, computed from US exchange, SIP and OPRA data.
labelavg_return_pctmedian_return_pctstdev_pcthit_rate_pctsample_count
Jan0.271.554.4154.522
Feb0.361.324.2459.122
Mar0.614.4659.122
Apr1.631.134.4372.722
May0.921.613.8177.322
Jun-0.1-0.024.015022
Jul2.362.283.3277.322
Aug0.270.793.3863.622
Sep-0.710.484.5959.122
Oct1.162.215.7460.923
Nov2.452.753.8882.623
Dec0.450.73.4665.223
Rows × columns
12 × 6
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 monthly, derived from the stored result.
ColumnTypeRangeNotes
label text 12 distinct values (Apr, Aug, Dec…)
avg_return_pct number -0.71 to 2.45 percent
median_return_pct number -0.02 to 2.75 percent
stdev_pct number 3.32 to 5.74 percent
hit_rate_pct number 50 to 82.6 percent
sample_count number 22 to 23 count

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 month_ends AS
(
    SELECT
        toStartOfMonth(date)           AS month_start,
        argMax(toFloat64(close), date) AS month_end_close
    FROM global_markets.stocks_daily_aggs
    WHERE ticker = 'SPY'
      AND date < toStartOfYear(today())
    GROUP BY month_start
),
monthly_returns AS
(
    SELECT
        month_start,
        month_end_close,
        lagInFrame(month_end_close, 1) OVER (ORDER BY month_start ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW) AS prev_close
    FROM month_ends
)
SELECT
    formatDateTime(month_start, '%b')                                                                    AS label,
    round(avg(month_end_close / prev_close - 1) * 100, 2)                                                AS avg_return_pct,
    round(quantileDeterministic(0.5)(month_end_close / prev_close - 1, toYYYYMM(month_start)) * 100, 2) AS median_return_pct,
    round(stddevSamp(month_end_close / prev_close - 1) * 100, 2)                                         AS stdev_pct,
    round(countIf(month_end_close > prev_close) / count() * 100, 1)                                      AS hit_rate_pct,
    count()                                                                                              AS sample_count
FROM monthly_returns
WHERE prev_close > 0
GROUP BY toMonth(month_start), label
ORDER BY 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 analysisthe-september-effect
septembers_by_year ranking 22×2 worst_septembers ranking 3×2 decades ranking 3×4 The 2s10s spread, every print of the half table 124×2 The 2s10s spread, every print of the half table 124×2 Every half-year since 1976: the 2y and 10y change, the twist between them, and the half's lowest 2s10s print table 100×7 See all 2,358 queries →