STRASMORE/EXPLORE 2,500 QUERIES

fomc_yields

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_yields — 17 rows by 4 columns, computed from US exchange, SIP and OPRA data.
meeting_datemeeting_labelyield_2y_pctyield_10y_pct
2024-09-1818 Sep 20243.613.7
2024-11-077 Nov 20244.214.31
2024-12-1818 Dis 20244.354.5
2025-01-2929 Jan 20254.214.55
2025-03-1919 Mac 20253.994.25
2025-05-077 Mei 20253.784.26
2025-06-1818 Jun 20253.944.38
2025-07-3030 Jul 20253.944.38
2025-09-1717 Sep 20253.524.06
2025-10-2929 Okt 20253.594.08
2025-12-1010 Dis 20253.544.13
2026-01-2828 Jan 20263.564.26
2026-03-1818 Mac 20263.764.26
2026-04-2929 Apr 20263.924.42
2026-06-1717 Jun 20264.24.49
2026-07-2929 Jul 20264.224.67
2026-09-1616 Sep 20264.745.01
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_yields, 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…)
yield_2y_pct number 3.52 to 4.74 percent
yield_10y_pct number 3.7 to 5.01 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(y2, 2)                                                       AS yield_2y_pct,
    round(y10, 2)                                                      AS yield_10y_pct
FROM
(
    SELECT
        date,
        argMax(toFloat64(yield_2_year), _ingest_time)  AS y2,
        argMax(toFloat64(yield_10_year), _ingest_time) AS y10
    FROM global_markets.treasury_yields
    WHERE 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 y2 > 0
  AND y10 > 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.