(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
Live Trading During the 2024 U.S. Presidential Election
Description
Trade one of the most volatile and headline-driven events in global markets with MenthorQ’s expert-led live session: Live Trading During the 2024 U.S. Presidential Election. Election outcomes can rapidly shift expectations around rates, inflation, fiscal policy, sector leadership, and risk sentiment—creating fast moves, false breakouts, and opportunity for traders who come prepared.
In this live session, you’ll learn how to build a structured, data-first game plan for election-driven volatility. We’ll focus on reading price action through key levels, managing risk when liquidity and spreads change, and staying disciplined when the news cycle is loud. Whether you’re a newer trader or a seasoned pro, you’ll walk away with a repeatable framework to trade the event with clarity and control.
Course Objectives
Understand Event-Driven Market Mechanics: Learn how election uncertainty impacts volatility, liquidity, correlations, and intraday behavior across index futures and major sectors.
Trade Around High-Impact Levels: Use MenthorQ Gamma Levels, Blind Spots, and Swing Levels to identify decision zones, likely magnet levels, and high-probability reaction areas.
Build an Election Trading Roadmap: Create a step-by-step plan for pre-event prep, live execution, and post-move management—so you’re not reacting emotionally to headlines.
Navigate Volatility With Discipline: Learn tactics for handling whipsaws, fakeouts, and wide ranges, including position sizing, invalidation points, and when not to trade.
Optimize Risk & Reward Under Pressure: Apply professional risk management rules for event nights—protect capital, manage drawdowns, and execute with consistency.
var menthorq_gtm = {"system":{"ajax_url":"https:\/\/menthorq.com\/wp-admin\/admin-ajax.php","nonce":"369163c911","site_url":"https:\/\/menthorq.com","home_url":"https:\/\/menthorq.com","timestamp":1773390535,"environment":"production"},"debug":{"enabled":true,"environment":"production"},"user":[],"container_id":"GTM-599ZCR89"};