Treasury curve prints on file, July 24 through July 29
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-01, from Market Recap: July 29, 2026, The Day in Numbers.
| date | yield_2y_pct | yield_10y_pct | yield_30y_pct | spread_2s10s_bp |
|---|---|---|---|---|
| 2026-07-24 | 4.33 | 4.69 | 5.16 | 36 |
| 2026-07-27 | 4.31 | 4.65 | 5.12 | 34 |
| 2026-07-28 | 4.26 | 4.61 | 5.09 | 35 |
| 2026-07-29 | 4.22 | 4.67 | 5.2 | 45 |
- Rows × columns
- 4 × 5
- 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 |
|---|---|---|---|
date |
date | 2026-07-24 to 2026-07-29 | |
yield_2y_pct |
number | 4.22 to 4.33 | percent |
yield_10y_pct |
number | 4.61 to 4.69 | percent |
yield_30y_pct |
number | 5.09 to 5.2 | percent |
spread_2s10s_bp |
number | 34 to 45 |
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 date,
round(toFloat64(yield_2_year), 2) AS yield_2y_pct,
round(toFloat64(yield_10_year), 2) AS yield_10y_pct,
round(toFloat64(yield_30_year), 2) AS yield_30y_pct,
round((toFloat64(yield_10_year) - toFloat64(yield_2_year)) * 100) AS spread_2s10s_bp
FROM global_markets.treasury_yields
WHERE date >= '2026-07-24' AND date <= '2026-07-29'
ORDER BY date