(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
In this article we will look at the importance of the Volatility Smile. Imagine SPY at 561 and MenthorQ shows a one-month vol curve sloping from 12.9 % on upside calls to 14.5 % at the money, to 16.1 % on downside puts. That is a 3.2 vol difference over roughly 5 % of strikes—a slope of about -0.9 vol per one-per-cent strike change. The live spot-vol regression, however, says realised beta is only -0.45. Translation: the smile is twice as steep as price history justifies. The market is over-paying for crash protection.
Strategy One: Risk-Reversal into Premium
Sell the 95-delta put and buy the 105-delta call, delta-hedged. If spot drifts sideways, theta collects on the overpriced put while vega bleed is smaller on the cheap call. If spot drops, the long futures hedge offsets part of the loss; if spot rallies hard, the long call wakes up.
Strategy Two: Skew Flattener Around Events
Ahead of macro data the entire surface lifts, but downside usually inflates faster. MenthorQ confirms by flashing a steepness alert. You can buy a narrow low-delta put spread and finance it with a short higher-vol wide call spread. If data land benign, implied vol collapses and the skew flattens; both legs decay, but the expensive puts lose more, leaving a net credit.
Spotting Directional Signals
Surface moves can foreshadow price. When downside vol spikes while ATM vol barely moves, dealers become short gamma and short vega at lower strikes. To hedge they sell futures into weakness, reinforcing the slide.Seeing that, you might tighten stops on longs or even ride the momentum with put spreads.
Surface and Time
Skew changes faster in weekly options than in monthlies. MenthorQ Term structure let’s you know where the action is. A steep weekly curve paired with a flat monthly curve suggests short-horizon fear: day-traders hedging news. The premium often fades within 24 hours, making short-dated iron condors attractive.
Remember Skew trades add vega and gamma risk.
Workflow Summary
Start the session by checking the Surface Steepness for your symbols. If any strike band flashes red or green, drill in. Compare live slope to historical beta; look for term-structure kinks. Build risk-reversals or spreads that target the mismatch and hedge deltas.
Conclusion
A volatility surface may look like a math object, but it is really a mood ring for the entire option market. Skew tells you where fear lives, where optimism shows, and where risk premiums hide.
Join us today
Access daily Market Research and our interactive Dashboard. Make better trading decisions.