Blog / Strategy
Strategy

Point Figure Column Breakout

Disclaimer: This article is for educational and informational purposes only. It does not constitute financial or investment advice. Trading forex and CFDs carries significant risk of loss. Past performance of any strategy — including backtests — does not guarantee future results. Never trade with money you cannot afford to lose.

What Is This Strategy?

The Point Figure Column Breakout strategy is a trend-following Expert Advisor built around Point & Figure (P&F) charting, one of the oldest technical analysis methods in existence. Point & Figure is a time-independent charting technique: instead of plotting a price point for every bar, it discretises price into fixed-size "boxes" and only records movement that is large enough to matter. Rising price fills a column of Xs, falling price fills a column of Os, and a new column begins only when price reverses by a meaningful amount. This design intentionally throws away time and small intrabar wiggles, leaving a clean sequence of alternating up and down columns.

This strategy trades the two classic, textbook P&F signals. A double-top buy occurs when the current rising X column climbs one box above the top of the previous X column — a picture of higher highs on the discretised grid. A double-bottom sell occurs when the current falling O column drops one box below the bottom of the previous O column — lower lows on the grid. To keep entries aligned with the broader drift, the strategy adds an Exponential Moving Average (EMA) trend filter, and it sizes both stops and targets from the Average True Range (ATR), a standard measure of recent volatility.

As a learning tool, this EA is well suited to traders who want to understand how noise-filtering chart construction differs from candlestick breakouts, and how a breakout of a previously tested level can be defined objectively. It is designed for trending or breakout-prone conditions rather than tight, directionless ranges. Treat it as a study of pattern-based trend following — not as a profit opportunity.

How It Works

The strategy processes only completed bars (it acts once per newly-closed candle) and continuously maintains a Point & Figure grid in memory. Each finished bar's high and low are fed into that grid to either extend the current column or trigger a reversal into a new one.

For risk control, once an entry is triggered:

Because both stop and target are derived from ATR, the distances widen in fast markets and tighten in quiet ones, keeping the risk framework proportional to current conditions. There is no additional trailing logic — each trade runs to its fixed ATR-based stop or target.

Point Figure breakout MT5 EA
Illustrative example of the strategy’s entry and exit logic — not real trading results.

Strategy Parameters

Parameter Default Min Max Description
BoxAtrFactor 0.50 0.10 2.0 Box size as a multiple of ATR. Smaller values create a finer grid and more frequent signals; larger values coarsen the grid and filter more noise.
ReversalBoxes 3 1 6 Number of boxes of counter-move required to start a new column. Higher values demand a larger reversal before flipping direction.
AtrPeriod 14 5 50 ATR lookback period used both for the box size and for the stop/target distances.
TrendEmaPeriod 50 10 200 EMA period for the trend filter. Longs are allowed only above it, shorts only below it.
AtrSlMult 1.5 0.5 5.0 Stop-loss distance expressed as a multiple of ATR from the entry price.
AtrTpMult 3.0 0.5 8.0 Take-profit distance expressed as a multiple of ATR from the entry price.
Lots 0.10 0.01 1.0 Fixed order volume (position size) in lots.
Point Figure breakout MT5 EA — MQL5 source code

Recommended Chart Settings

This strategy is designed to run on a single timeframe — whichever timeframe you attach it to is the one it uses for every calculation. Because Point & Figure already filters noise through its box and reversal mechanism, a common starting point for study is the H1 (1-hour) or H4 (4-hour) timeframe on a liquid instrument such as a major forex pair (for example, EUR/USD) or a widely-traded index CFD. Higher timeframes tend to produce cleaner columns and fewer, more deliberate signals.

Keep in mind that the adaptive box size means the grid behaves differently across instruments and volatility regimes. Results will vary considerably between symbols, timeframes, and market conditions, so always test any configuration on your own data before drawing conclusions.

How to Install on MetaTrader 5

What to Consider Before Using This EA

Strengths of the approach. Point & Figure's biggest contribution is objectivity. A double-top or double-bottom breakout on a P&F grid is defined by exact box levels, not by subjective pattern-drawing. Because the reversal filter ignores minor pullbacks, a breakout typically marks a level that has already been tested and held, which many traders consider a higher-quality signal than a raw candlestick break. The adaptive, ATR-based box size means the grid self-scales, and the EMA filter helps avoid the most obvious counter-trend entries.

Known limitations. Like all breakout systems, this strategy is vulnerable to whipsaws in choppy, range-bound markets where price repeatedly triggers a breakout and then reverses. The box and reversal filters reduce this but cannot eliminate it. Point & Figure is also inherently a lagging construction — it confirms a move only after price has already travelled at least one box beyond the reference level, so entries occur after the initial thrust. The fixed ATR take-profit means the strategy will exit strong trends early sometimes, while the fixed stop offers no partial protection once price moves in your favour.

When it may underperform. Expect weaker behaviour during low-volatility consolidation, during news-driven spikes that gap through stops, and on instruments with wide spreads relative to the ATR-based box size. Parameter choices matter a great deal: a very small BoxAtrFactor will generate many marginal signals, while a very large one may produce too few to be meaningful. Treat parameter tuning as a research exercise, not a search for a single "best" setting.

Risk Management Tips

Sound risk management matters more than any single entry rule. Consider these general principles:

Risk Warning

Trading foreign exchange, CFDs, and other leveraged financial instruments involves substantial risk of loss and is not suitable for all investors. The strategies and tools discussed on this page are provided for educational purposes only and do not constitute financial advice, investment recommendations, or solicitation to trade. Always consult a qualified financial adviser before making trading decisions. Past backtest performance is not indicative of future results.

Downloads

← Back to Blog