(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":["/wp-json/openid-connect/userinfo","wp-admin","wp-login.php"]};
//# sourceURL=breeze-prefetch-js-extra
Bulls, or buyers, represent market participants who are interested in buying an asset. Their actions drive the price higher as demand increases.
Bears, or sellers, represent market participants who are interested in selling an asset. Their actions push the price down as supply outweighs demand.
Key Terms in Technical Analysis 14
Trends and Price Action
Trends are a very important concept in technical analysis and will have a dedicated section later. A trend represents the movement or direction of the price of an asset or market and reflects the price action of a security.
There are different types of trends. A bullish trend, also called an uptrend, is characterized by a series of higher highs and higher lows on a price chart. Each successive peak and low is higher than the previous one, allowing traders to visually follow the upward movement of price.
A bearish trend, or downtrend, represents a downward movement of a market or security. It is characterized by decreasing highs and decreasing lows, showing sustained selling pressure.
Prices do not always move up or down. In a horizontal or sideways trend, the market fluctuates within a price range. This occurs when there is indecision between buyers and sellers and no clear market direction.
Another important concept is the trendline. A trendline is a line that acts as support or resistance and helps determine the development of a trend. During a trend, it is possible to connect maximum and minimum points with a trendline.
Trendlines can be drawn in both uptrends and downtrends and help visualize the direction and strength of price movement.
Key Terms in Technical Analysis 16
Technical Indicators
A word that always comes up in technical analysis is indicators. A technical indicator is a mathematical calculation based on historical price and volume data that aims to predict the direction of price. Indicators are widely used by traders, and an entire section of the course is dedicated to understanding how they work.
Support and Resistance
Support and resistance are among the most important concepts in technical analysis and are used to analyze supply and demand.
Support is a price level where there is historically a concentration of demand. It acts as a price floor, meaning that when price approaches this level, buying interest tends to prevent further decline. Support represents the point where buyers are willing to enter the market.
Support levels are identified by observing previous lows, trendlines, or areas where price has historically stalled and reversed. When price breaks below a significant support level, it is often interpreted as a bearish signal.
Resistance is a price level where there is historically a concentration of supply or selling interest. It acts as a price ceiling, meaning that when price approaches this level, selling pressure tends to prevent further upward movement.
Resistance levels are identified through previous highs, trendlines, or areas where price has previously reversed. When price breaks above a significant resistance level, it is often interpreted as a bullish signal.
Traders use support and resistance to plan trades, buying near support and selling or shorting near resistance. These levels are not fixed and can change as market conditions evolve.
A breakout refers to a significant price movement beyond a well-established support or resistance level. It signals the potential end of a consolidation phase and the beginning of a new trend.
A bullish breakout occurs when price moves above resistance, indicating that buyers have overwhelmed sellers. A bearish breakout occurs when price moves below support, indicating increased selling pressure.
To confirm a breakout, traders often look for increased trading volume. Higher volume suggests stronger participation and a more reliable breakout.
Key Terms in Technical Analysis 17
Chart Patterns
Chart patterns are distinctive formations created by price movements on a chart. They are foundational elements in technical analysis and are used to identify trends and predict future price movements. These patterns are formed by connecting closing prices, highs, and lows.
Conclusion
Understanding these key terms is essential for applying technical analysis effectively. Concepts such as trends, support and resistance, breakouts, indicators, and chart patterns provide the tools needed to interpret price action and market behavior. In the next lessons, these elements will be combined to build a complete technical analysis framework.