{"slug":"stocks-with-the-highest-option-premiums","qid":"collectable_premium","label":"collectable_premium","post_title":"stocks-with-the-highest-option-premiums","post_url":"/blog/stocks-with-the-highest-option-premiums#q-collectable_premium","columns":["symbol","premium_pct_of_strike","contract_volume"],"rows":[{"symbol":"SOXL","premium_pct_of_strike":12.78,"contract_volume":112},{"symbol":"MRNA","premium_pct_of_strike":9.84,"contract_volume":309},{"symbol":"CRWV","premium_pct_of_strike":9.23,"contract_volume":653},{"symbol":"BE","premium_pct_of_strike":8.81,"contract_volume":312},{"symbol":"BMNR","premium_pct_of_strike":8.72,"contract_volume":153},{"symbol":"ARM","premium_pct_of_strike":8.52,"contract_volume":204},{"symbol":"SNDK","premium_pct_of_strike":8.49,"contract_volume":453},{"symbol":"WDC","premium_pct_of_strike":8.4,"contract_volume":128},{"symbol":"RKLB","premium_pct_of_strike":8.08,"contract_volume":182},{"symbol":"ACMR","premium_pct_of_strike":7.98,"contract_volume":138},{"symbol":"HOOD","premium_pct_of_strike":7.97,"contract_volume":248},{"symbol":"MRVL","premium_pct_of_strike":7.69,"contract_volume":125}],"shape":"ranking","sql":"SELECT\n    underlying_symbol                                                       AS symbol,\n    round(100 * avg(toFloat64(option_close) / toFloat64(strike_price)), 2)  AS premium_pct_of_strike,\n    toUInt64(sum(volume))                                                   AS contract_volume\nFROM global_markets.options_greeks\nWHERE date = (SELECT max(date) FROM global_markets.options_greeks WHERE date >= today() - 30)\n  AND option_type IN ('call', 'C')\n  AND iv_converged = 1\n  AND volume > 0\n  AND days_to_expiry BETWEEN 25 AND 35\n  AND toFloat64(underlying_close) >= 5\n  AND abs(toFloat64(strike_price) / toFloat64(underlying_close) - 1) < 0.025\n  AND underlying_symbol NOT IN ('SPCX')\nGROUP BY underlying_symbol\nHAVING sum(volume) >= 100 AND count() >= 3\nORDER BY premium_pct_of_strike DESC\nLIMIT 12","computed_at":"2026-09-25T14:51:54.367267+00:00","elapsed":0.243773248}