STRASMORE/EXPLORE 2,170 QUERIES

SPY month by month in H1 2026: regular-hours open-to-close return per month

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-11, from Macro Picture Entering H2 2026, With Receipts.

as of ranking 6×4read in context →
SPY month by month in H1 2026: regular-hours open-to-close return per month — 6 rows by 4 columns, computed from US exchange, SIP and OPRA data.
period_startmonth_openmonth_closespy_return_pct
2026-01-01685.71691.850.9
2026-02-01689.58686.23-0.49
2026-03-01678.7650.24-4.19
2026-04-01653.9718.439.87
2026-05-01721.25756.44.87
2026-06-01755.36746.32-1.2
Rows × columns
6 × 4
Period covered
to
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 month by month in H1 2026: regular-hours open-to-close return per month, derived from the stored result.
ColumnTypeRangeNotes
period_start date 2026-01-01 to 2026-06-01
month_open number 653.9 to 755.36 US dollars
month_close number 650.24 to 756.4 US dollars
spy_return_pct number -4.19 to 9.87 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 bars AS (
    SELECT toStartOfMonth(toDate(toTimeZone(window_start, 'America/New_York'))) AS m,
           window_start, open, close
    FROM global_markets.delayed_stocks_minute_aggs
    WHERE ticker = 'SPY'
      AND window_start >= toDateTime('2026-01-01 00:00:00')
      AND window_start < toDateTime('2026-07-01 00:00:00')
      AND (toHour(toTimeZone(window_start, 'America/New_York')) * 60 + toMinute(toTimeZone(window_start, 'America/New_York'))) BETWEEN 570 AND 959
)
SELECT toString(m) AS period_start,
       round(argMin(toFloat64(open), window_start), 2) AS month_open,
       round(argMax(toFloat64(close), window_start), 2) AS month_close,
       round((argMax(toFloat64(close), window_start) / argMin(toFloat64(open), window_start) - 1) * 100, 2) AS spy_return_pct
FROM bars
GROUP BY m
ORDER BY m

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 analysisMacro Picture Entering H2 2026, With Receipts
Model-based inflation expectations by horizon, monthly ranking 6×4 CPI month-over-month, computed from the index against the prior month ranking 6×3 The labor market, monthly: unemployment, participation, average hourly earnings, with ingest receipts table 6×5 The Treasury curve at each month-end of H1 2026: bill, 2-year, 10-year, and the spreads between them table 6×8 CPI year-over-year, computed from the index against the same month a year earlier table 6×5 The as-of receipts: every June print on file, the July CPI column armed as the next tripwire scalar 1×5 See all 2,170 queries →