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.
| meeting_date | meeting_label | decision_day_pct | next_day_pct |
|---|---|---|---|
| 2024-09-18 | 18 Sep 2024 | -0.3 | 1.71 |
| 2024-11-07 | 7 Nov 2024 | 0.77 | 0.43 |
| 2024-12-18 | 18 Dis 2024 | -2.98 | -0.03 |
| 2025-01-29 | 29 Jan 2025 | -0.45 | 0.54 |
| 2025-03-19 | 19 Mac 2025 | 1.09 | -0.29 |
| 2025-05-07 | 7 Mei 2025 | 0.42 | 0.7 |
| 2025-06-18 | 18 Jun 2025 | -0.02 | -0.53 |
| 2025-07-30 | 30 Jul 2025 | -0.13 | -0.38 |
| 2025-09-17 | 17 Sep 2025 | -0.12 | 0.47 |
| 2025-10-29 | 29 Okt 2025 | 0.05 | -1.1 |
| 2025-12-10 | 10 Dis 2025 | 0.66 | 0.23 |
| 2026-01-28 | 28 Jan 2026 | -0.01 | -0.2 |
| 2026-03-18 | 18 Mac 2026 | -1.4 | -0.25 |
| 2026-04-29 | 29 Apr 2026 | -0.02 | 0.99 |
| 2026-06-17 | 17 Jun 2026 | -1.25 | 0.78 |
| 2026-07-29 | 29 Jul 2026 | -1.54 | 1.68 |
| 2026-09-16 | 16 Sep 2026 | -0.44 | 1.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
What each column holds
| Column | Type | Range | Notes |
|---|---|---|---|
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
Work with this data in your AI assistant
Opens ready to query, with this page's data. Free, no account.