(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
Consider an OTM call and an OTM put, each with the same expiration. If the call’s IV is 15% and the put’s IV is 25%, the risk reversal value is -10%. This difference quantifies the skewness of the implied volatility smile.
Chart: Visualizing the Risk Reversal Smile
The Risk Reversal Smile 5
The visual highlights the implied volatility levels on the smile curve. The put, being more expensive in IV terms, reflects stronger demand for downside protection.
Why It Changes
This skew value isn’t static—it evolves as the underlying asset moves. Traders closely monitor RR values to infer:
Market sentiment (bullish or bearish tilt).
Relative pricing pressure on calls vs. puts.
Opportunity to exploit volatility mispricings.
Understanding the Shape: Interpreting the Smile and Its Tilt
The implied volatility smile reflects how market participants price risk across strikes. In equity markets, the curve often skews left—meaning OTM puts trade with higher IV than OTM calls. This “smile” shape emerges because traders are more fearful of crashes than euphoric about rallies, and are thus willing to pay more for downside protection.
The risk reversal (RR) value, calculated as the IV of the call minus the IV of the put (typically equidistant from the spot), captures this asymmetry. A negative RR implies higher demand for puts, often signaling bearish sentiment or institutional hedging activity. Conversely, a positive RR suggests greater interest in calls, which may reflect speculative bullish bets or covered call unwinding.
Why It Changes: Drivers of Risk Reversal Skew
Several factors influence Risk Reversal shifts:
Market direction: Sharp drops often steepen the put wing of the smile, as hedging demand surges.
Volatility regime shifts: Rising implied volatility tends to increase skew as downside protection gets repriced aggressively.
Event risk: Earnings reports, FOMC meetings, or geopolitical headlines can distort the smile ahead of time, as traders position for asymmetrical outcomes.
Flow-based pressure: Dealer positioning and systematic vol selling (e.g., in options-based ETFs or structured products) can skew the RR profile temporarily.
Strategic Applications: Reading and Trading the Skew
Traders monitor RR values for sentiment confirmation or divergence. For example, if markets are grinding higher but RR remains deeply negative, it may indicate skepticism beneath the surface—a cautionary flag for bulls. Conversely, a rising RR in a choppy tape could suggest hidden demand for upside optionality, signaling early rotation or positioning shifts.
Advanced volatility traders also structure trades around the skew. A bullish trader may enter a risk reversal trade—long call, short put—to profit from a reversal in skew as well as direction. Others may construct volatility arbitrage positions, exploiting mispricings between wings of the smile.
Conclusion: Skew as a Sentiment Gauge
The risk reversal smile is more than a technical detail—it’s a numeric measure of market risk preference. Traders use it to anticipate shifts in demand for protective puts versus speculative calls, making it a vital part of any volatility toolkit.
Join us today
Access daily Market Research and our interactive Dashboard. Make better trading decisions.