(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
There are different types of charts in technical analysis that can be used to analyze a stock. The most important ones are the line chart, the bar chart, the Japanese candlestick chart, and the Heikin Ashi candlestick chart. Each chart type presents price information in a different way and serves a specific purpose.
Line Chart
The line chart is formed by connecting dots that represent the closing prices of an asset at different time intervals. This type of chart provides a simple and clear visual representation of the overall price trend over time. It is often used to identify general market direction without focusing on intraday price fluctuations.
Types of Charts in Technical Analysis 14
Bar Chart
The bar chart displays daily or intraday price movements using vertical bars. Each bar represents four key price levels: the open, the high, the low, and the close for a specific period. This chart provides more detailed information than a line chart and allows traders to analyze price behavior within a selected time frame.
Types of Charts in Technical Analysis 15
Japanese Candlestick Chart
Originating in 18th century Japan, the Japanese candlestick chart was initially used by rice traders to analyze price movements. Candlesticks offer a more intuitive and visually appealing representation of price data compared to bar charts.
Each candlestick consists of a body and two wicks, also known as shadows. The body, typically green or red, represents the difference between the opening and closing prices. The wicks extend from the body and indicate the high and low prices during the selected time frame.
Candlestick charts provide valuable insights into market sentiment and help identify potential reversal zones. They also form various patterns that traders use to analyze market behavior and make informed trading decisions.
Types of Charts in Technical Analysis 16
Heikin Ashi Candlestick Chart
The Heikin Ashi candlestick chart is a variation of the traditional Japanese candlestick chart. It uses a modified formula based on price averages, resulting in smoother and less noisy price patterns.
Traders often use Heikin Ashi candles to reduce market noise and obtain clearer signals regarding trend direction. In the next lesson, Japanese candlesticks and the advantages and disadvantages of Heikin Ashi candles will be analyzed in greater detail.
Types of Charts in Technical Analysis 17
Understanding Time Frames
The time frame represents the duration of each candle on a chart. During this period, the maximum and minimum price levels and the related trading volume are recorded.
Time frames can range from seconds to minutes, days, or weeks. Choosing the correct time frame is essential for developing trading strategies and defining a trading horizon.
The time frame outlines how trades are structured. Longer time frames are typically associated with long-term strategies, while shorter time frames are used for intraday or short-term trading.
Monthly, weekly, and daily time frames, often referred to as daily charts, are commonly used by investors with a medium or long-term perspective.
Four-hour, one-hour, and thirty-minute time frames are used by traders with a short-term trading horizon.
Time frames such as one minute, five minutes, ten minutes, and fifteen minutes are used by traders who engage in day trading or scalping strategies. These trades often last seconds or minutes.
Different chart types and time frames offer traders multiple ways to analyze price behavior and market structure. Understanding how to use line charts, bar charts, candlestick charts, and Heikin Ashi charts, along with selecting the appropriate time frame, is essential for building effective technical analysis strategies.