(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
In this foundational lesson, you’ll discover the essential categories of trading indicators and learn how technical analysis tools can help you forecast price movements and make informed trading decisions. Understanding these indicators is crucial for developing effective trading strategies across any market.
We explore five main types of indicators used in technical analysis. Trend indicators like moving averages, MACD, and parabolic SAR help identify the direction and strength of a trend, though they are lagging indicators that provide signals after a trend has already started. Momentum indicators such as the RSI, stochastic oscillator, and CCI signal the strength of price movements and identify overbought or oversold conditions, but must be combined with other indicators to determine direction.
Volume indicators like On Balance Volume (OBV) and volume profile analyze trading volume to confirm trend validity and identify when trends may lose momentum. Volatility indicators including Bollinger Bands, Average True Range (ATR), and Keltner channels measure the rate of price changes. Finally, support and resistance indicators such as pivot points and Fibonacci retracement levels help identify price levels where securities tend to reverse.
While combining multiple indicators can enhance trading accuracy, one critical mistake is using too many indicators or multiple indicators of the same type. For example, combining RSI and stochastics—both momentum indicators—can lead to missed signals or false signals since they move similarly. The key is understanding that no perfect combination exists as market conditions change daily.
In the upcoming lessons, we’ll demonstrate practical applications of these indicators and share our proven approach based on real market experience, showing you exactly what to look for when analyzing price movements.
Video Chapters
00:00 – Introduction to trading indicators and technical analysis
00:28 – Trend indicators and lagging signals
00:54 – Momentum indicators and price strength
01:27 – Volume indicators and trend confirmation
01:51 – Volatility and support/resistance indicators
02:44 – Common mistakes when combining indicators
Key Takeaways
Trading indicators are mathematical calculations based on price, volume, or open interest used to forecast future price movements
The five main indicator types are trend, momentum, volume, volatility, and support/resistance, each serving different analysis purposes
Avoid combining too many indicators or multiple indicators of the same type, as this can generate false signals or cause you to miss important opportunities
No perfect indicator combination exists since market conditions change daily, requiring flexible strategy adaptation
Video Transcription
[00:00:00.05] - Speaker 1 In this lesson, we introduce you to trading indicators. Technical analysis offers several tools called trading indicators. Technical analysis indicators are mathematical calculations based on the price volume or open interest of a security or contract. They are used by traders to forecast future price movements and make trading decisions. Here are some of the most common types of technical analysis indicators.
[00:00:28.01] - Speaker 1 First, we have the trend indicators. These indicators help identify the direction and strength of a trend. Here we have the moving averages, the moving average, convergence divergence or macd and the parabolic sar. Trend indicators give us signals about possible entry points in an ongoing trend. However, trend indicators are based on past prices and therefore are defined as lagging indicators.
[00:00:54.05] - Speaker 1 Or they provide signals when the trend has already started and this can cause a delay in the signal. We then have momentum indicators. These indicators signal the strength of a price movement and help identify overbought or oversold conditions. Here we have the relative strength index or rsi, the stochastic oscillator and the commodity Channel index or cci. Momentum indicators are used to identify the strength of a possible price movement but do not give us information about its direction.
[00:01:27.16] - Speaker 1 For this, momentum indicators have to be combined with other types of indicators. Important indicators are the volume indicators. These are used to understand the strength of price movements by analyzing trading volume. Examples include the On Balance volume or OBV and the volume profile. Volume is a very important tool to use in our analyzes.
[00:01:51.25] - Speaker 1 It helps us confirm the validity of a trend and possible points of interest. It also helps us understand when a trend may lose momentum and reverse direction. We also have volatility indicators. These indicators measure the rate of price movements indicating how much the price is changing. Examples include Bollinger bands, Average true range or ATR and the Keltner channels.
[00:02:16.17] - Speaker 1 The last type are represented by the support and resistance indicators. These indicators help identify price levels where a security tends to stop moving and reverse. Examples include pivot points, support and resistance and Fibonacci retracement levels. Each indicator has its own methodology and is used in different scenarios. Traders often combine multiple indicators to enhance the accuracy of their trading strategies.
[00:02:44.21] - Speaker 1 One of the main mistakes of technical traders is to combine too many indicators or too many indicators of the same type. For example, if your strategy is based on RSI and stochastics, you are using two momentum indicators that move in a similar way and the risk is not to capture possible signals or to take risks when the generated signal is not the right one. There is no perfect combination of indicators as market conditions change every day. In the following lessons we will show you how we use them. Given our experience on the markets.
[00:03:18.18] - Speaker 1 We will show you what to look for in our approach.
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":1773455851,"environment":"production"},"debug":{"enabled":true,"environment":"production"},"user":[],"container_id":"GTM-599ZCR89"};