(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 lesson, you’ll learn how to identify and use channels as a technical analysis tool for spotting buying and selling opportunities. Channels are formed using parallel trend lines that connect points of support and resistance during price movements, and they’re frequently used by traders to determine optimal entry and exit levels.
There are three main types of channels you’ll explore in this lesson. A horizontal channel occurs when the trend line has a horizontal slope, indicating sideways price movement. An ascending channel forms during an uptrend, while a descending channel develops during a downtrend. One of the main indicators for identifying channels is the Bollinger bands, which we cover in detail in the indicators section.
Channels work by tracking how price moves within defined boundaries during trending periods. In an uptrend, the price records increasing highs and lows, while in a downtrend it shows decreasing highs and lows. You draw the channel by connecting the low points with a trend line in an uptrend, then using a parallel line to connect the maximum points. This creates a visual corridor that helps you anticipate where price movements may encounter resistance.
The practical benefit of channels is identifying where trends may lose strength. The basic concept is that trends cannot continue forever, and the meeting points with the channel boundaries represent resistance levels where pullbacks are likely to occur. This lesson demonstrates three real examples using the TradingView platform: a horizontal channel on Procter and Gamble stock, an ascending channel on Apple stock, and a descending channel on Tesla stock.
Video Chapters
00:00 – Introduction to channels and parallel trend lines
00:23 – Types of channels: horizontal, ascending, and descending
00:44 – How channels work during trend periods
01:06 – Resistance levels and pullback concepts
01:31 – Real trading examples on TradingView platform
Key Takeaways
Channels use parallel trend lines to connect support and resistance points for identifying trading opportunities
The three types of channels are horizontal, ascending (uptrend), and descending (downtrend)
Channel boundaries represent resistance levels where trends may lose strength and pullbacks occur
The Bollinger bands indicator is one of the main tools for identifying channels
Video Transcription
[00:00:00.05] - Speaker 1 In this lesson we introduce the concept of channels. A channel is designed using parallel trend lines to connect points of support and resistance during a trend or price movement. They are frequently used by traders as buying and selling levels. There are several types of channels or channels. Horizontal channel occurs when the trend line has a horizontal slope.
[00:00:23.11] - Speaker 1 Ascending channel, it occurs during an uptrend. Descending channel, it occurs during a downtrend. One of the main indicators for identifying channels are the Bollinger bands. We will talk about this later in the indicators section. Channels can be seen in periods of uptrend or downtrend or in periods of sideways trend.
[00:00:44.18] - Speaker 1 The idea is that during a trend period, the price of a security record's increasing highs and lows in the case of an uptrend and and decreasing highs and lows in the case of a downtrend. In an uptrend. The trend is drawn by connecting the low points. It is possible in many cases to use a parallel line to connect the maximum points. This allows us to draw the channel.
[00:01:06.26] - Speaker 1 The basic idea is that the trend cannot go on forever and the meeting points with the channel can represent resistance levels where the trend loses strength and what is called a pullback is created. Now let's do three examples using the TradingView platform. The first is a horizontal channel. We can see this example on the Procter and Gamble stock. The second example is a bullish or ascending channel.
[00:01:31.28] - Speaker 1 Here we look at the Apple stock. The last example is a bearish or descending channel. In this example we look at the Tesla stock. We'll talk about breakout points in the next few lessons. SA.
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":1773389350,"environment":"production"},"debug":{"enabled":true,"environment":"production"},"user":[],"container_id":"GTM-599ZCR89"};