Visualisation from bbycroft.net/llm – Annotated with Nano Banana Welcome to the LLM Architecture Series This comprehensive 20-part series takes you from the fundamentals to advanced concepts in Large Language Model architecture. Using interactive visualisations from Brendan Bycroft’s excellent LLM Visualisation, we explore every component of a GPT-style transformer. Series Overview Part 1: Foundations (Articles 1-5)…
A Professional Chart Patterns Playbook: Checklist, Review, and Deployment
Chart Patterns Course – Chapter 10 of 10. The final chapter is not about finding a better shape. It is about behaving like a professional once you have one. Most trading damage happens after the idea. It happens in sizing, execution, emotional override, inconsistent review, and sloppy deployment. A playbook exists to make those failures less likely.

The One-Page Setup Sheet
A professional pattern setup should fit on one page. Instrument universe, timeframe, regime filter, pattern definition, trigger, invalidation, size rule, target logic, order type, and no-trade conditions. If a setup needs eight paragraphs of improvisation every time it appears, you do not have a process. You have a mood.
This one-page principle is useful because it compresses the entire course into an executable object. The setup sheet answers what you trade, when you trade it, how you enter, how you size, how you exit, and under what conditions you refuse the trade. The refusal conditions are especially important. Professional behaviour is defined as much by what you decline as by what you execute.
Checklist Before The Order
Before any chart-pattern trade, the checklist should force explicit answers. Is the higher-timeframe regime aligned? Is the level meaningful? Is liquidity sufficient for the intended size? Is invalidation clear? Does the payoff survive realistic costs? Is this a valid setup or merely a familiar-looking shape? The value of a checklist is that it catches bad trades while they are still only thoughts.
This is where institutional risk-management material becomes surprisingly useful for retail education. SEC market-access rules, FINRA best-execution guidance, and CME pre-trade risk controls all point toward the same cultural truth: good trading is not just signal generation. It is a controlled process with thresholds, permissions, reviews, and emergency stops. You may not need the legal machinery of a broker-dealer, but you absolutely need the mindset.
Hard Limits Save Soft Minds
A playbook should define maximum risk per trade, maximum daily loss, maximum open exposure, and which products are allowed. If you trade correlated instruments, that correlation should be reflected in exposure limits. If you trade during certain sessions only, that belongs in the rules. If you know you lose discipline around major scheduled events, then event filters belong in the process too. Good controls feel restrictive right until the day they save you.
CME’s kill-switch and pre-trade control frameworks are especially useful as metaphors for personal trading discipline. Your account may not have an exchange-grade kill switch, but your process should have an equivalent: a point at which trading stops, not because the market is evil, but because your process is no longer behaving as designed.
Deployment Should Be Staged
The worst possible way to deploy a new pattern setup is to discover it, love it, and then immediately size up because the backtest was “obvious.” A better deployment ladder is simple: paper or journal rehearsal, then very small live size, then gradual scaling only after enough trades confirm that the live behaviour resembles the expected one. This matters because execution, slippage, psychology, and missed signals all behave differently in live conditions.
Versioning matters too. If you change the trigger, the filter, or the exit, you are not trading the same setup anymore. Treat it as a new version. This habit prevents one of the most common forms of self-deception in discretionary trading: quietly changing the rules while continuing to claim continuity with old results.
Post-Trade Review Should Classify, Not Just Judge
Most traders review trades too emotionally. They ask whether the trade made or lost money. A better review asks what kind of event occurred. Was it a valid setup executed well that simply lost? Was it a valid setup executed badly? Was it an invalid setup that should not have been taken? Was the regime wrong? Did slippage ruin the edge? Did the trader override the stop or front-run the trigger? Classification turns review into improvement instead of self-scolding theatre.
trade_review = {
"setup_valid": True,
"execution_error": False,
"regime_aligned": True,
"discipline_breach": False,
"net_result_r": -1.0
}
That last example looks dry, which is precisely why it works. Emotionally dramatic reviews often generate stories. Structured reviews generate data.
Professional Means Repeatable
In this course, “professional” does not mean wearing a suit to lose money more elegantly. It means your behaviour is repeatable under pressure. Your setup definition is stable. Your risk process is explicit. Your execution logic is deliberate. Your review loop is real. Your deployment is staged. Your exposure is bounded. Your ego does not get to rewrite the playbook just because the last three trades were annoying.
At that point chart patterns stop being a source of emotional drama and become what they should have been all along: one structured input inside a disciplined operating system.
The Course-Level Standard
If this course has done its job, you should now be less impressed by pattern screenshots and more impressed by process quality. A trader who can define context, invalidation, size, execution, and review standards is operating at a much higher level than a trader who can merely identify wedges faster. That is the professional standard this chapter is trying to set. The market does not reward pattern recognition by itself. It rewards repeatable decision quality under uncertainty.
That may sound less romantic than the mythology surrounding chart patterns, but it is far more useful. Good process turns patterns into controlled opportunities. Bad process turns patterns into excuses.
When in doubt, reduce size, simplify the setup, and review more often. Professional behaviour is usually quieter than amateur confidence and far more durable.
Summary Takeaway
A professional chart-pattern playbook is a control framework, not a confidence ritual. It uses checklists, risk limits, staged deployment, and structured review to keep pattern trading repeatable, measurable, and survivable.
Course Navigation
Previous: Turning Chart Patterns into Rules: Scanners, Backtests, and Execution Logic
Full course: Chart Patterns Course – Evidence, Execution, and Risk
This chapter is part of the Chart Patterns Course. Return to the full course index to review all chapters from the beginning.
Turning Chart Patterns into Rules: Scanners, Backtests, and Execution Logic
Chart Patterns Course – Chapter 9 of 10. The difference between a pattern enthusiast and a systems thinker is simple: one says “that looks like a setup,” the other asks “can I define it, scan it, test it, and survive the parts I did not think about?” This chapter is about making the jump from visual impression to operational rule set.

Detection Is Not Execution
The first mistake in pattern system design is treating detection and execution as the same problem. They are not. Detection asks whether a shape exists according to a set of rules. Execution asks whether, given that detection, you should trade now, how, and under which constraints. A scanner can be excellent at finding triangles and still be useless as a trading engine if the execution logic is naive.
Lo, Mamaysky, and Wang matter here for a second time because they show what real progress looks like: formal definitions. Once the shape is defined computationally, you can stop arguing over screenshots and start testing behaviour. But even then, you are only halfway done. The pattern exists is not the same statement as the trade is attractive.
How To Formalise A Pattern
A usable rule set needs geometry and state. Geometry includes pivot structure, slope, duration, and relative highs and lows. State includes trend context, volatility condition, participation, and the rule for confirmation. For example, a triangle might require at least three touches, contracting range, a prior trend, and a close outside the boundary. A double top might require two comparable highs, a confirmed swing low between them, and a break of that swing low to trigger the idea. The exact rules can vary, but the point is that they must exist.
if prior_trend_up and pivots_valid and range_contracting and close > upper_boundary:
signal = "triangle_breakout"
else:
signal = None
That logic is still only a start. You then need to specify stop logic, profit logic, time stop, entry order type, universe filter, and what happens when multiple signals overlap. Backtests become untrustworthy surprisingly fast once any of those details remain vague.
Scanners Need Filters Before Patterns
A good scanner filters liquidity, spread, price, average volume, and perhaps regime before it even looks for patterns. Otherwise it will happily find beautiful setups in instruments you should never trade. This is one of the reasons discretionary traders sometimes distrust quant work. They have seen systems that detect elegant structures in statistically filthy places. The answer is not to reject automation. It is to respect preconditions.
For a chart-pattern course, the operational lesson is that scanning logic should serve tradeability, not just detection accuracy. A scanner that finds hundreds of weak candidates creates false confidence and false labour. A smaller list of liquid, structurally valid, context-aligned setups is far more valuable.
Backtest Overfitting Is a Real Threat
If you test enough patterns, filters, and thresholds on the same dataset, one of them will look brilliant. That is not proof of edge. That is often proof that statistics can be flattered when left unsupervised. This is where data-snooping literature, White’s reality check, and work on the probability of backtest overfitting become essential guardrails. The best-looking equity curve in-sample is often the most dangerous object in the room.
The antidotes are old-fashioned and effective: out-of-sample testing, walk-forward validation, realistic costs, and restraint in the number of variants explored. A backtest should not be allowed to audition endlessly until it finds the exact rule combination that history happened to reward.
Execution Assumptions Matter More Than People Admit
Best-execution guidance from FINRA and investor education from the SEC are useful here even if you are not building institutional routing systems. They force you to recognise that execution quality is a variable, not a rounding error. A breakout strategy using market orders behaves differently from the same strategy using limit orders. The difference is not cosmetic. It changes fill probability, slippage, missed opportunity, and realised expectancy.
If your backtest says every breakout was filled at the level with no delay and no slippage, you are not testing the strategy. You are testing your affection for fiction. Execution assumptions belong in the rules, not in a footnote after the results table.
What To Report From A Pattern Test
A serious chart-pattern backtest should report more than CAGR and win rate. It should include expectancy, max drawdown, turnover, holding period, average adverse excursion, average favourable excursion, exposure, capacity concerns, and performance by regime. If a pattern only works during one volatility state, that is not a flaw. It is information. But you only get that information if you ask better questions than “green line up?”
Why Rule-Based Work Improves Discretion Too
Even discretionary traders benefit from this chapter because rule-writing exposes vague thinking. Once you try to formalise your favourite setup, you quickly discover which parts were truly repeatable and which parts were just confidence with nice lighting. In that sense, backtesting is not only a profit exercise. It is an honesty exercise.
From Rules Back To Discretion
There is an irony here that good traders eventually appreciate. The more carefully you formalise a pattern setup, the better your discretionary judgement often becomes. Once you know exactly what the clean version looks like, you become much better at spotting when the live market is giving you a degraded imitation. That is why writing rules is not a betrayal of discretionary skill. It is one of the best ways to refine it.
That is also why a scanner should never be judged only by how many setups it finds. The better question is whether it helps you reject weak trades faster and define strong trades more consistently. In real pattern trading, filtering is often more valuable than discovery.
Summary Takeaway
Turning chart patterns into rules means defining the geometry, the trigger, the filter, the costs, and the execution path explicitly. A pattern is only testable and tradable when detection and execution are both specified with discipline.
Course Navigation
Previous: Chart Pattern Evidence and Success Rates: What the Research Actually Says
Next: A Professional Chart Patterns Playbook: Checklist, Review, and Deployment
Full course: Chart Patterns Course – Evidence, Execution, and Risk
This chapter is part of the Chart Patterns Course.
Chart Pattern Evidence and Success Rates: What the Research Actually Says
Chart Patterns Course – Chapter 8 of 10. This is the chapter that saves you from one of the most expensive phrases in trading: “what is the success rate?” It sounds like a sensible question. It usually hides a bad assumption. Chart patterns do not have one clean universal success rate that survives across assets, timeframes, pattern definitions, trigger rules, and execution choices. Anyone selling you one number is doing marketing, not analysis.

Why The Success-Rate Question Is Broken
Suppose someone asks for the win rate of head and shoulders. You need at least six follow-up questions. In which market? On which timeframe? Using which definition? Entering on intraday break, close, or retest? With what stop logic? With what costs? Change any of those and the number changes. This is why broad chart-pattern claims are so unreliable. They usually compress several different strategies into one seductive sentence.
The respectable literature is much more careful. It typically asks whether a technically defined structure changes the distribution of outcomes, whether that change is statistically meaningful, and whether any practical value survives after real-world frictions. That is a much less exciting story than “double bottoms work 73 percent of the time.” It is also the story adults should prefer.
What Lo, Mamaysky, and Wang Actually Showed
The foundational study in this area remains Lo, Mamaysky, and Wang. Their contribution was not merely to say something positive or negative about chart patterns. It was to formalise the object being studied. By using a systematic approach to pattern recognition, they reduced the amount of hindsight artistry involved in technical analysis.
“over the 31-year sample period, several technical indicators do provide incremental information and may have some practical value.” – Lo, Mamaysky, and Wang, Foundations of Technical Analysis
That sentence is the right tone for this whole course. Incremental information. Practical value. It does not say universal profitability. It does not say every named shape deserves faith. It says some technically defined structures can shift outcomes enough to matter.
Pattern-Specific Evidence Is Mixed
If you drill into named patterns, the picture gets narrower. Savin, Weller, and Zvingelis studied head and shoulders patterns in U.S. equities and found something nuanced: little or no support for a naive stand-alone strategy, but real predictive value and improved risk-adjusted returns when the structure was used conditionally. This is exactly the kind of result serious traders should want. It is useful because it is not simplistic.
Support and resistance arguably have stronger institutional support than many named textbook patterns because they can be tied more directly to trader behaviour and order clustering. Carol Osler’s work at the New York Fed found that support and resistance levels used by firms helped predict intraday trend interruptions in FX. Chung and Bellotti later provided modern evidence that algorithmically identified support and resistance levels can display statistically significant bounce behaviour. Those findings do not prove every triangle is profitable. They do support the broader idea that recurring price structures around defended levels can matter.
Costs Are The Great Humiliator
A strategy can show statistical significance and still be economically weak. This is one of the most important lessons in quantitative trading, and chart-pattern education routinely underplays it. Spread, slippage, commissions, borrow constraints, partial fills, missed fills, and timing differences between trigger definitions all eat edge. A pattern that “works” in a narrow academic sense may still fail as a practical trading system if the gross advantage is too small to survive cost drag.
This is also why timeframe matters. Lower horizons generate more signals and often more gross noise. That combination makes costs relatively more destructive. A pattern that looks respectable on daily charts can become useless on very short horizons where friction dominates.
Data Mining And Definition Problems
Another reason headline success rates mislead is that pattern definitions vary wildly. One researcher may define a double top one way, a textbook may define it another way, and a YouTube educator may define it however makes the thumbnail happier. Once enough definitions, filters, and trigger rules are tried, something will eventually backtest well in-sample. That does not mean the effect is durable. It may simply mean the rule set adapted itself to the historical noise.
Review work on technical-analysis profitability, such as Park and Irwin, is useful because it highlights both positive findings and the major caveats: data snooping, ex post rule selection, and cost estimation. That is the correct mood for an evidence chapter. Curious, not cynical; open, not gullible.
What You Can Say Honestly
You can honestly say that some technically defined structures appear to contain incremental information. You can honestly say that support and resistance research has meaningful institutional support. You can honestly say that some pattern-specific work, such as head and shoulders research, finds conditional predictive value. You cannot honestly say that chart patterns have a single universal success rate or that pattern recognition alone guarantees a tradeable edge.
That distinction is not academic nit-picking. It is the difference between building a disciplined process and buying a fantasy. Good traders do not need certainty. They need conditional probabilities handled with care.
The Right Way To Use Evidence
The practical way to use this evidence is not to search for a magic pattern table. It is to use the literature to set your level of confidence appropriately. Research can tell you whether a family of ideas deserves attention, where the strongest support exists, which markets seem more promising, and where transaction costs or data-mining concerns become decisive. Then your own testing and review take over. Evidence should discipline your claims, not replace your process.
Summary Takeaway
There is no single chart-pattern success rate worth trusting. The respectable evidence supports conditional informational value in some structures, but profitability depends on definition quality, market, timeframe, regime, and especially transaction costs.
Course Navigation
Previous: Risk, Targets, Position Sizing, and Expectancy for Chart Pattern Trades
Next: Turning Chart Patterns into Rules: Scanners, Backtests, and Execution Logic
Full course: Chart Patterns Course – Evidence, Execution, and Risk
This chapter is part of the Chart Patterns Course.
Risk, Targets, Position Sizing, and Expectancy for Chart Pattern Trades
Chart Patterns Course – Chapter 7 of 10. This chapter is where many pattern traders realise they were never really trading patterns at all. They were trading hope with decorative geometry. Real trading begins with invalidation, position sizing, and expectancy. Entry comes after that. If you reverse the order, the market will eventually explain the difference using your account balance.

Start With Invalidation, Not Entry
The first practical question in any chart-pattern trade is not “where do I get in?” It is “what would prove me wrong?” That is the invalidation level. If you are trading a breakout, invalidation may sit back inside the structure or below the most relevant defended low. If you are trading a reversal, invalidation may sit beyond the shoulder, the retest, or the reclaimed neckline. The point is that the stop belongs where the thesis is broken, not where a convenient percentage makes your spreadsheet feel calmer.
This sounds obvious, yet a surprising amount of trading advice effectively chooses the stop to make the trade size look attractive. That is backwards. The market defines the logical stop. Your account decides whether the size is acceptable. If the size becomes too small to interest you, that is not a reason to move the stop closer. It is a reason not to take the trade.
Position Size Is Derived, Not Improvised
CME’s educational material on position sizing is refreshingly practical. It begins with account risk, then maps that risk to stop distance and contract or share size. This is the proper order. Wider stop means smaller size. Narrower stop means larger size, but only if the stop still makes sense structurally. The stop is not a decorative accessory. It is the bridge between market logic and account survival.
account_risk_dollars = account_equity * 0.01
trade_risk_per_unit = abs(entry - stop)
position_size = account_risk_dollars / trade_risk_per_unit
The little equation above is not glamorous, which is why people skip it. It is also one of the few places in trading where arithmetic actively protects you from your own enthusiasm.
Targets Are Planning Tools
Targets matter, but not in the heroic way many chart-pattern books suggest. A measured move, prior swing, volatility expansion target, or fixed reward-to-risk multiple is useful because it lets you evaluate whether the opportunity survives costs and variance. It is not useful because it grants prophecy. Price does not know your 2R objective. It may stall early, overshoot wildly, or never get there at all.
The right way to use targets is to estimate expected payoff relative to risk. If a breakout setup offers only a tiny gross edge once spread, slippage, and missed fill risk are included, then even a textbook pattern may be untradeable. This is why the quality of the pattern and the quality of the trade are related but not identical things.
Expectancy Beats Win Rate
Retail traders love win rate because it is emotionally legible. A high win rate feels intelligent. Expectancy is the more useful measure. Expectancy asks how much you make on average, after accounting for winners, losers, size, and cost. A strategy with a 40 percent win rate can be excellent if winners are much larger than losers. A strategy with a 70 percent win rate can be dreadful if the occasional loser is catastrophic or costs eat the entire edge.
This is especially important for chart patterns because many visually appealing setups offer modest reward relative to structural risk. They look clean on the chart, but the net edge after execution friction is thin. That is how traders become rich in screenshots and poor in statements.
Order Types Change Real Risk
Regulatory investor education from the SEC is useful here because it forces precision. A stop price is not a guaranteed fill price. In fast markets your stop can execute well beyond where you intended. A market order gets you in, but perhaps at worse terms than expected. A limit order gives price control, but not certainty of execution. A stop-limit order avoids runaway slippage but can leave you standing on the platform watching the breakout train leave without you.
This means planned risk and realised risk are not the same thing. Good courses should say that out loud. A beautifully designed chart-pattern trade can still behave badly if the instrument is thin, the session is chaotic, or the order type is poorly matched to the setup.
Leverage Magnifies Bad Logic
FINRA’s guidance on margin accounts is a useful reminder that trade risk and account risk are not identical. A leveraged trader with several correlated positions can create account-level exposure far larger than any single pattern suggests. Margin calls and forced liquidation are not philosophical concerns. They are the practical consequence of taking structure-level logic and then ignoring portfolio-level reality.
The course default should therefore be conservative fixed-fraction sizing. Kelly-style frameworks are intellectually interesting and valuable in theory, but they are highly sensitive to edge estimation error. Since chart-pattern edges are noisy and conditional, full Kelly is an excellent way to learn humility at speed. Fractional Kelly, or simpler fixed-risk sizing, is usually more teachable and far more survivable.
What A Mature Pattern Trader Tracks
A mature trader tracks average win, average loss, gross and net expectancy, slippage, missed fills, and distribution of outcomes by setup type. If one pattern produces a strong theoretical hit rate but poor net results because execution is ugly, that matters. If another pattern wins less often but pays well when it wins, that matters too. You are not collecting chart patterns like trading cards. You are allocating risk to conditional structures under uncertainty.
Summary Takeaway
The quality of a chart-pattern trade is defined by invalidation, size, payoff, and net expectancy, not by visual neatness. If a setup cannot survive realistic sizing and realistic execution costs, it is not a real edge.
Course Navigation
Previous: Timeframes and Regime Filters: When Chart Patterns Matter Most
Next: Chart Pattern Evidence and Success Rates: What the Research Actually Says
Full course: Chart Patterns Course – Evidence, Execution, and Risk
This chapter is part of the Chart Patterns Course.
Timeframes and Regime Filters: When Chart Patterns Matter Most
Chart Patterns Course – Chapter 6 of 10. A pattern does not live on a chart. It lives on a timeframe inside a market regime. That sentence explains a shocking number of trading disasters. The same bull flag can be a sensible continuation setup on a daily chart inside a weekly uptrend and a complete waste of attention on a one-minute chart inside a thin, whippy session. Timeframe and regime decide whether the pattern deserves your energy at all.

Why Higher Timeframes Usually Behave Better
Beginners are often attracted to lower timeframes because they seem exciting, active, and full of opportunity. They are also full of noise, cost drag, and microstructure distortion. Research on high-frequency market microstructure makes this point clearly: the lower the horizon, the more price is distorted by bid-ask bounce, short-term order imbalances, and other effects that have very little to do with the clean textbook pattern you think you are trading.
That is why higher timeframes often produce more teachable pattern behaviour. Not because the market suddenly becomes honest, but because the structural signal is larger relative to the noise and costs. A daily triangle or four-hour rectangle usually gives you a cleaner relationship between structure, invalidation, and reward than a frenetic one-minute pattern that lives inside spread and slippage.
Regime Filters Are Not Cosmetic
Continuation patterns depend on continuation. That sounds trivial, but it means they are deeply regime-dependent. Trend-following research from AQR and related work across asset classes supports a broad fact: own-price trends can persist across intermediate horizons. That does not prove every triangle works. It does tell you that a market in persistent trend is fundamentally a better home for continuation logic than a market whipsawing inside a mean-reverting chop zone.
Regime filters are the bridge from that evidence to practical trading. You can define regime using moving-average alignment, price relative to a long-term average, volatility state, momentum state, or a simple higher-high/higher-low structure. The exact filter matters less than the discipline of having one. The point is to ask “what kind of market am I in?” before asking “what does this pattern mean?”
Multi-Timeframe Thinking
A robust pattern process often uses two horizons. The higher timeframe establishes directional bias and major levels. The lower timeframe handles execution. For example, you might identify a weekly uptrend and daily consolidation, then use a four-hour breakout for entry. This avoids one of the classic retail errors: making every decision from a single chart and acting surprised when a beautiful local setup runs directly into a much larger zone visible one screen up.
Multi-timeframe thinking does not require excessive complexity. It only requires hierarchy. One timeframe tells you the environment. Another tells you the trigger. If those two disagree violently, smaller size or no trade is often the correct response.
Signal Strength Matters
Another useful lesson from the trend-following literature is that signal quality varies. Some trends are mature, broad, and persistent. Others are fragile, late, or already near exhaustion. Research on trend signal strength and CTA performance is helpful here because it reinforces a key trading intuition: directional bias alone is not enough. Strong trends and weak trends should not be treated as the same object.
Translated into pattern trading, this means a continuation pattern in a strong, orderly trend deserves more respect than the same shape inside a hesitant, news-whipped environment. Likewise, a reversal pattern against a powerful established trend deserves extra caution unless other evidence of exhaustion is present.
# Simple regime-aware filter
trend_up = close > ema_50 and ema_50 > ema_200
volatility_ok = atr_percentile < max_threshold
if trend_up and volatility_ok and breakout_confirmed:
take_trade()
When Timeframes Work Against You
Higher timeframes are not automatically superior in every way. They reduce noise, but they also reduce sample size and can react slowly to turning points. Lower timeframes provide more opportunities, but those opportunities are more vulnerable to friction and false signals. This is why no timeframe should be marketed as “the best.” The question is best for what. Swing traders looking for structured continuation may prefer daily and four-hour charts. Intraday traders may need lower horizons, but they should accept that pattern quality degrades and execution quality becomes much more important.
Context Changes The Same Pattern
A rectangle after a parabolic run may be distribution. The same rectangle early in a stable trend may be healthy balance. A double bottom in a long-term downtrend may be just another bounce until the higher timeframe agrees. A breakout from a triangle during a macro event week may be less about the triangle and more about the event. Regime awareness forces you to stop treating the pattern as the main character in a market that is often being driven by larger forces.
This chapter also rescues you from one of the most common retail delusions: the belief that more charts mean more clarity. Often the opposite is true. The extra clarity comes from choosing the right horizon and letting the wrong ones go.
A Default Workflow That Actually Works
A sensible course default is simple. Use the weekly or daily chart for directional bias and major levels. Use the four-hour or daily chart for setup structure. Use a still lower timeframe only if you need execution refinement and you already know the broader context. That hierarchy is not glamorous, but it keeps you from getting hypnotised by noise. It also reinforces a deep truth: regime is not an optional add-on to pattern trading. It is the environment that decides whether the pattern deserves to exist in your process at all.
Summary Takeaway
Timeframe and regime determine whether a chart pattern is meaningful, noisy, or actively misleading. Higher-level context, trend state, and signal strength should be established before you start naming shapes and planning entries.
Course Navigation
Previous: Breakouts and False Breakouts: Entries, Retests, and Failure Traps
Next: Risk, Targets, Position Sizing, and Expectancy for Chart Pattern Trades
Full course: Chart Patterns Course – Evidence, Execution, and Risk
This chapter is part of the Chart Patterns Course.
Breakouts and False Breakouts: Entries, Retests, and Failure Traps
Chart Patterns Course – Chapter 5 of 10. Breakouts are where chart patterns stop being theory and start becoming execution. This is also where traders get hurt. Retail education usually treats the breakout candle as the heroic final panel of the comic strip. In reality, breakouts succeed, fail, retest, trap, accelerate, and occasionally insult your intelligence in all five ways before lunch.

What A Breakout Actually Is
The best way to think about a breakout is not “price crossed a line.” A breakout is a move from rejection at a boundary to acceptance outside it. That distinction matters because many fake breakouts satisfy the lazy definition and fail the serious one. A wick through resistance followed by immediate collapse back into the range is not compelling acceptance. It is an attempted break that the market refused to keep.
This is where support and resistance research becomes useful again. Osler’s work suggests that trader-watched levels can genuinely matter. Her later research on order clustering goes further and explains why. Stop-loss orders, take-profit orders, and other resting interest accumulate around obvious levels. When price reaches them, the result can be interruption, acceleration, or a cascade. Breakouts are therefore not random decorations. They often emerge where market structure and clustered orders intersect.
Retests: Useful, Not Mandatory
Many traders are taught to wait for the retest. That advice is partly sensible and partly too rigid. A retest can improve trade location, tighten risk, and confirm that former resistance is now behaving like support, or vice versa. But not every clean breakout retests. Strong directional moves can simply go. If your rule says “no retest, no trade,” you will avoid some traps and miss some of the best momentum. That is a real trade-off, not a flaw in the universe.
The adult version of this lesson is to decide in advance which breakout style you trade. Immediate-break execution gives you better price and more false starts. Retest-based execution gives you more confirmation and more missed moves. Close-based confirmation reduces noise but often worsens price. There is no free lunch here. There is only consistency.
False Breakouts Are Usually Failed Auctions
A false breakout happens when price briefly escapes a range or level and then fails to hold there. Many traders explain this with dramatic stories about manipulation and stop hunting. Sometimes clustered liquidity is indeed part of the explanation. Osler’s research on stop-loss orders and price cascades supports the idea that breaks can be amplified by clustered orders. But it is still better to frame the event as failed acceptance than as a universal conspiracy theory. The market does not owe you a villain for every bad trade.
One practical benefit of this framing is that it suggests what to monitor. Did the breakout attract follow-through? Did price spend time outside the level or immediately snap back? Was participation supportive or absent? Did the move occur directly into a higher-timeframe opposing zone? Those questions tell you more than muttering “fakeout” after the fact.
# One breakout framework
if close > resistance and follow_through_present:
take_long_breakout()
elif price_breaks_resistance and quickly_reenters_range:
treat_as_failed_breakout()
What Makes A Breakout More Credible
Repeated pressure on the level helps. So does volatility contraction before the break. So does visible trend alignment. So does participation. So does clean higher-timeframe structure. None of these guarantees success, but together they create a more credible environment for the move. By contrast, a random lunchtime poke above resistance in a thin market with no prior pressure and no follow-through should be treated with suspicion, not with inspirational quotes about fortune favouring the bold.
Research on support and resistance from Chung and Bellotti adds a modern quantitative angle. Their work suggests that algorithmically identified levels can show statistically significant bounce behaviour, and that the number of prior touches matters. That makes intuitive sense. The more a level has functioned as a real boundary, the more meaningful it becomes when the market finally tries to leave it behind.
Why Execution Choices Change The Outcome
Suppose three traders all agree a breakout is happening. One buys the instant the level trades. One waits for the candle close. One waits for the retest. They are not trading the same strategy anymore. Their entry prices, stop placement, fill risk, and expectancy will differ. This is one of the easiest ways for pattern discussions to become misleading. People say “the breakout worked” when in fact one execution approach worked beautifully, another barely broke even, and the third never got filled.
This is why breakout education must include order logic, not just chart screenshots. A market order may guarantee participation but invite slippage. A limit order improves price if filled, but may miss the move. A stop-limit order reduces runaway fill risk, but can also leave you unfilled during the exact move you were trying to capture. Breakout trading lives at the intersection of chart structure and order mechanics.
Failed Breakouts Can Be Great Signals
One of the most useful professional habits is to treat failed breaks as information, not merely disappointment. If price cannot hold above a key resistance after apparently clean breakout conditions, that failure can reveal exhaustion and trapped participants. Failed upside breaks often reverse sharply because late buyers are now vulnerable and prior sellers regain confidence. The same logic works in reverse for downside failures.
Why Journaling Breakout Type Helps
One practical habit worth building is journaling the exact breakout style you took. Was it a first-touch break, a closing confirmation, or a retest entry? Did it occur from a mature range or a loose one? Was the move supported by participation or was it thin and suspicious? Over time, those distinctions teach you far more than a generic win-rate summary. Breakouts are not one setup. They are a family of related executions around a common structural event, and the quality differences inside that family matter a great deal.
Summary Takeaway
A breakout is a shift from rejection to acceptance outside a meaningful level. A false breakout is failed acceptance. The quality of the setup depends on pressure, context, participation, and execution choices, not just on whether price briefly crossed a line.
Course Navigation
Previous: Continuation Chart Patterns: Flags, Pennants, Triangles, and Rectangles
Next: Timeframes and Regime Filters: When Chart Patterns Matter Most
Full course: Chart Patterns Course – Evidence, Execution, and Risk
This chapter is part of the Chart Patterns Course.
Continuation Chart Patterns: Flags, Pennants, Triangles, and Rectangles
Chart Patterns Course – Chapter 4 of 10. Continuation patterns are the part of technical analysis that most resembles a market taking a breath. The prior move happens fast, then price compresses, hesitates, and coils before deciding whether to continue. The mistake is assuming that every pause deserves the noble title of flag or pennant. Some pauses are just pauses. Continuation patterns only matter when trend, compression, and release all line up.

The Prior Move Matters More Than The Name
The strongest way to teach continuation patterns is to begin with the prior impulse. A flag after a sharp run higher is easier to interpret because it sits inside visible directional pressure. A similar-looking channel in a dull sideways market may just be local noise. This is one place where the broader literature on trend persistence helps more than the narrower literature on named shapes. AQR’s work on time-series momentum supports the idea that directional trends can persist. Continuation patterns are one visual expression of that broader phenomenon.
That is why this chapter treats the taxonomy as useful but secondary. Flags, pennants, triangles, and rectangles are descriptive labels. The more important question is whether the market is showing temporary balance inside a pre-existing move, followed by expansion in the same direction.
Flags And Pennants
Flags and pennants are short consolidations that follow a sharp directional advance or decline. The flag usually looks like a small countertrend channel. The pennant usually looks like a small converging structure. In both cases the logic is the same: the market moves aggressively, participants take profits, late entrants hesitate, volatility contracts, and then the market either resumes the move or fails the continuation attempt.
The educational trap is pretending the pattern is the edge by itself. In practice, the setup is strongest when the prior move was impulsive, the consolidation is relatively orderly, and the breakout occurs with clear acceptance. Flags built on thin liquidity, erratic candles, or a prior move that was never strong to begin with deserve much less respect.
Triangles And Pressure Asymmetry
Triangles are often taught as if ascending means bullish and descending means bearish. That is a useful bias, but not a law. A better explanation is pressure asymmetry. In an ascending triangle, lows rise into a relatively stable ceiling. Buyers are pressing higher whilst sellers defend a zone. In a descending triangle, highs compress lower into a relatively stable floor. That tells you something about pressure, but the trade still requires confirmation and context.
Symmetrical triangles are even more dangerous for overconfident traders because they are often neutral until the market chooses direction. The lesson here is simple: pressure is informative, but pressure is not completion. Completion occurs when the market exits the structure and shows that participants accept trade outside it.
Rectangles And Balance
Rectangles are probably the purest continuation pattern from an auction perspective. Price repeatedly rotates between two boundaries. Buyers reject the low. Sellers reject the high. The market is balanced. The continuation opportunity appears only when that balance breaks and trade is accepted outside the range. If price cannot hold outside the box, the market is telling you the balance remains unresolved.
Rectangles are also useful because they teach humility. A trader who is determined to predict the breakout direction before price confirms it is effectively guessing which side of the range will win. Sometimes that works. More often it is just impatience wearing conviction as a disguise.
Measured Moves Are Planning Tools
Continuation patterns often come with measured-move logic. The height of the rectangle, the length of the flagpole, or the depth of the triangle can be projected forward as an approximate target. Used properly, that is a planning tool. It helps estimate reward relative to the invalidation level. Used badly, it becomes a promise. No market is required to travel the textbook projection just because a chartist felt mathematically inspired.
# Continuation logic
if prior_trend_up and range_contracting and close > resistance:
entry = close
stop = pattern_low
target = entry + measured_move
The code above is fine as a starting point, but it still needs context. Is the breakout into higher-timeframe resistance? Is participation improving? Is the market liquid enough? Does the measured move still produce acceptable reward after costs? The pattern gives you a framework, not absolution.
What The Evidence Supports
The cleanest evidence for this chapter is not “flags work at 68.3 percent.” That kind of number is usually marketing bait. The evidence is stronger at the level of trend persistence and conditional technical information. Lo, Mamaysky, and Wang support the broader idea that some technically defined structures can add information. Trend-following research supports the idea that directional persistence can exist across markets. Specific named continuation patterns are less firmly supported in the literature than textbook culture suggests.
That sounds disappointing until you realise it is actually useful. You do not need a mystical proof that pennants are special. You need a disciplined way to recognise compression inside trend and a sensible framework for trading the release if the market confirms it.
How Continuation Patterns Usually Fail
They fail when the prior trend was weak, when the consolidation is too chaotic, when the breakout occurs into obvious higher-timeframe opposition, or when traders enter on the assumption of continuation before the market confirms it. They also fail when the supposed continuation setup is actually a distribution or accumulation structure in disguise. Context saves you from a surprising amount of embarrassment.
A Practical Teaching Rule
If you are teaching or trading continuation patterns, use one simple rule: do not allow the pattern label to outrank the state of the market. A messy “bull flag” in a weak instrument is still a messy setup. A clean rectangle in a strong trending market with good participation is often more useful than a textbook pennant in a poor environment. That sounds almost too sensible to mention, which is probably why so much pattern education ignores it. Traders are drawn to named shapes because names feel precise. Markets care much more about pressure, liquidity, and follow-through.
Summary Takeaway
Continuation patterns are temporary balance structures inside an established move. Their usefulness comes from trend context, volatility compression, and confirmed expansion, not from the pattern name alone.
Course Navigation
Previous: Reversal Chart Patterns: Head and Shoulders, Double Tops, and Double Bottoms
Next: Breakouts and False Breakouts: Entries, Retests, and Failure Traps
Full course: Chart Patterns Course – Evidence, Execution, and Risk
This chapter is part of the Chart Patterns Course.
Reversal Chart Patterns: Head and Shoulders, Double Tops, and Double Bottoms
Chart Patterns Course – Chapter 3 of 10. Reversal patterns are where chart education usually becomes theatrical. Everyone loves a head and shoulders because it looks tidy, sounds dramatic, and gives the impression that the market has politely arranged itself into a labelled diagram for your benefit. Real reversals are messier than that. They begin with exhaustion, continue through failed continuation attempts, and only become tradable once confirmation appears.

Prior Trend Is Not Optional
A reversal pattern needs something to reverse. That sounds embarrassingly obvious, yet it is one of the most common beginner errors. Traders call every small zig-zag a double top or every slight bounce a double bottom, even when the market has not produced a meaningful prior move. Without prior trend, a reversal pattern is often just range noise. At best it is an ambiguous congestion. At worst it is a trap that invites you to short support or buy resistance in the middle of a sideways mess.
This is why good reversal analysis begins with context. The shape comes second. If the market has been in a mature uptrend, then repeated failure near a high matters. If the market has been in a downtrend, then accumulation near lows matters. Pattern geometry only earns meaning after directional context has established tension.
Head and Shoulders: Failure in Three Acts
The head and shoulders pattern is best understood as a three-stage failure sequence. The left shoulder shows an initial loss of momentum after a strong advance. The head makes a higher high, but that higher high cannot sustain itself. The right shoulder then fails to make a convincing new extreme. What matters most is not the silhouette. It is the repeated inability of buyers to extend control, followed by a break of the neckline that signals the market is no longer treating the prior uptrend as intact.
This distinction matters because students often enter too early. They see the head and shoulder structure forming and start shorting before the neckline gives way. That is anticipation, not confirmation. Sometimes anticipation works. It also exposes you to the exact risk that the market simply consolidates and then resumes upward. Confirmation costs you some price, but it buys you information. In live trading, information is a very good use of money.
The inverse head and shoulders is the mirror image. Sellers progressively fail to extend the downtrend. The market builds a deeper central low, then refuses to follow through lower on the right side. When the neckline breaks upward, the prior auction logic has changed. Again, the key event is the break, not the art project.
Double Tops and Double Bottoms
Double tops and double bottoms are simpler patterns, but they are often abused because the structure looks so easy to recognise. A double top is not simply “price hit the high twice.” It is repeated failure at an extreme, followed by a break of the intervening swing low that confirms the market is willing to trade lower. A double bottom is the reverse: repeated defence near a low, then a break of the swing high between the lows. Without that confirmation level breaking, the pattern remains incomplete.
This is the central teaching point for reversal structures: the market must prove the transition. Until then, you have a possible setup, not a completed one. Many bad trades come from confusing the possibility of reversal with the fact of reversal.
What The Evidence Says
Pattern-specific evidence is thinner than the textbooks imply, but it is not empty. One of the strongest direct studies on a named pattern comes from Savin, Weller, and Zvingelis on head and shoulders in U.S. equities. Their results are exactly the kind of nuance this course wants to preserve: not a blanket endorsement, not a blanket dismissal.
The study did not support a naive “trade every head and shoulders and get rich” interpretation. What it did support was conditional predictive value and improved risk-adjusted results when the structure was used more carefully. That is a recurring theme across respectable chart-pattern research. The shape may carry information, but the value is conditional, implementation-sensitive, and rarely as clean as the retail versions claim.
Lo, Mamaysky, and Wang provide the broader academic umbrella for this idea by showing that technical structures such as head and shoulders and double bottoms can provide incremental information. Again, modest claim, useful claim. Not magical claim.
Where Reversal Patterns Fail
Reversal patterns fail in predictable ways. First, traders enter before confirmation. Second, the prior trend was too weak or too short to matter. Third, the setup forms directly into strong higher-timeframe support or resistance, which means the supposed reversal is actually running into a larger opposing force. Fourth, traders ignore participation and follow-through. A neckline break on weak involvement can still work, but it deserves more caution than a break with strong market acceptance.
# Weak reversal logic
if pattern == "head_and_shoulders":
short()
# Better reversal logic
if prior_trend_up and neckline_break and follow_through_present:
short()
There is also a deeper lesson here: failed reversal patterns can become powerful continuation signals. If a beautiful head and shoulders cannot break down and instead reclaims the neckline aggressively, that failure tells you something important. The market has absorbed the bearish story and refused to comply. In trading, failed signals are often as informative as successful ones.
Measured Moves and Invalidation
Classic texts often teach measured-move targets by projecting the height of the pattern from the breakout point. That can be useful as a planning device. It is not a law of nature. The measured move is a heuristic for thinking about potential reward, not an exact destination. Invalidation is more important than target mythology. If the market reclaims the neckline after a downside break or collapses back below it after an inverse breakout, your thesis is degrading and your risk should already be defined.
How To Trade Them Like An Adult
A serious reversal trader asks four questions. Was there a real prior trend? Is the pattern complete or merely forming? Is the confirmation level clear? Is the invalidation level clear? If the answer to any of those is vague, you probably do not have a trade. That discipline feels less exciting than calling tops on social media. It is also much more compatible with long-term survival.
Summary Takeaway
Reversal patterns are best understood as failed continuation structures that become tradable only after confirmation. Prior trend, break of the confirmation level, and clear invalidation matter far more than how aesthetically pleasing the pattern looks on a screenshot.
Course Navigation
Previous: Market Structure for Chart Patterns: Trend, Support, Resistance, and Volume
Next: Continuation Chart Patterns: Flags, Pennants, Triangles, and Rectangles
Full course: Chart Patterns Course – Evidence, Execution, and Risk
This chapter is part of the Chart Patterns Course.
Market Structure for Chart Patterns: Trend, Support, Resistance, and Volume
Chart Patterns Course – Chapter 2 of 10. A pattern without context is like a sentence without grammar. You can stare at the letters all day and still miss the meaning. Market structure is the grammar. Trend, support, resistance, volume, and auction behaviour are what tell you whether a shape is a continuation pause, a failed auction, or just decorative noise.

Trend Comes First
Every pattern sits inside a larger directional state. That is where good technical analysis starts. If price is making higher highs and higher lows, your default lens should be trend continuation or trend pause until proven otherwise. If price is making lower highs and lower lows, the burden of proof is on any bullish-looking setup. If the market is chopping sideways, many patterns are simply range noise wearing a formal costume.
CME’s educational material on trend analysis is helpful here because it is blunt: trend-following signals are always somewhat late, but the late signal is often still better than pretending no trend exists. That trade-off matters. A pattern trader who refuses to classify the larger trend is basically trying to trade syntax without semantics. The shape may look correct, yet its meaning changes dramatically depending on the broader move wrapped around it.
Support and Resistance Are Zones, Not Laser Beams
Support and resistance are best understood as areas where the market has repeatedly hesitated, reversed, accelerated, or found liquidity. Retail teaching often turns them into exact lines, which is convenient for screenshot culture and terrible for live trading. Real markets breathe around levels. Stops cluster around obvious highs and lows. Limit orders rest near prior turning points. Participants remember price areas more than perfect ticks.
Carol Osler’s work at the New York Fed is one of the strongest institutional reasons not to dismiss this subject outright. Her paper on support and resistance found strong evidence that these levels helped predict intraday trend interruptions in FX. That does not mean every line on every chart matters. It means some trader-watched levels do carry real information, and the information likely exists because actual orders cluster around them.
“These tests strongly support the claim that support and resistance levels help predict intraday trend interruptions for exchange rates.” – Carol Osler, Federal Reserve Bank of New York
That finding is powerful because it moves support and resistance out of motivational-poster territory and into something closer to observable market behaviour. It also supports a key principle for the rest of this course: patterns matter more when they are anchored to levels that market participants already care about.
Volume Is Participation, Not Magic
Volume is often taught badly. Some teachers present it as a universal lie detector, as if one spike settles all debates. A better way to teach it is participation. Higher-than-normal volume suggests more market involvement in the move. That can strengthen the interpretation of a breakout, a reversal, or a rejection. Low participation does not automatically invalidate a setup, but it should make you more suspicious of aggressive conclusions.
The CMT Association’s work on volume and volatility is useful because it ties participation to context rather than mythology. Rising activity into a breakout can support the idea that the market is accepting price outside a prior range. Shrinking activity inside a congestion structure can support the idea that volatility compression is building toward expansion. The point is not to worship volume. The point is to use it as one piece of market-state evidence.
The Auction Logic Underneath Patterns
Markets are ongoing auctions. That phrase sounds academic until you map it onto chart behaviour. When buyers and sellers are in temporary balance, price rotates in a range. When one side overwhelms the other, price migrates. Patterns are visual snapshots of those shifts. A rectangle is a balance area. A breakout is attempted acceptance outside that area. A false breakout is failed acceptance, where price briefly escapes and then is dragged back inside because follow-through does not hold.
This auction perspective is more useful than simply memorising shapes because it gives you a causal story that is compatible with real order flow. Osler’s staff work on currency orders is especially valuable here. It links support, resistance, stop-loss clustering, and acceleration after breaks to actual order placement by participants. That is a much better foundation than a vague story about mysterious actors hunting retail traders for sport.
# Context-first logic
if trend_up and price_near_support_zone and participation_improving:
look_for_continuation_or_bullish_reversal()
elif range_bound and repeated_rejection_at_highs:
treat_breakout_or_failure_as_key_information()
Why Context Changes Pattern Meaning
Consider a triangle. Inside a strong weekly uptrend, after a sharp directional move, it may function as a continuation pause. Inside a dull sideways market, the same triangle can simply be indecision. Near a major higher-timeframe resistance zone, it may be an exhaustion structure that fails upward and reverses. The pattern did not change. The context changed. That is why market structure is not optional theory. It is the thing that determines what the pattern is trying to say.
That same rule applies to support and resistance polarity shifts. Broken resistance often becomes support, not because of a mystical law, but because prior sellers may become trapped buyers and new participants may now defend the breakout area. Broken support can become resistance for the same reason. Pattern trading works better when you understand that memory and positioning live around these zones.
What A Serious Pattern Trader Checks First
Before naming the shape, check five things. First, what is the higher-timeframe trend? Second, is the market near a meaningful zone? Third, is participation expanding, shrinking, or indifferent? Fourth, is price behaving like balance or imbalance? Fifth, is the venue itself suitable for interpretation? Futures volume tells cleaner stories than fragmented off-exchange volume in some markets. Good context work is boring, which is exactly why it saves money.
Summary Takeaway
Market structure is the context layer that makes a chart pattern interpretable. Trend, support and resistance zones, volume as participation, and auction logic all matter more than the shape alone. If you skip context, you are trading silhouettes.
Course Navigation
Previous: Chart Patterns Foundations: What They Are and What They Are Not
Next: Reversal Chart Patterns: Head and Shoulders, Double Tops, and Double Bottoms
Full course: Chart Patterns Course – Evidence, Execution, and Risk
This chapter is part of the Chart Patterns Course.
Chart Patterns Foundations: What They Are and What They Are Not
Chart Patterns Course – Chapter 1 of 10. Before you learn flags, triangles, or head and shoulders, you need a clean definition of what a chart pattern actually is. That sounds obvious until you realise most pattern education begins by showing the shape after the move worked. At that point you are no longer learning analysis. You are learning archaeology.

What A Chart Pattern Is
A chart pattern is a recurring price structure that traders use to describe balance, imbalance, continuation, or reversal in a market. That definition matters because it keeps the subject grounded. A pattern is descriptive before it is predictive. It summarises how price moved, where it hesitated, where it failed, and where control may be shifting. A triangle is not a mystical force field. A double top is not a commandment. They are compact visual descriptions of crowd behaviour.
This is also why patterns remain popular. Human beings are very good at recognising structure in incomplete information. Markets generate streams of incomplete information. The temptation to draw meaning out of shape is almost irresistible. Daniel Kahneman would probably call this a perfect factory for overconfident intuition: the chart gives you just enough order to feel certain, even when the evidence is only conditional. That does not make chart patterns useless. It means they need rules, context, and humility.
The Real Academic Claim
Serious research on chart patterns does not say, “all these shapes work.” The strongest careful claim is much smaller and much more useful. Andrew Lo, Harry Mamaysky, and Jiang Wang tried to formalise technical analysis by turning pattern recognition into something computational rather than purely subjective. Their result is still one of the best starting points for anyone who wants evidence instead of campfire stories.
“over the 31-year sample period, several technical indicators do provide incremental information and may have some practical value.” – Lo, Mamaysky, and Wang, Foundations of Technical Analysis
Notice the wording. Incremental information. Some practical value. That is the grown-up version of the subject. It does not promise easy profits. It does not tell you to buy every breakout. It tells you that some recurring structures shift the distribution of outcomes enough to be worth studying. That is a different proposition from folklore, and a far more defensible one.
Why Subjectivity Is the Main Problem
The biggest weakness in chart-pattern education is not that charts are visual. It is that the rules are often vague enough to absorb hindsight. If five traders can draw five different necklines on the same head and shoulders, then the pattern is not yet operational. If the pattern is only obvious after the move reaches the target, then it is not teaching you to trade, it is teaching you to narrate what already happened.
That is why this course treats pattern recognition as a rules problem. You need answers to simple questions: What prior trend is required? What pivots define the structure? What counts as confirmation? Where is the pattern invalidated? What timeframe is relevant? What costs are assumed? Without those answers, the pattern is just a story generator with a candlestick habit.
# Bad pattern logic
if "looks like a triangle":
buy()
# Better pattern logic
if prior_trend_up and range_contracting and close > resistance and invalidation_defined:
buy()
That tiny shift in language matters. It moves the pattern from shape worship to conditional decision-making. The first version is a vibe. The second version is a hypothesis that can be tested.
Why Patterns Survive Anyway
Chart patterns survive for three reasons. First, markets do produce recurring structures because humans respond to gains, losses, regret, and crowd behaviour in recurring ways. Second, many participants do watch the same levels, which means some pattern behaviour can become partially self-reinforcing. Third, patterns are genuinely useful for organising trade location and risk. Even when a pattern does not provide a large standalone edge, it can still help define a trigger, an invalidation point, and a reward-to-risk framework.
This is where classic technical-analysis texts still matter. John Murphy and Edwards and Magee remain useful for vocabulary and taxonomy. They help describe what traders mean by reversal, continuation, neckline, support, and measured move. They are not enough as empirical proof on their own, but they remain useful because a course still needs a language. The mistake is confusing the existence of a language with the existence of a guaranteed edge.
What Not To Claim
If you want to stay intellectually honest, avoid three bad claims. First: do not say patterns “always work” in liquid markets. They do not. Second: do not say every false breakout is deliberate manipulation. Sometimes it is simply poor follow-through in a noisy auction. Third: do not present a single success rate as if it applies across assets, regimes, and execution styles. A daily chart breakout in an index future and a one-minute crypto wedge on a thin Sunday book are not the same animal.
Carol Osler’s work on support and resistance is a good warning against simplistic thinking. Her research gives serious support to the idea that technician-used levels can matter, particularly in FX, but it does not give you permission to turn every hand-drawn line into divine revelation. The adult version of technical analysis is conditional, market-specific, and implementation-aware.
How To Think About Patterns From Here
The cleanest mental model is this: patterns are compact maps of auction behaviour. Some show compression inside trend. Some show repeated failure at extremes. Some show exhaustion after a directional move. Their value comes from combining structure with context, confirmation, and risk logic. Used that way, they are useful. Used as free-floating shapes, they become one more way the market sells certainty to people who desperately want it.
Summary Takeaway
Chart patterns are best treated as structured hypotheses about market behaviour, not as magical predictors. The evidence supports modest informational value in some cases, but only when definitions, context, confirmation, and execution are handled with discipline.
Course Navigation
Next: Market Structure for Chart Patterns: Trend, Support, Resistance, and Volume
Full course: Chart Patterns Course – Evidence, Execution, and Risk
This chapter is part of the Chart Patterns Course.
