(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
The fundamental concept behind continuation patterns is understanding the force that moves price. The price of an asset is determined by the interaction between supply and demand. When buyers and sellers temporarily reach equilibrium after a strong move, consolidation occurs, setting the stage for continuation patterns to form.
Main Continuation Patterns
The primary continuation patterns are triangles, flags, pennants, wedges, and rectangles. These patterns reflect periods of consolidation before price resumes its dominant trend.
Trend Continuation Patterns Explained Clearly 11
Triangle Patterns
Triangles are among the most reliable formations in technical analysis. They are drawn by connecting support and resistance lines, and the slope of the triangle helps interpret buyer and seller behavior. The breakout of support or resistance represents a key moment that often brings renewed momentum to price.
There are three types of triangles: symmetrical triangles, ascending triangles, and descending triangles. These patterns can last from a few days to several weeks or even months.
A symmetrical triangle forms when price creates higher lows and lower highs at the same time, causing trendlines to converge. This pattern reflects market indecision. If it forms during an uptrend and breaks upward, it acts as a continuation pattern. If it breaks downward, it may signal a trend reversal. The same logic applies when a symmetrical triangle forms during a downtrend.
The ascending triangle forms during uptrends when the market produces higher lows while highs remain capped by a horizontal resistance level. Rising demand pushes price toward resistance, and a breakout above this level signals trend continuation.
The descending triangle forms during downtrends when price creates lower highs while finding repeated support at the same level. Sellers dominate, and when price breaks below support, it signals continuation of the downtrend. In rare cases, a breakout in the opposite direction can result in a trend reversal.
Regardless of the triangle type, the key focus is the breakout point and the strength of the move. Breakouts should be confirmed by volume.
Flags are continuation patterns characterized by a rectangular structure where price moves between two parallel trendlines. These lines may be horizontal or slope against the prevailing trend. Flags typically form after a strong price move, representing a short consolidation before the trend resumes.
There are two main types of flags: bull flags and bear flags.
A bull flag appears after a strong upward move. Price then consolidates within a narrow range, forming the flag. Once price breaks above the upper boundary, the uptrend resumes. In the example of Apple stock, the breakout of the bull flag signals continuation and offers a bullish trading opportunity.
A bear flag forms after a strong downward move. Price consolidates within parallel lines before breaking below the lower boundary. This breakout signals continuation of the downtrend. Traders often enter short positions after confirmation, placing stop-loss orders above the flag to manage risk.
Pennant Patterns
Pennants are similar to flags but take on a triangular shape due to converging trendlines. Like flags, pennants form after strong price moves and represent brief consolidation periods.
A bull pennant forms after a strong upward move, followed by consolidation within converging trendlines. A breakout above resistance signals resumption of the uptrend.
A bear pennant forms after a strong downward move and consolidates within converging trendlines. A breakout below support signals continuation of the downtrend.
Wedges
Wedges are variations of flags and pennants and follow similar principles. They represent consolidation phases that typically resolve in the direction of the prevailing trend.
Rectangle patterns are formed when price oscillates between two parallel horizontal lines, representing static support and resistance. These patterns reflect extended periods of consolidation caused by a strong clash between buyers and sellers.
Rectangles can persist for long periods and appear as either bullish or bearish patterns.
A bullish rectangle forms during an uptrend. Price consolidates within the range before breaking out above resistance, signaling continuation of the uptrend and presenting long entry opportunities.
A bearish rectangle forms during a downtrend. Price consolidates before breaking below support, signaling continuation of the downtrend and presenting short entry opportunities.
Conclusion
Continuation patterns represent pauses within strong trends, offering traders opportunities to rejoin the dominant price direction. By understanding triangles, flags, pennants, wedges, and rectangles, traders can better anticipate breakouts and manage risk effectively. In the next lesson, we will focus on trend reversal patterns.
Ask Quin to find our more about Trend Continuations.
Join us today
Access daily Market Research and our interactive Dashboard. Make better trading decisions.