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

How Earnings Move Option Greeks
The Tesla $400 May call through its Q1 earnings (Apr 8 - May 6 2026)series · 2026-08-24 · 21×5Preview: a 16-point series, roughly flat. Tesla's 8-K filings across Q1 2026 (EDGAR index)table · 2026-08-24 · 4×3 Near-the-money Tesla May-expiry implied volatility around the printseries · 2026-08-24 · 21×3Preview: a 16-point series, ending higher.
The Tesla $400 May call through its Q1 earnings (Apr 8 - May 6 2026)

The Tesla $400 May call through its Q1 earnings (Apr 8 - May 6 2026)

most recentas of series 21×5read in context →
The Tesla $400 May call through its Q1 earnings (Apr 8 - May 6 2026) — 21 rows by 5 columns, computed from US exchange, SIP and OPRA data.
datetslacall_priceiv_pctdelta
2026-04-08341.174.4147.50.171
2026-04-09344.944.6546.70.181
2026-04-10351.34.8143.80.194
2026-04-13353.334.844.50.197
2026-04-143667.644.60.276
2026-04-15393.5719.4548.50.49
2026-04-16388.1816.5148.40.448
2026-04-17401.0921.546.10.543
2026-04-20392.416.2546.90.47
2026-04-21388.9913.745.40.436
2026-04-22386.313.7549.60.421
2026-04-23373.186.543.10.28
2026-04-24375.266.542.20.288
2026-04-27377.876.743.70.302
2026-04-28377.885.4340.50.278
2026-04-29372.84.0841.50.227
2026-04-30381.4641.40.306
2026-05-01391.348.739.90.412
2026-05-04391.898.6440.415
2026-05-05387.266.846.10.355
2026-05-06396.8510.246.30.476
the exact SQL behind every number
SELECT date,
       round(underlying_close, 2) AS tsla,
       round(option_close, 2) AS call_price,
       round(implied_volatility * 100, 1) AS iv_pct,
       round(delta, 3) AS delta
FROM global_markets.options_greeks
WHERE ticker = 'O:TSLA260515C00400000' AND date BETWEEN '2026-04-08' AND '2026-05-06' AND implied_volatility > 0.02
ORDER BY date
$