STRASMORE/EXPLORE 2,170 QUERIES 22Y EQUITIES · 12Y OPTIONS

2,170 answered market questions

every one with its exact SQL, its result and the date it was computed · free, no signup

Covered Call Closed-End Funds vs ETFs
Short-term Treasury yields by month, the reference for fund borrowing costsseries · 2026-08-22 · 36×3Preview: a 16-point series, ending lower. Cash distributions over the trailing year, by declared scheduleranking · 2026-08-22 · 5×2Preview: 5 ranked values, largest first. Monthly cost of a near-the-money call, as a percent of share priceseries · 2026-08-22 · 18×3Preview: a 16-point series, roughly flat.
Short-term Treasury yields by month, the reference for fund borrowing costs

Short-term Treasury yields by month, the reference for fund borrowing costs

most recentas of series 36×3read in context →
Short-term Treasury yields by month, the reference for fund borrowing costs — 36 rows by 3 columns, computed from US exchange, SIP and OPRA data.
monthavg_1_month_yield_pctavg_3_month_yield_pct
2023-085.545.56
2023-095.535.56
2023-105.575.6
2023-115.535.52
2023-125.545.44
2024-015.545.45
2024-025.495.44
2024-035.515.47
2024-045.485.44
2024-055.55.45
2024-065.465.51
2024-075.485.43
2024-085.55.3
2024-095.064.92
2024-104.924.72
2024-114.714.62
2024-124.54.39
2025-014.424.34
2025-024.374.33
2025-034.374.34
2025-044.354.32
2025-054.374.36
2025-064.244.42
2025-074.374.41
2025-084.464.3
2025-094.244.07
2025-104.153.98
2025-114.033.94
2025-123.773.68
2026-013.733.67
2026-023.723.69
2026-033.743.72
2026-043.693.7
2026-053.713.69
2026-063.693.81
2026-073.743.87
the exact SQL behind every number
SELECT
    formatDateTime(toStartOfMonth(date), '%Y-%m') AS month,
    round(avg(yield_1_month), 2)                  AS avg_1_month_yield_pct,
    round(avg(yield_3_month), 2)                  AS avg_3_month_yield_pct
FROM global_markets.treasury_yields
WHERE date >= toStartOfMonth(today() - 1090)
  AND date <  toStartOfMonth(today())
  AND yield_1_month > 0
  AND yield_3_month > 0
GROUP BY month
ORDER BY month
$