(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 explore the different types of charts used in technical analysis and how timeframes shape your trading approach. Understanding chart types is fundamental to analyzing price movements and developing effective trading strategies across different time horizons.
The line chart is the simplest visualization, formed by connecting dots that represent the closing prices of an asset at different time intervals. This chart provides a clear visual representation of the overall price trend over time. The bar chart displays daily or intraday price movements using vertical bars, with each bar encompassing four crucial price points: the open, high, low, and close price for a given period, providing comprehensive information about price movements within the specified timeframe.
The Japanese Candlestick chart, also known as the candlestick chart, originated in 18th century Japan where rice traders used it to analyze price movements. Candlesticks offer a more intuitive and visually appealing representation compared to bar charts. Each candlestick consists of a body (either green or red representing the difference between opening and closing prices) and two wicks or shadows that extend from the body to identify the high and low prices. These charts provide valuable insights into market sentiment and help identify potential reversal zones, forming various patterns that traders use to analyze market behavior and make informed decisions.
The Heikin Ashi Candlesticks chart is a variation of the Japanese candlestick that uses a modified formula to calculate candlestick values. Unlike traditional candlesticks, Heikin Ashi candles consider price averages, resulting in smoother and less noisy price patterns that help traders mitigate market noise and obtain clearer trend signals.
The timeframe represents the period of duration of each candle, recording the maximum and minimum price points and related volumes. Timeframes can be seconds, minutes, days, or weeks, and they’re critical for creating strategies and defining your time horizon. For medium or long term investing, use one month, one week, or daily timeframes. For short term trading, 4 hour, 1 hour, or 30 minute timeframes work best. For day trading or scalping strategies, use 1 minute, 5 minutes, 10 minutes, and 15 minutes timeframes for trades lasting seconds or minutes.
Video Chapters
00:00 – Introduction to chart types
00:24 – Line chart explanation
00:38 – Bar chart structure and price points
00:55 – Japanese Candlestick chart origins and components
01:50 – Heikin Ashi Candlesticks chart
02:14 – Understanding timeframes and their applications
02:47 – Most used timeframes in technical analysis
Key Takeaways
The line chart connects closing prices for a simple trend view, while bar charts show four price points (open, high, low, close) per period
Japanese Candlestick charts use bodies and wicks to provide intuitive visual insights into market sentiment and potential reversal zones
Heikin Ashi candles smooth out price patterns by using price averages, reducing market noise for clearer trend signals
Your timeframe selection determines your trading style: longer timeframes for investing, shorter for day trading and scalping
Video Transcription
[00:00:00.05] - Speaker 1 In this lesson, we will look at.
[00:00:01.17] - Speaker 2 The different types of charts. There are different types of charts in technical analysis that we can use to analyze a stock. The most important are the line chart, Bar chart, Japanese Candlestick chart or candlestick chart Heikin Ashi Candles let's analyze them in detail. The line chart is formed by connecting.
[00:00:24.13] - Speaker 3 Dots that represent the closing prices of an asset at different time intervals.
[00:00:29.17] - Speaker 2 This simple chart provides a clear visual representation of the overall price trend over time.
[00:00:35.26] - Speaker 4 The bar chart displays daily or intraday.
[00:00:38.19] - Speaker 5 Price movements using vertical bars.
[00:00:41.14] - Speaker 2 Each bar encompasses four crucial price the.
[00:00:45.07] - Speaker 4 Open, the high, the low and the.
[00:00:47.20] - Speaker 5 Close price for a given period.
[00:00:49.24] - Speaker 2 This chart provides comprehensive information about price.
[00:00:52.29] - Speaker 3 Movements within the specified timeframe.
[00:00:55.29] - Speaker 2 Japanese Candlestick chart originating in 18th century Japan, the Japanese candlestick chart, also known as the candlestick chart, was initially used.
[00:01:06.18] - Speaker 5 By rice traders to analyze price movements.
[00:01:10.02] - Speaker 2 Candlesticks offer a more intuitive and visually appealing representation of price data compared to bar charts.
[00:01:17.12] - Speaker 5 Each candlestick consists of a body and two wicks. A also called shadows.
[00:01:22.21] - Speaker 2 The body, either green or red, represents.
[00:01:25.27] - Speaker 4 The difference between the opening and closing prices.
[00:01:29.15] - Speaker 6 The wicks extend from the body and.
[00:01:31.22] - Speaker 5 Identify the high and low prices within the selected timeframe.
[00:01:35.27] - Speaker 2 Candlestick charts provide valuable insights into market.
[00:01:39.20] - Speaker 3 Sentiment and help identify potential reversal zones.
[00:01:43.20] - Speaker 2 They form various patterns that traders use.
[00:01:46.19] - Speaker 5 To analyze market behavior and and make informed decisions.
[00:01:50.12] - Speaker 2 The Heikin Ashi Candlesticks chart is a variation of the Japanese candlestick.
[00:01:55.29] - Speaker 6 It uses a modified formula to calculate candlesticks values.
[00:02:00.07] - Speaker 2 Unlike traditional candlesticks, Heikin Ashi candles consider price averages resulting in smoother and less noisy price patterns. Traders often use this chart to mitigate.
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":1773456908,"environment":"production"},"debug":{"enabled":true,"environment":"production"},"user":[],"container_id":"GTM-599ZCR89"};