Treasury curve by session, July 17 print through July 24
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-12, from Market Recap: Week of July 20, 2026.
| date | yield_2y_pct | yield_10y_pct | yield_30y_pct | spread_2s10s_bp | chg_10y_from_prior_close_bp |
|---|---|---|---|---|---|
| 2026-07-17 | 4.18 | 4.55 | 5.06 | 37 | 0 |
| 2026-07-20 | 4.21 | 4.6 | 5.11 | 39 | 5 |
| 2026-07-21 | 4.26 | 4.63 | 5.13 | 37 | 8 |
| 2026-07-22 | 4.31 | 4.67 | 5.15 | 36 | 12 |
| 2026-07-23 | 4.37 | 4.71 | 5.17 | 34 | 16 |
| 2026-07-24 | 4.33 | 4.69 | 5.16 | 36 | 14 |
- Rows × columns
- 6 × 6
- 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-17 to 2026-07-24 | |
yield_2y_pct |
number | 4.18 to 4.37 | percent |
yield_10y_pct |
number | 4.55 to 4.71 | percent |
yield_30y_pct |
number | 5.06 to 5.17 | percent |
spread_2s10s_bp |
number | 34 to 39 | |
chg_10y_from_prior_close_bp |
number | 0 to 16 | US dollars |
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,
round((toFloat64(yield_10_year) - (SELECT toFloat64(any(yield_10_year)) FROM global_markets.treasury_yields WHERE date = '2026-07-17')) * 100) AS chg_10y_from_prior_close_bp
FROM global_markets.treasury_yields
WHERE date >= '2026-07-17' AND date <= '2026-07-24'
ORDER BY date
AI 어시스턴트에서 이 데이터로 작업하기
이 페이지의 데이터로 바로 쿼리할 수 있게 열립니다. 무료, 계정 불필요.