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

What Is Option Rho? The Interest Rate Greek
Weekly average rho: SPY January 2027 calls against a rolling front-month seriesseries · 2026-08-07 · 52×3Preview: a 16-point series, ending higher. Average SPY option rho by time to expiration, indexed to the front monthranking · 2026-08-07 · 6×4Preview: 6 ranked values, smallest first. Average rho on long-dated SPY options, by strike against the share priceranking · 2026-08-07 · 7×4Preview: 7 ranked values, largest first. Start-to-end change in Treasury yields by calendar year, in basis pointsranking · 2026-08-07 · 13×3Preview: 13 ranked values, smallest first.
Weekly average rho: SPY January 2027 calls against a rolling front-month series

Weekly average rho: SPY January 2027 calls against a rolling front-month series

most recentas of series 52×3read in context →
Weekly average rho: SPY January 2027 calls against a rolling front-month series — 52 rows by 3 columns, computed from US exchange, SIP and OPRA data.
weekleaps_call_rhofront_call_rho
2025-08-045.1250.288
2025-08-115.1490.324
2025-08-185.0910.294
2025-08-255.0640.276
2025-09-014.9610.252
2025-09-084.9130.263
2025-09-154.8620.279
2025-09-224.7070.257
2025-09-294.6760.261
2025-10-064.5820.285
2025-10-134.4630.278
2025-10-204.4620.267
2025-10-274.4390.281
2025-11-034.3030.272
2025-11-104.2270.277
2025-11-174.0070.275
2025-11-244.0850.285
2025-12-014.0660.278
2025-12-083.9640.268
2025-12-153.8570.273
2025-12-223.890.276
2025-12-293.7690.244
2026-01-053.7380.279
2026-01-123.6790.287
2026-01-193.5390.253
2026-01-263.5320.265
2026-02-023.4070.27
2026-02-093.3560.268
2026-02-163.2520.269
2026-02-233.1950.256
2026-03-023.0750.261
2026-03-092.9390.259
2026-03-162.8140.272
2026-03-232.6670.25
2026-03-302.6160.253
2026-04-062.7030.267
2026-04-132.750.349
2026-04-202.7340.288
2026-04-272.6810.292
2026-05-042.6610.354
2026-05-112.5950.34
2026-05-182.5250.303
2026-05-252.5190.3
2026-06-012.4240.286
2026-06-082.3010.288
2026-06-152.2990.312
2026-06-222.1240.275
2026-06-292.1150.278
2026-07-062.0580.303
2026-07-131.960.296
2026-07-201.8660.28
2026-07-271.7890.274
the exact SQL behind every number
SELECT
    toString(toMonday(date))                                       AS week,
    round(avgIf(rho, expiration_date = '2027-01-15'), 3)           AS leaps_call_rho,
    round(avgIf(rho, days_to_expiry BETWEEN 21 AND 45), 3)         AS front_call_rho
FROM global_markets.options_greeks
WHERE underlying_symbol = 'SPY'
  AND startsWith(lower(toString(option_type)), 'c')
  AND date >= '2025-08-04'
  AND date <  '2026-08-01'
  AND iv_converged = 1
  AND volume > 0
  AND abs(toFloat64(strike_price) / toFloat64(underlying_close) - 1) < 0.05
  AND (expiration_date = '2027-01-15' OR days_to_expiry BETWEEN 21 AND 45)
GROUP BY week
HAVING countIf(expiration_date = '2027-01-15') > 0
   AND countIf(days_to_expiry BETWEEN 21 AND 45) > 0
ORDER BY week
$