(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 Levels , or Gamma Exposure, is an important concept in options trading because it provides insights into how market participants’ positions in options can impact market dynamics and price movements.
GEX Levels act as secondary structure—levels where dealer hedging flows can cause:
Price stalling
Sharp intraday reactions
Temporary pinning or volatility spikes
Even if not the “main ceiling or floor,” these strikes often serve as:
Intraday turning points
Scalp targets
Zone boundaries for stop or exit logic
GEX Levels 1 to 10 5
GEX represents the aggregate gamma exposure of options market participants and can have significant implications for market behavior and stability. GEX can influence market movements and price dynamics.
When GEX is significantly positive, it means that market participants have a collective bullish bias, and as the underlying asset’s price rises, they may need to buy more of the asset (delta hedging), potentially fueling further upward price momentum.
When GEX is significantly negative, it suggests a bearish bias, and price declines can be significant as market participants sell to hedge their positions.
GEX can influence the “pinning” of options to certain strike prices near expiration. Market makers may use GEX data to manage their positions to maximize their profits, potentially leading to options prices gravitating toward specific strike prices.
This is why with Menthor Q Models you can follow GEX and together with the analysis of Positive and Negative Gamma you can better define your trading strategy and trading range.
When looking at GEX and Gamma Levels it’s important to consider how the collective gamma exposure (GEX) of market participants impacts the gamma (sensitivity) of their options positions.
High GEX may result in more pronounced changes in the delta (higher gamma levels) for those with options positions. High gamma levels indicate positions that are sensitive to price changes and, therefore, may require more frequent adjustments.
Low GEX could lead to less sensitivity in delta (lower gamma levels) for the options positions held by market participants. Low gamma levels imply positions that are less sensitive and may require fewer adjustments.
How to trade GEX Levels 1 to 10
We have created a tutorial video on how to trade GEX Levels 1 to 10.
We also have some additional in-depth video tutorial.