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

2,173 answered market questions

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

How Markets Price Fed Rate Odds
TLT call deltas read as implied probabilities: chain of Sep 15, 2025, expiring Sep 19ranking · 2026-08-03 · 9×4Preview: 9 ranked values, smallest first. Front-end Treasury yields by month, January 2024 to June 2026series · 2026-08-03 · 30×5Preview: a 16-point series, ending higher. Five-session move in short Treasury yields into each 2025 FOMC decision dayranking · 2026-08-03 · 8×3Preview: 8 ranked values, smallest first. The short end of the Treasury curve around the September 2025 FOMC meetingseries · 2026-08-03 · 42×4Preview: a 16-point series, ending lower.
TLT call deltas read as implied probabilities: chain of Sep 15, 2025, expiring Sep 19

TLT call deltas read as implied probabilities: chain of Sep 15, 2025, expiring Sep 19

most recentas of ranking 9×4read in context →
TLT call deltas read as implied probabilities: chain of Sep 15, 2025, expiring Sep 19 — 9 rows by 4 columns, computed from US exchange, SIP and OPRA data.
strikeimplied_prob_above_pctimplied_vol_pctcontract_volume
8597.828.748
8890.9161466
8981.215.3946
905913.811026
9130.715.25166
9216.315.69065
935.617.92195
943.721.61931
951.422.12739
the exact SQL behind every number
SELECT round(toFloat64(strike_price), 0) AS strike,
       round(avg(delta) * 100, 1) AS implied_prob_above_pct,
       round(avg(implied_volatility) * 100, 1) AS implied_vol_pct,
       sum(volume) AS contract_volume
FROM global_markets.options_greeks
WHERE underlying_symbol = 'TLT'
  AND date = toDate('2025-09-15')
  AND expiration_date = toDate('2025-09-19')
  AND delta > 0
  AND iv_converged = 1
  AND volume > 0
  AND abs(toFloat64(strike_price) / toFloat64(underlying_close) - 1) < 0.06
GROUP BY strike
ORDER BY strike
$