STRASMORE/EXPLORE 2,500 QUERIES

fomc_iv

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×5read in context →
fomc_iv — 17 rows by 5 columns, computed from US exchange, SIP and OPRA data.
meeting_datemeeting_labeliv_before_pctiv_decision_pctiv_after_pct
2024-09-1818 Sep 202414.814.814.3
2024-11-077 Nov 202414.413.613.5
2024-12-1818 Dis 202412.918.117.1
2025-01-2929 Jan 202514.31413.4
2025-03-1919 Mac 202519.317.617.7
2025-05-077 Mei 202520.720.820.7
2025-06-1818 Jun 202517.716.917
2025-07-3030 Jul 202514.313.915
2025-09-1717 Sep 202513.61312.9
2025-10-2929 Okt 202514.915.514.9
2025-12-1010 Dis 202514.513.612.8
2026-01-2828 Jan 20261414.614.6
2026-03-1818 Mac 202618.720.720.5
2026-04-2929 Apr 20261615.715.2
2026-06-1717 Jun 202614.215.214.6
2026-07-2929 Jul 202615.117.114.6
2026-09-1616 Sep 202614.414.513.2
Rows × columns
17 × 5
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_iv, 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…)
iv_before_pct number 12.9 to 20.7 percent
iv_decision_pct number 13 to 20.8 percent
iv_after_pct number 12.8 to 20.7 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(iv_prev, 1)                                                  AS iv_before_pct,
    round(iv_day, 1)                                                   AS iv_decision_pct,
    round(iv_next, 1)                                                  AS iv_after_pct
FROM
(
    SELECT
        date,
        iv_day,
        any(iv_day) OVER (ORDER BY date ASC ROWS BETWEEN 1 PRECEDING AND 1 PRECEDING) AS iv_prev,
        any(iv_day) OVER (ORDER BY date ASC ROWS BETWEEN 1 FOLLOWING AND 1 FOLLOWING) AS iv_next
    FROM
    (
        SELECT
            date,
            avg(implied_volatility) * 100 AS iv_day
        FROM global_markets.options_greeks
        WHERE underlying_symbol = 'SPY'
          AND date >= '2024-08-01'
          AND iv_converged = 1
          AND volume > 0
          AND days_to_expiry BETWEEN 20 AND 45
          AND toFloat64(underlying_close) > 0
          AND abs(toFloat64(strike_price) / toFloat64(underlying_close) - 1) < 0.05
        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 iv_prev > 0
  AND iv_next > 0
ORDER BY date ASC
⌘/Ctrl + Enter

Gunakan data ini dalam pembantu AI anda

Dibuka sedia untuk ditanya, dengan data halaman ini. Percuma, tanpa akaun.