(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
Baskets of stocks are at the core of this guide, which highlights how one of MenthorQ’s dedicated users, Simon, uses the Options Screeners to trade groups of names rather than single securities. In this post, we’ll break down how he builds and manages baskets of stocks and ETFs using MenthorQ’s tools.
Check out the full video below.
Creating Baskets using MenthorQ Options Screeners
Simon began leveraging MenthorQ’s screeners after participating in a MenthorQ Trading Challenge. The challenge sparked the idea of creating macro collections of stocks and ETFs, using the data provided by MenthorQ. By focusing on institutional levels such as put support and gamma changes, Simon started constructing baskets of equities that aligned with institutional strategies.
To manage these baskets, Simon uses Fidelity’s basket tool, which allows him to automatically equal-weight stocks and ETFs. This helps him manage risk and track performance across multiple assets with ease.
He begins with an initial investment in a basket, usually around $10,000. Once the basket increases by 5%, he sells most of the position—typically around $9,500—leaving him with discounted shares. This strategy allows him to reallocate capital to new baskets while keeping his risk low.
One of Simon’s key tools is MenthorQ’s Put Support Screener, which helps him identify stocks nearing key levels. This screener provides a list stocks that are close to the put support levels, making it easier for him to develop a clear plan.
Key Takeaways:
Focus on Institutional Levels: Simon’s success stems from his focus on institutional data like put and gamma levels, which offer strategic entry and exit points.
Diversify with Baskets: By mixing stocks from different industries, Simon minimizes risk and creates balanced portfolios.
Leverage MenthorQ’s Screeners: The daily updates from MenthorQ’s screeners provide Simon with fresh trading ideas and valuable insights.
Aim for Small, Consistent Wins: Simon’s “Rich Dad, Poor Dad” strategy helps him lock in gains regularly while keeping his risk low.
Join us today
Access daily Market Research and our interactive Dashboard. Make better trading decisions.