STRASMORE/EXPLORE 2,500 QUERIES

fomc_reaction

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-23, from hawkish-vs-dovish-meaning.

as of series 17×4read in context →
fomc_reaction — 17 rows by 4 columns, computed from US exchange, SIP and OPRA data.
meeting_datemeeting_labeldecision_day_pctnext_day_pct
2024-09-1818 Sep 2024-0.31.71
2024-11-077 Nov 20240.770.43
2024-12-1818 Dis 2024-2.98-0.03
2025-01-2929 Jan 2025-0.450.54
2025-03-1919 Mac 20251.09-0.29
2025-05-077 Mei 20250.420.7
2025-06-1818 Jun 2025-0.02-0.53
2025-07-3030 Jul 2025-0.13-0.38
2025-09-1717 Sep 2025-0.120.47
2025-10-2929 Okt 20250.05-1.1
2025-12-1010 Dis 20250.660.23
2026-01-2828 Jan 2026-0.01-0.2
2026-03-1818 Mac 2026-1.4-0.25
2026-04-2929 Apr 2026-0.020.99
2026-06-1717 Jun 2026-1.250.78
2026-07-2929 Jul 2026-1.541.68
2026-09-1616 Sep 2026-0.441.13
Rows × columns
17 × 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 fomc_reaction, derived from the stored result.
ColumnTypeRangeNotes
meeting_date date 2024-09-18 to 2026-09-16
meeting_label text 17 distinct values (10 Dis 2025, 16 Sep 2026, 17 Jun 2026…)
decision_day_pct number -2.98 to 1.09 percent
next_day_pct number -1.1 to 1.71 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.

SELECT
    toString(date)                                                     AS meeting_date,
    concat(toString(toDayOfMonth(date)), ' ',
           arrayElement(['Jan','Feb','Mac','Apr','Mei','Jun','Jul','Ogos','Sep','Okt','Nov','Dis'], toMonth(date)), ' ',
           toString(toYear(date)))                                     AS meeting_label,
    round((close / prev_close - 1) * 100, 2)                           AS decision_day_pct,
    round((next_close / close - 1) * 100, 2)                           AS next_day_pct
FROM
(
    SELECT
        date,
        close,
        any(close) OVER (ORDER BY date ASC ROWS BETWEEN 1 PRECEDING AND 1 PRECEDING) AS prev_close,
        any(close) OVER (ORDER BY date ASC ROWS BETWEEN 1 FOLLOWING AND 1 FOLLOWING) AS next_close
    FROM
    (
        SELECT
            date,
            argMax(toFloat64(close), _ingest_time) AS close
        FROM global_markets.stocks_daily_aggs
        WHERE ticker = 'SPY'
          AND date >= '2024-08-01'
        GROUP BY date
    )
)
WHERE date IN ('2024-09-18','2024-11-07','2024-12-18','2025-01-29','2025-03-19',
               '2025-05-07','2025-06-18','2025-07-30','2025-09-17','2025-10-29',
               '2025-12-10','2026-01-28','2026-03-18','2026-04-29','2026-06-17',
               '2026-07-29','2026-09-16')
  AND prev_close > 0
  AND next_close > 0
ORDER BY date ASC
⌘/Ctrl + Enter

Work with this data in your AI assistant

Opens ready to query, with this page's data. Free, no account.