(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
Capture Event Volatility Decay. Front-month options often become expensive before key events like earnings. Once the event passes, implied volatility drops — and front-month options lose value quickly. This setup lets you sell that inflated IV while keeping long exposure to future movement.
Defined Risk. The net debit (i.e., what you pay for the strategy) is your maximum loss. This is useful in markets where extreme events can hurt short premium strategies like naked calls or puts.
Directional Neutrality or Bias. Because straddles are centered at a single strike, the strategy is often delta-neutral. But you can bias it by moving the strike up (bullish) or down (bearish).
When to Deploy a Calendar Straddle Swap
Ahead of a Known Event (e.g., Earnings)
Imagine a stock like TSLA has earnings in two days. Front-month options expiring this Friday are trading at elevated IV, while next month’s options (back-month) trade at relatively normal IV.
Sell the front straddle (inflated premium).
Buy the back straddle (cheaper premium).
Post-earnings, if the stock stays near the strike and IV collapses on the front straddle, you may profit without needing a directional move.
Positive Gamma Regimes (Above Zero Gamma)
Traders can use tools like SpotGamma or MenthorQ’s Gamma Dashboard to identify environments with positive dealer gamma — meaning market makers are long gamma and less likely to exacerbate volatility.
A contained trading range becomes more likely in these environments, increasing the odds that the price remains near the strike through the front-month expiration.
The Role of Term Structure and Forward IV
A critical part of this strategy is exploiting the term structure of implied volatility — the shape of the IV curve across expirations.
For a calendar straddle swap to offer edge:
The front-month IV must be significantly higher than the back-month IV.
This difference is often due to event volatility in the front month.
Using Forward IV calculations, traders can determine whether the relative pricing is favorable:
Mastering the Long Calendar Straddle Swap 11
If Forward IV < Front IV, there is likely edge in selling front and buying back.
What Makes This Strategy Unique?
Unlike traditional calendar spreads, the straddle swap profits most when:
IV collapses on the front-month straddle
The underlying stays near the strike
Or realized volatility increases after the front expires (allowing the back straddle to gain value)
This gives traders a multi-phase approach to trading volatility:
Mastering the Long Calendar Straddle Swap 12
Comparisons and Considerations
Mastering the Long Calendar Straddle Swap 13
Real-World Example
Let’s say:
You’re trading AAPL at $175
IV for front month (1 week to earnings) = 45%
IV for back month (30 DTE) = 32%
You:
Sell 1 call and 1 put at 175 strike (front month)
Buy 1 call and 1 put at 175 strike (back month)
Net Debit = $2.00
Outcomes:
If AAPL trades within ±$5 after earnings, the front straddle collapses in value.
You profit from IV crush and can close early, or continue holding back-month straddle if a move is expected.
Risks and Trade Management
Theta Decay: While the front-month short straddle decays faster, the back-month long straddle also decays over time.
Implied Vol Repricing: If IV does not collapse post-event or rises instead, the strategy could suffer.
Directional Move: A strong directional move right after setup can hurt both sides before front straddle decays.
Conclusion
A Long Calendar Straddle Swap is best suited for event-driven IV setups, offering defined risk and a path to profit from front-month IV crush.
Combine this strategy with term structure analysis, dealer gamma positioning, and tools like MenthorQ’s Gamma Dashboard to find setups with edge.
As always, use proper risk management and size trades based on defined loss.