(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
GEX and DEX are two different factors that investor can use to understand market makers exposure.
Understanding Delta Exposure (DEX)
1. Definition
DEX (Delta Exposure) measures the overall directional bias of an options portfolio. If your portfolio’s net delta is positive, you stand to gain if the underlying price rises; if it’s negative, you benefit when the price falls.
2. Interpretation and Use
Directional Risk: A portfolio with a net positive delta has bullish exposure, while one with a net negative delta is effectively bearish.
Liquidity Flows: Large institutions and market makers often hedge their net delta, buying or selling the underlying as prices fluctuate. Observing net DEX across the market can hint at whether market makers are likely to add buying pressure (if they’re net short delta) or selling pressure (if they’re net long delta) as the price moves.
Immediate Price Moves: Because delta measures how much an option’s price changes per $1 move in the underlying, high net DEX can highlight where short-term volatility spikes may emerge if prices approach large open-interest strikes.
Understanding Gamma Exposure (GEX)
1. Definition
GEX (Gamma Exposure) measures the sensitivity of delta to changes in the underlying’s price. In other words, it tracks how quickly delta itself will shift when the underlying moves.
2. Interpretation and Use
Market Volatility: Positive GEX tends to dampen volatility, because market makers who are long gamma buy the underlying on dips and sell on rips, stabilizing price movements. Negative GEX can amplify volatility, since market makers who are short gamma do the opposite (sell on dips, buy on rips).
Self-Hedging Effect: When GEX is high and positive, the portfolio’s delta “auto-adjusts” to mitigate the impact of the underlying’s price changes, making price swings less dramatic. Conversely, a large negative gamma position means the portfolio’s delta magnifies price moves, contributing to sharper swings.
ATM vs. OTM: Gamma is typically highest at strikes near the current underlying price (ATM). Far out-of-the-money (OTM) or deep in-the-money options have lower gamma, meaning their delta changes less rapidly with each incremental price move.
Are GEX and DEX the Same Thing? 5
Key Differences Between DEX and GEX
1. Focus
DEX: Evaluates the current directional bias—how much the portfolio gains or loses from a small move up or down in the underlying.
GEX: Evaluates how that directional bias changes as the underlying moves further. It’s a sensitivity of sensitivity, capturing the second-order effect.
2. Risk Dimension
DEX: Indicates how a $1 movement in the underlying affects the portfolio’s value right now.
GEX: Indicates how that effect itself will fluctuate if the underlying continues to move, thus influencing future hedging behavior and potential volatility.
3. Market Impact
DEX: Large net long delta might mean the market maker is short the underlying and must buy it to hedge if the price rises (or vice versa).
GEX: Large net short gamma often leads to increased volatility because market makers chase the move, accelerating price changes. Large net long gamma usually dampens volatility for the opposite reason.
Practical Example
Imagine the S&P 500 (SPX) trades at 4300, and large open interest accumulates at the 4300 and 4350 strikes.
DEX Analysis: If the market’s net delta exposure at 4300 and 4350 is strongly positive, it means many positions will benefit from an upward move. Market makers, therefore, might be short those calls, so if SPX rallies, they must buy the underlying to hedge, pushing the price even higher.
GEX Analysis: If GEX is negative, it indicates that these same market makers are short gamma. As SPX rises, they face the need to buy more shares to hedge delta—further fueling the rally. Conversely, if the market dips below 4300, they must sell shares, exacerbating the decline. Price action becomes more extreme in both directions.
Conclusion
GEX (Gamma Exposure) and DEX (Delta Exposure) each serve different analytical purposes. DEX centers on the current directional bias, revealing who may be forced to buy or sell the underlying immediately. GEX measures how quickly that directional bias changes, influencing how much hedging pressure might intensify or dampen price swings over the course of a move.
Traders who understand both can better predict intraday volatility, identify potential support/resistance levels where large hedging flows might occur, and manage risk more effectively in a dynamic options market.
Join us today
Access daily Market Research and our interactive Dashboard. Make better trading decisions.