(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
Menthor Q has crafted the Advanced Options Trading Masterclass, drawing on over two decades of financial market expertise, to furnish you with the essential tools and insights needed for successful trading. This comprehensive course is designed to enhance your trading acumen by delving into the intricacies of options data, ensuring you’re well-equipped for success in the trading arena.
In this comprehensive course, you will learn to navigate the complexities of options trading with a focus on reading the Greeks, such as Delta, Gamma, Theta, and Vega, to accurately assess risks and potential profits, thereby enhancing your decision-making skills and trading with greater confidence.
Course Objectives
Master Options Data: Understand the intricacies of options data and its significance in trading
Read the Greeks: Accurately assess risks and potential profits by mastering Delta, Gamma, Theta, and Vega
Analyze Volatility: Spot trading opportunities and determine optimal times to buy or sell options
Understand Market Makers: Gain insights into market structure, trends, liquidity, and order flow by tracking market makers’ activities
Construct Advanced Strategies: Develop strategies for directional moves, income generation, or hedging exposure
Integrate Big Data and AI: Enhance your trading strategies with innovative Menthor Q Models
Gain Practical Experience: Apply your knowledge through real-world examples and case studies
var menthorq_gtm = {"system":{"ajax_url":"https:\/\/menthorq.com\/wp-admin\/admin-ajax.php","nonce":"3e34dba168","site_url":"https:\/\/menthorq.com","home_url":"https:\/\/menthorq.com","timestamp":1773464332,"environment":"production"},"debug":{"enabled":true,"environment":"production"},"user":[],"container_id":"GTM-599ZCR89"};