(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":["/account/","/login/","/thank-you/","/wp-json/openid-connect/userinfo","wp-admin","wp-login.php"]};
//# sourceURL=breeze-prefetch-js-extra
Iron Condor Illusion: When A Theta Trade Is Really Delta
Iron condors are often described as classic theta trades. Limited risk. Defined range. Collect premium while the market goes nowhere. That is the textbook version.
In practice, many iron condors are not pure time-decay trades at all. They are directional trades disguised by a symmetric payoff diagram.
The difference is subtle at entry, but it matters a great deal once the position is live.
The Iron Condor Illusion 5
How A “Neutral” Condor Becomes Directional
Consider a common scenario. The market sells off sharply. Implied volatility rises. You sell a put spread because the premium looks attractive. Later, the market bounces. You add a call spread to “complete” the iron condor.
On the surface, you now have both sides. The expiration graph looks balanced.
But the entry was not neutral. The trade was built around price movement. Each leg was added in reaction to direction. The position likely carried a meaningful Delta at inception, even if the final structure appears symmetric. That is not inherently wrong. But it is not a pure theta trade. It is a directional trade with positive time decay layered on top.
What A Theta Trade Actually Requires
A true theta position typically begins close to flat Delta. It is entered in a volatility regime where implied volatility is rich relative to realized volatility. The trader is consciously willing to hold short gamma within a defined range.
The expectation is simple. The market goes nowhere. If it moves, it mean reverts quickly. Dealer hedging flows support that range-bound behavior.
In that context, time decay is the primary source of return. Direction is secondary and ideally minimal.
If the position begins with significant Delta exposure, the PnL will depend heavily on direction. Time decay becomes supportive rather than central.
The Danger Of Legging In
When you do not enter both sides of a short volatility structure simultaneously, you change the nature of the trade.
If one side fills and the other does not, you are temporarily carrying directional exposure. If the market moves further before you complete the structure, the final position reflects that path.
As a rule of thumb, if you cannot enter both sides together, you are not trading pure theta. You are trading Delta first and hoping to collect theta along the way.
There is nothing inherently wrong with trading Delta. But mislabeling it creates confusion about where your edge is supposed to come from.
Regime Matters More Than Structure
Imagine a scenario where a broad index with five days to expiration has seen realized volatility exceed implied volatility for two consecutive sessions. Downside skew is bid. Premium appears elevated.
On the surface, selling an iron condor looks tempting. Implied volatility seems attractive.
But if realized volatility is already running hot and the spread between implied and realized is not wide enough to compensate for gamma risk, the trade becomes fragile. You are effectively betting that realized volatility will collapse quickly.
That is a directional volatility view, not a passive theta harvest.
In that environment, a trader focused on pure theta would look for additional confirmation from the options market. Large long gamma exposure near current price can anchor the market. Fixed-strike implied volatility dropping can confirm that dealer positioning favors stability.
Without those structural supports, you are relying more on hope than on positioning dynamics.
Know What You Are Holding
If your iron condor carries plus 30 Delta at entry, you are long direction with capped upside and positive time decay. That is a defined exposure. It is not neutral. Own it for what it is.
You can trade Delta. You can trade Theta. Both can be valid approaches. But clarity matters.
A condor that behaves like a directional trade should be evaluated as such. If you believe you have edge in timing directional moves, then manage it that way. If your edge is in harvesting volatility risk premium, then structure the position to reflect that intent from the start.
Break It Into Greeks First
Before labeling a structure as a theta trade, decompose it into Greeks.
What is the Delta at entry?
How much gamma are you short?
Is implied volatility meaningfully rich relative to realized?
Is dealer positioning supportive of range-bound behavior?
Only then decide what you are actually trading.
Conclusion
An iron condor is not automatically a theta trade. It becomes one only when entered and managed with neutrality and volatility context in mind. If you leg into the structure after price moves, you are likely carrying directional exposure whether you admit it or not.
The payoff diagram may look balanced. The Greeks may not be. Trade Delta if you want. Trade Theta if you prefer. Just do not confuse the two.