(function(){
var COOKIE_NAME = 'menthorq_utm_params';
var LS_KEY = 'menthorq_utm_params';
var UTM_KEYS = ['utm_source','utm_medium','utm_campaign','utm_term','utm_content','utm_id'];
var CLICK_ID_KEYS = ['gclid','fbclid','msclkid','ttclid'];
var COOKIE_DAYS = 30;// Read UTM parameters and click IDs from current URL
var params = new URLSearchParams(window.location.search);
var trackingData = {};
var hasData = false;
var allKeys = UTM_KEYS.concat(CLICK_ID_KEYS);
for (var i = 0; i < allKeys.length; i++) {
var val = params.get(allKeys[i]);
if (val) {
trackingData[allKeys[i]] = val;
hasData = true;
}
}if (hasData) {
// Fresh tracking data found in URL — store it (overwrites previous attribution)
trackingData.captured_at = new Date().toISOString();
setCookie(COOKIE_NAME, JSON.stringify(trackingData), COOKIE_DAYS);
try { localStorage.setItem(LS_KEY, JSON.stringify(trackingData)); } catch(e) {}
return;
}// No tracking params in URL — check if cookie exists
if (getCookie(COOKIE_NAME)) return;// Cookie is missing (expired or first visit) — try to restore from localStorage
try {
var stored = localStorage.getItem(LS_KEY);
if (stored) {
var parsed = JSON.parse(stored);
if (parsed && (parsed.utm_source || parsed.gclid || parsed.fbclid || parsed.msclkid || parsed.ttclid)) {
setCookie(COOKIE_NAME, stored, COOKIE_DAYS);
}
}
} catch(e) {}// Helper: set cookie
function setCookie(name, value, days) {
var expires = new Date(Date.now() + days * 864e5).toUTCString();
var cookie = name + '=' + encodeURIComponent(value) + ';expires=' + expires + ';path=/;SameSite=Lax';
if (location.protocol === 'https:') cookie += ';Secure';
document.cookie = cookie;
}// Helper: get cookie value (returns empty string if not found)
function getCookie(name) {
var match = document.cookie.match(new RegExp('(?:^|; )' + name + '=([^;]*)'));
return match ? decodeURIComponent(match[1]) : '';
}
})();
var breeze_prefetch = {"local_url":"https://menthorq.com","ignore_remote_prefetch":"1","ignore_list":["/wp-json/openid-connect/userinfo","wp-admin","wp-login.php"]};
//# sourceURL=breeze-prefetch-js-extra
The Binomial Hedge: Bootstrapping Toward Black-Scholes
Start with a toy world: a $100 stock that can jump to $200 or drop to $50. A call with a $120 strike will be worth $80 in the up-state and zero in the down-state. Create a hedged portfolio long one call and short delta shares so its value is the same in either scenario.
Solve for delta—roughly 0.53 in this example—and note that the hedged portfolio has no market risk. In a frictionless world it must earn the risk-free rate, implying a unique present value for the call independent of investors’ growth expectations for the stock.
Extend the time steps to infinity and let the up and down moves shrink to infinitesimal percentages and you recover the continuous-time Black-Scholes formula: Call = SN(d1) − Ke^−rt N(d2). The beauty is what drops out: expected return μ.
Because any trader can delta-hedge, no rational buyer will pay more for an option based on bullish drift, nor will a seller accept less because of bearish drift. Volatility, in contrast, cannot be hedged away without trading another option, so it becomes the sole price driver.
Volatility as a Slow-Moving State Variable
Stock returns are noisy and unpredictable; realised volatility is noisy too but far less so, and its forecasts beat those of price direction by wide margins. MenthorQ capitalises on this stability by mapping every option’s market price to a single implied‐vol number. An entire SPX options chain, with hundreds of strikes and maturities, collapses into a surface of σ values that evolve much more smoothly than raw premiums. That transformation is what lets traders scan for anomalies in milliseconds.
d1, d2 and Risk-Neutral Probabilities
Within Black-Scholes, d2 represents the z-score of the strike in a world where the stock drifts at the risk-free rate. N(d2) therefore reads as the risk-neutral probability the option finishes in the money.
MenthorQ’s tools overlay leverages exactly that calculation to label every strike with its implied odds. When you see an out-of-the-money Amazon call marked thirty per cent, remember those odds are risk-neutral—they bake in volatility but ignore any assumed equity risk premium. Recognising that distinction keeps you from misreading market prices as direct forecasts.
Why Volatility Mismatches Persist
If options could be hedged perfectly and frictionlessly, arbitrage would equalise implied volatility across strikes instantly. In practice frictions—transaction costs, balance-sheet constraints, discrete hedging—leave pockets where some series price too rich or too cheap.
MenthorQ’s GEX charts often show single-stock weeklies inflating before earnings while farther-dated maturities lag. A trader can buy the underpriced tenor, sell the overpriced, and hedge residual vega risk much more cheaply than guessing direction.
From Model to Trade with MenthorQ
Open the platform’s Vol-Surface and sort by sigma rank: Tesla weekly options might quote 95 per cent implied while their one-month cousins mark 70 per cent. Historical realised vol over the past month sits at sixty. A calendar spread that shorts the 0-DTE overpricing against long one-month vega carries positive theta and a clear catalyst: time decay plus post-earnings IV crush.
Alternatively, scan the Index Gamma. If SPX sits inside a fat positive-gamma zone and implied vol is collapsing, iron-condor premium may be under pressure. But if negative gamma looms just overhead and event-vol is rising, the same condor could be dangerous, signalling a shift to debit trades like calendars or broken-wing butterflies.
Key Lessons for Practitioners
First, embrace hedging logic: anything that can be neutralised will not earn a premium. Your P&L should ride on the few risks that remain, principally volatility. Second, treat implied volatility as a language for comparing options across symbols and maturities. Third, use MenthorQ’s suite to locate where that volatility is misaligned, then structure spreads that isolate the mispricing while flattening everything else.
Black-Scholes–Merton is more than a pricing formula; it is a lens that converts wild price paths into a single tradable statistic. Master that lens, and as Jeff Yass says, you become more competitive wherever decisions under uncertainty must be made—not only in options markets but in any domain where variance can be hedged, priced, and ultimately traded.
Join us today
Access daily Market Research and our interactive Dashboard. Make better trading decisions.