CandlestickFinderMaster

## What it does

BCPF is an MT4 on-chart indicator that scans price history for **18 active
candlestick patterns** and labels detected formations directly on the chart.
A compact checklist panel lets you enable or disable each bullish and bearish
pattern independently.

The 18 available patterns are:

- **Bullish:** Hammer, Inverse Hammer, Bullish Engulfing, Morning Star,
  3 White Soldiers, Dragonfly Doji, Bullish Marubozu, Bullish Harami,
  Piercing Line.
- **Bearish:** Hanging Man, Shooting Star, Bearish Engulfing, Evening Star,
  3 Black Crows, Gravestone Doji, Bearish Marubozu, Bearish Harami,
  Dark Cloud Cover.

A separate trend panel shows the current readings of the three trend methods
used by the indicator — MA alignment, ADX directional bias and adaptive
moving-average slope — together with their combined majority vote.

## A practical note on pattern selection

Although BCPF provides all 18 formations, there is no requirement to use all
of them at the same time. The checklist is there precisely because the useful
subset can vary with the instrument, timeframe and trading style.

As a purely informal example, after observing **several dozen XAUUSD
sessions**, the following eight patterns appeared particularly useful to the
author:

- Inverse Hammer
- Morning Star
- Dragonfly Doji
- Bullish Marubozu
- Hanging Man
- Shooting Star
- Evening Star
- Gravestone Doji

This is **not a trading recommendation, a preset claimed to be optimal, or a
universal rule**. It is only a loose practical observation from a limited
sample of sessions. Other instruments, timeframes and market regimes can
naturally favour a different selection.

## How it works

- **Mixed pattern geometry.** BCPF does not use one universal candle formula.
  Depending on the formation, detection uses a combination of ATR-relative
  body/wick thresholds, ratios relative to the candle's own High–Low range,
  and direct OHLC relationships between neighbouring candles. This allows the
  rules to scale across different symbols and timeframes without relying on
  fixed pip-sized candle definitions.

- **ATR-relative body classification.** `ATRPeriod` provides the volatility
  reference for small, large, star and doji body classifications, as well as
  the Marubozu and Doji wick tests.

- **Range-relative wick patterns.** Hammer, Inverse Hammer, Hanging Man and
  Shooting Star use wick and body proportions relative to the candle's own
  total range. The relevant thresholds are `WickMinRatio`,
  `WickMaxBodyRatio` and `WickMaxOppositeRatio`.

- **Trend-context filter.** With `UseTrendFilter = true`, reversal formations
  are checked against the price action that occurred **before** the pattern.
  BCPF uses two different context mechanisms depending on the type of
  formation.

- **Local context for single-candle reversals.** Hammer, Inverse Hammer,
  Hanging Man, Shooting Star, Dragonfly Doji and Gravestone Doji use a short
  local directional move measured over `SwingBars`. The net close-to-close
  movement must exceed `SwingATRFactor × ATR` to be classified as a clear
  local upswing or downswing.

  Hammer/Hanging Man and Inverse Hammer/Shooting Star share the same basic
  candle geometry, so the local move is also used to decide which member of
  each pair is more appropriate. When the local move is ambiguous, candle
  direction is used as a tie-breaker.

- **Broader context for multi-candle reversals.** Engulfing, Morning/Evening
  Star, 3 White Soldiers/Black Crows, Harami, Piercing Line and Dark Cloud
  Cover use the selected trend method across the bars immediately preceding
  the complete pattern.

  `TrendMethod` can be:

  - `0` — three-MA alignment,
  - `1` — ADX directional bias,
  - `2` — adaptive MA / KAMA slope,
  - `3` — majority vote requiring agreement from at least two of the three.

  The prior-context scan uses `PriorTrendBars`. A clear opposite prior trend
  rejects the formation. If the context is flat or ambiguous, the indicator
  deliberately remains permissive and allows the candle pattern itself to be
  shown.

- **Three-MA trend method.** Bullish trend requires Fast MA > Mid MA > Slow
  MA; bearish trend requires the reverse ordering.

- **ADX trend method.** Direction is taken from +DI versus -DI only when ADX
  reaches `ADX_Threshold`. Below that threshold the ADX method returns a flat
  reading.

- **Adaptive MA method.** BCPF computes a native Kaufman-style adaptive moving
  average and evaluates its slope over `AMA_Slope` bars. A small ATR-based
  noise filter prevents tiny fluctuations from being classified as trend.

- **Trend panel.** If `ShowTrendPanel` is enabled, four live readings are
  displayed: `MA3`, `ADX`, `AMA` and `VOTE`, each shown as `UP`, `DOWN` or
  `FLAT`. The panel also identifies which method is currently selected for
  the multi-candle trend filter.

- **Interactive checklist.** Each of the 9 bullish and 9 bearish formations
  can be toggled independently from the on-chart panel. Pattern choices are
  stored in MT4 terminal global variables and restored between sessions.

- **Stable chart labels.** Detected formations are labeled on their candle
  using the candle timestamp as part of the object identity, so labels remain
  attached to the correct candle as bar indexes shift with new data.

- **Confirmed or live detection.** With `ShowOnlyConfirmed = true`, BCPF scans
  only closed candles. If a valid formation is present, it is identified and
  labeled as soon as the indicator processes the newly closed candle — in
  normal MT4 operation, on the first tick/calculation of the new bar. There is
  therefore no additional confirmation delay beyond the candle close itself.

  When `ShowOnlyConfirmed` is disabled, the current forming candle is evaluated
  as well; such a provisional pattern can therefore appear before close and
  disappear again if the candle's shape changes.

- **Alerts and push notifications.** `ShowAlerts` and `SendPushNotif` can
  announce a pattern on the currently monitored candle. Each pattern is
  de-duplicated by candle timestamp so the same formation is not repeatedly
  announced on every tick.

## What you can configure

| Group | Parameters |
|---|---|
| Shape thresholds | `ATRPeriod`, `SmallBodyFactor`, `LargeBodyFactor`, `StarBodyFactor`, `DojiBodyFactor`, `MarubozuWickFactor`, `WickMinRatio`, `WickMaxBodyRatio`, `WickMaxOppositeRatio`, `SoldierCrowWickFactor` |
| Detection behaviour | `ShowOnlyConfirmed`, `MaxBarsBack` |
| Notifications | `ShowAlerts`, `SendPushNotif` |
| Visuals | `BullishColor`, `BearishColor`, `LabelFontSize`, `LabelOffsetPips`, `PanelX`, `PanelY` |
| Trend filter | `UseTrendFilter`, `ShowTrendPanel`, `TrendMethod`, `PriorTrendBars`, `SwingBars`, `SwingATRFactor` |
| Moving averages | `MA_Fast`, `MA_Mid`, `MA_Slow`, `MA_Type`, `MA_Price` |
| ADX | `ADX_Period`, `ADX_Threshold` |
| Adaptive MA (KAMA) | `AMA_Period`, `AMA_FastEMA`, `AMA_SlowEMA`, `AMA_Slope` |

## Default settings

- `ATRPeriod = 14`
- Body factors:
  - `SmallBodyFactor = 0.30`
  - `LargeBodyFactor = 0.70`
  - `StarBodyFactor = 0.30`
  - `DojiBodyFactor = 0.10`
- `MarubozuWickFactor = 0.10`
- Wick/range thresholds:
  - `WickMinRatio = 0.55`
  - `WickMaxBodyRatio = 0.30`
  - `WickMaxOppositeRatio = 0.15`
  - `SoldierCrowWickFactor = 0.30`
- `ShowOnlyConfirmed = true`
- `ShowAlerts = false`
- `SendPushNotif = false`
- Bullish color: **Lime**
- Bearish color: **Red**
- `LabelFontSize = 8`
- `LabelOffsetPips = 5`
- `MaxBarsBack = 500`
- Panel position: `X = 10`, `Y = 20`
- `UseTrendFilter = true`
- `ShowTrendPanel = true`
- `TrendMethod = 3` — majority vote (2 of 3)
- `PriorTrendBars = 30`
- `SwingBars = 8`
- `SwingATRFactor = 0.5`
- Moving averages:
  - Fast = **20**
  - Mid = **50**
  - Slow = **200**
  - type = **EMA**
  - applied price = **Close**
- ADX:
  - period = **14**
  - threshold = **20.0**
- Adaptive MA / KAMA:
  - efficiency-ratio period = **10**
  - fast EMA = **2**
  - slow EMA = **30**
  - slope lookback = **3**

## Interpretation

BCPF is a **pattern-identification and context tool**, not a standalone trading
system.

A candlestick formation is a description of recent price geometry, not a
guarantee of what price will do next. The optional context filters are intended
to reduce obvious mismatches between a reversal pattern and the price action
that preceded it, but they do not turn a candlestick pattern into a certainty.

The checklist is therefore intentionally flexible: the user can decide which
formations are useful for a particular market and ignore the rest.

Recommended products
Better Moving Average
Vincent Jose Proenca
STRUCTURAL TREND LINES - MT4 Indicator Simple indicator that automatically draws trend lines based on market structure. Features: - 3 degrees of structure detection (short, medium, long term) - Configurable swing strength for each degree - Single color per degree for clean visualization - Adjustable number of lines per degree - Customizable colors and line widths How it works: The indicator identifies swing highs and lows based on the strength parameter, then connects these points to create t
FREE
UPD1 Fibo Levels
Vitaliy Kuznetsov
5 (3)
The indicator analyzes the specified number of candles and plots Fibonacci levels based on the high-low. Since the levels are rearranging, we are interested in the right side of the range. The price magnetizes the levels and reacts to the touch. Use this tool to find a trend entry point after a correction. If on the left we see that the levels have risen perfectly, then we can assume that we have found the end of the movement at the extreme point. All lines are drawn through buffers or objects (
FREE
Doji Bar Finder Indicator
Ahmad Ar Abedalaziz Alazaizeh
This automated DOJI BAR FINDER INDICATOR can be utilized to manage trades and identify potential areas of support and resistance for both buying and selling. It is designed to identify zones for Sell/Buy trades and can be effectively used in conjunction with other indicators, such as order block indicators, and more. Currently designed for MT4, it will later be adapted to function on MT5. We also offer the opportunity to customize the robot according to your trading strategy.
FREE
SRP (Strong Retracement/Reversal Points) is a powerful and unique support and resistance indicator. It displays the closest important levels which we expect the price retracement/reversal! If all level are broken from one side, it recalculates and draws new support and resistance levels, so the levels might be valid for several days depending on the market! Key Features You can use it in all time-frames smaller than daily! Displays closest significant support and resistance levels Update the le
FREE
Updates 9/12/2023 - If you are looking for the Spock EA, I don't sell it anymore. DM me for more info. 24/10/2023  -  Check out my other products. Starting to roll out some EAs & indicators based on this range. Currently there is no MT5 version. I am using MT4 myself. So I will spend my time mostly to develop more extensive stats for the Stats version and maybe even an EA. But I might  develop a MT5 version. All depends on the demand. Meaning, the more people request it, the bigger the chan
FREE
Индикатор  уровней поддержки и сопротивления отлично показывает на графике все силовые уровни от всех таймфреймов. Рекомендую торговать уровни старших таймфреймов. Индикатор на текущем таймфрейме обновляться как только на графике  появится новый сетап  The indicator of support and resistance levels perfectly shows all power levels from all timeframes on the chart. I recommend trading higher timeframe levels. The indicator on the current timeframe is updated as soon as a new setup appears on the
FREE
pivot points using by many traders and pivot levels most of the times are very helpfull . this indicator is a custom with internal parameters. it can show two times pivot (weekly and daily). you can choose periods total for each time showing pivots.( 1 week , 2 week ,...1day , 2day ,...) when use weekly and daily pivots , it can show you many support and resistance zones. if have proposal comment too me for upgrading indicator.
FREE
.....................................hi....................... ................for showing high s and low s and support and resistanses .....................we have a lot of ways............................... it can be helpful for finding trends , higher highs , higher lows , lower highs , lower lows .......................today i write on of thems.......................... ........................you can enter the number of last support and resistanses .........................and it will dra
FREE
Awesome Pivot Indicator
Komang Putra Riswanjaya
The Pivot Indicator is a vital tool for technical analysis used by traders in the financial markets. Designed to assist in identifying potential reversal points or trend changes, this indicator provides valuable insights into key levels in the market. Key features of the Pivot Indicator include: Automatic Calculations: The Pivot Indicator automatically calculates Pivot Point, Support, and Resistance levels based on the previous period's high, low, and close prices. This eliminates the complexity
FREE
Wise Men Indicator demo
Bohdan Kasyanenko
3 (2)
The indicator displays signals according to the strategy of Bill Williams on the chart. Demo version of the indicator has the same features as the paid, except that it can work only on a demo account . Signal "First Wise Man" is formed when there is a divergent bar with angulation.  Bullish divergent bar - with lower minimum and closing price in the upper half. Bearish divergent bar - higher maximum and the closing price at the bottom half. Angulation is formed when all three lines of Alligator
FREE
.................................if you need pivot point s levels............................... ............................this is a daily pivot point level creator........................... ...it is for daily pivots and show levels at times period H4 , H1 , M30 , M15 ,M 5... .................................also shows levels for 3 last days.............................. ................can use it with other indicators and see important levels...............
FREE
Our offer also includes a free panel — Indicator Panel — which allows you to show or hide indicators created by BOToBRACIA. High and Low Points is a practical technical analysis indicator that plots levels corresponding to the highs and lows from previous periods (day / week / month) — levels that, in the Smart Money Concepts (SMC) and ICT approach, are treated as liquidity zones, while in classical technical analysis they serve as potential support and resistance levels. Indicator settings: •
FREE
Ava Ffx Signal
Nirundorn Promphao
The principle of this indicator is very simple: detecting the candlestick pattern in H1 timeframe, then monitoring the return point of graph by using the pullback of High-Low of H1 Candlestick and finally predicting BUY and SELL signal with arrows, alerts and notifications. The parameters are fixed and automatically calculated on each time frame. Example: If you install indicator on XAUUSD, timeframe H1: the indicator will detect the reversal, pullback, price action on this timeframe (for exam
FREE
MQL5 Blogs : https://www.mql5.com/en/blogs/post/772494 MT4 Version : https://www.mql5.com/en/market/product/185408 MT5 Version : https://www.mql5.com/en/market/product/185407 RSI HEATMAP [tambangEA] is a professional momentum and market-structure indicator that combines the Relative Strength Index, an RSI signal line, confirmed crossover logic, dynamic support and resistance levels, real-time market information, and fast multi-symbol chart navigation. The indicator is designed to help traders
RSI Border Search scans up to 64 symbols across 7 timeframes (448 combinations) in real time, detecting when RSI reaches overbought or oversold levels on confirmed bars. KEY FEATURES - Multi-Symbol Scanner: Monitor up to 64 symbols x 7 timeframes = 448 cells simultaneously. - RSI Boundary Detection: Detects when RSI crosses above or below your specified boundary level on confirmed (closed) bars. - No Repaint: Only confirmed bars are evaluated. The forming bar is never used, so signals
FREE
LineBreakMT4
Nattadecha Tangpakinwat
Key Features: Type of Indicator: Line Break Chart Indicator Usage: Identifying trend reversals and potential market turning points. Input Parameters: The primary input parameter is 'Lines_Break,' which represents the number of lines the price needs to move to create a new line in the opposite direction. How it works: The indicator draws green and red histogram bars to represent the line break chart. Green bars indicate an upward trend, and red bars indicate a downward trend. The indicator calcul
FREE
Extremum Reverse Bar
Yurij Izyumov
2.8 (5)
This indicator has been created for finding the probable reversal points of the symbol price. A small candlestick reversal pattern is used it its operation in conjunction with a filter of extremums. The indicator is not redrawn! If the extremum filter is disabled, the indicator shows all points that have a pattern. If the extremum filter is enabled, the condition works – if the history Previous bars 1 candles back contains higher candles and they are farther than the Previous bars 2 candle, such
FREE
Comfort zone signal
Mariusz Piotr Rodacki
The " Comfort Zone Signal " indicator identifies a daily zone that, when broken, has a high probability of the market continuing the established trend . Upon signal, the indicator calculates stop loss and take profit, which can be set by you. You can also set the trend. If the price is above the MA, it looks only for long positions, if below, it looks only for short positions. You can choose to ignore the moving average and display all signals. Additionally, you have the risk percentage displ
FREE
Necessary for traders: tools and indicators Waves automatically calculate indicators, channel trend trading Perfect trend-wave automatic calculation channel calculation , MT4 Perfect trend-wave automatic calculation channel calculation , MT5 Local Trading copying Easy And Fast Copy , MT4 Easy And Fast Copy , MT5 Local Trading copying For DEMO Easy And Fast Copy , MT4 DEMO Easy And Fast Copy , MT5 DEMO The homeopathic indicator is also called the CCI indicator. The CCI indicator was proposed
FREE
Peak Trough Analysis is the great tool to detect peaks and troughs in your chart. Peak Trough Analysis tool can use three different peaks and troughs detection algorithm. The three algorithm include the orignal Fractals Indicator by Bill Williams, the Modified Fractals indicator and ZigZag indicator. You can use this peak and trough analysis tool to detect the price pattern made up from Equilibrium Fractal-Wave process. For further usage, there are good guide line on how to use this peak trough
FREE
MQLTA Bollinger Bands Breakout Alert
MQL4 Trading Automation
3.75 (4)
Bollinger Bands Breakout Alert is a simple indicator that can notify you when the price breaks out of the Bollinger Bands. You just need to set the parameters of the Bollinger Bands and how you want to be notified. Parameters: Indicator Name - is used for reference to know where the notifications are from Bands Period - is the period to use to calculate the Bollinger Bands Bands Shift - is the shift to use to calculate the Bollinger Bands Bands Deviation - is the deviation to use to calculate t
FREE
This is just a simple indicator that show Alert when the Current candle Close Above the Trendline. Previous candle do not affect the Alert.  The indicator is tied to the Trendline so if the Trendline is accidentally deleted, the Alert will not work. The indicator will draw another Trendline if the current Trendline is deleted.  Removing the indicator will removed the Trendline. There are 4 type of Alert to set: Popup Alert, Signal Alert, Push Notification, Comment.
FREE
FusionAlert StochRSI Master is an indicator available for MT4/MT5 platforms, it is a combination of RSI & Stochastic indicator which provide "alerts" when the market is inside "overbought and oversold" regions combined for both indicators, results in more precise and accurate signals to be used as a wonderful tool, in the form of "buy or sell" signals. This indicator comes with many customization options mentioned in the parameter section below, user can customise these parameters as needful. Jo
FREE
Follow The Line
Oliver Gideon Amofa Appiah
3.94 (16)
FOLLOW THE LINE GET THE FULL VERSION HERE: https://www.mql5.com/en/market/product/36024 This indicator obeys the popular maxim that: "THE TREND IS YOUR FRIEND" It paints a GREEN line for BUY and also paints a RED line for SELL.  It gives alarms and alerts of all kinds. IT DOES NOT REPAINT and can be used for all currency pairs and timeframes. Yes, as easy and simple as that. Even a newbie can use it to make great and reliable trades. NB: For best results, get my other premium indicators for more
FREE
Automatic Fibonacci Pivots
Martin Alejandro Bamonte
Now free. The key Fibonacci pivot levels, drawn for you automatically every day, on any timeframe. Automatic Fibonacci Pivots calculates the daily support and resistance from the Fibonacci sequence and plots them clean on your chart: the daily pivot, S1/S2/S3 below and R1/R2/R3 above. These are the price zones where the market tends to react, bounce or break, and now you see them without drawing a single line. What it does: - Daily Fibonacci pivot levels (pivot, S1/S2/S3, R1/R2/R3), updated
FREE
Double Price Channel   Price channel indicator for a certain number of bars specified in the settings. Indicator lines represent dynamic support or resistance levels. The upper limit is the price maximum for a certain number of periods, the lower one is the minimum. Unlike moving averages, which are based on close prices, the indicator is not “distracted” by small fluctuations. It will be recalculated only if the boundaries change. If the latter happens, then it is worth seriously thinking about
FREE
It works based on the Stochastic Indicator algorithm. Very useful for trading with high-low or OverSold/Overbought swing strategies. StochSignal will show a buy arrow if the two lines have crossed in the OverSold area and sell arrows if the two lines have crossed in the Overbought area. You can put the Stochastic Indicator on the chart with the same parameters as this StochSignal Indicator to understand more clearly how it works. This indicator is equipped with the following parameters: Inputs d
FREE
Ppr PA
Yury Emeliyanov
4.75 (4)
"Ppr PA" is a unique technical indicator created to identify "PPR" patterns on the currency charts of the MT4 trading platform. These patterns can indicate possible reversals or continuation of the trend, providing traders with valuable signals to enter the market. Features: Automatic PPR Detection: The indicator automatically identifies and marks PPR patterns with arrows on the chart. Visual Signals: Green and red arrows indicate the optimal points for buying and selling, respectively. Arrow
FREE
WH DrawFib Pro MT4
Wissam Hussein
5 (7)
Are you tired of manually drawing Fibonacci levels on your charts? Are you looking for a convenient and efficient way to identify key support and resistance levels in your trading? Look no further!  Introducing DrawFib Pro, the ultimate MetaTrader 4 indicator that does auto f ibonacci   levels   drawing on your charts and provides timely alerts when these levels are breached. With Draw Fib Pro, you can enhance your trading strategies, save time, and make more informed decisions. My fibonacci bas
FREE
The London Breakout
Elvis Wangai Muriithi
5 (1)
The London breakout is an indicator that is designed to give London moves signals and performance. London session is such a very volatile trading hours and anticipating a breakout from one of the slowest trading sessions (Asian session) can result to potential trading profits. London breakout is a very common trading strategy among retail traders. This indicator will track previous London breakouts, calculate their trade outcome based on an input TP and SL factor and display the results on a sim
FREE
Buyers of this product also purchase
Gann Made Easy
Oleg Rodin
4.84 (171)
Gann Made Easy is a professional and easy to use Forex trading system which is based on the best principles of trading using the theory of W.D. Gann. The indicator provides accurate BUY and SELL signals including Stop Loss and Take Profit levels. You can trade even on the go using PUSH notifications. PLEASE CONTACT ME AFTER PURCHASE TO GET TRADING  INSTRUCTIONS   AND GREAT EXTRA INDICATORS  FOR FREE! Probably you already heard about the Gann trading methods before. Usually the Gann theory is a
Neuro Poseidon MT4
Daria Rezueva
4.8 (45)
Neuro Poseidon is a new indicator by Daria Rezueva. It combines precise trading signals with adaptive TP/SL levels - creating best possible trades as a result! Message me and get  Neuro Poseidon Assistant  as a gift to automize your trading process! What makes it stand out? 1. Proven profitability on all assets and timeframes 2. Only confirmed BUY and SELL signals present on the chart 3. Adaptive TP & SL levels generated by the software for each trade 4. Easy to understand - suitable for all
M1 Sniper
Oleg Rodin
5 (26)
M1 SNIPER  is an easy to use trading indicator system. It is an arrow indicator which is designed for M1 time frame. The indicator can be used as a standalone system for scalping on M1 time frame and it can be used as a part of your existing trading system. Though this trading system was designed specifically for trading on M1, it still can be used with other time frames too. Originally I designed this method for trading XAUUSD and BTCUSD. But I find this method helpful in trading other markets
Prop Firm Sniper
Mohamed Hassan
4.33 (6)
Prop Firm Sniper MT4  is a professional market structure indicator that automatically identifies high-probability BUY and SELL opportunities using BOS and CHoCH analysis. Recommended Timeframes: For backtesting, use the indicator on   M5 or M15   for Gold (XAUUSD), and   M15 or H1   for more volatile Forex pairs such as   GBPUSD, USDJPY, EURGBP , and similar markets. CONTACT ME AFTER PURCHASE TO CLAIM YOUR FREE BONUSES! Prop Firm Sniper  is a professional market structure indicator designed t
BTMM State Engine Pro by G-Labs — Beat The Market Maker indicator for MetaTrader 4. Asian session range, London and New York kill zones, level progression (L1/L2/L3), peak formation detection (PFH/PFL), entry signals, and a multi-pair scanner from one chart. Stop scanning charts one pair at a time. The State Engine tracks the BTMM daily cycle automatically — Asian box, room boundaries, level blocks, peak formations, and filtered entries — while the scanner dashboard shows level, peak status,
DayTrader PRO MT4
Davit Beridze
5 (1)
DayTrader PRO DayTrader PRO   is an advanced trading indicator that combines John Ehlers' Laguerre Filter with a powerful Auto-Optimization Engine. Instead of using fixed parameters, the indicator automatically searches for the best settings based on recent market conditions, helping you adapt to changing volatility without constant manual adjustments. The indicator generates clear   BUY   and   SELL   signals together with adaptive   Stop Loss   and   Take Profit   levels calculated from curre
KURAMA GOLD SIGNAL PRO (MT4) — 7-Layer Filter, Auto TP/SL, Quality Score & Signal History Save | Complete XAUUSD Trading System No repaint in real time. The moment a signal appears, the arrow, entry, TP and SL are locked on the spot and never move afterward. What you trade is this real-time signal. And in v7.20, every signal that is actually sent is auto-saved and restored exactly after restart. BUYER BONUS Buy the lifetime license and receive AI Zone Radar (
Scalper Inside PRO
Alexey Minkov
4.74 (68)
Scalper Inside PRO helps you read the intraday trend and plan your trade before you enter. It uses exclusive built-in algorithms to evaluate market direction and calculate key target levels the moment a signal appears, so you always see the potential entry, stop-loss and profit targets ahead of time. The indicator also shows detailed performance statistics on historical data, so you can see how different instruments and strategies behaved and choose what fits current market conditions. You can e
Supply and Demand Dashboard PRO
Bernhard Schweigert
4.81 (21)
Trading Special – 30% OFF This dashboard is a very powerful piece of software working on multiple symbols and up to 9 timeframes. It is based on our main indicator (Best reviews:   Advanced Supply Demand ). The dashboard gives a great overview. It shows: Filtered Supply and Demand values including zone strength rating, Pips distances to/and within zones, It highlights nested zones, It gives 4 kind of alerts for the chosen symbols in all (9) time-frames. It is highly configurable for your pers
SR Liquidity
Oleg Rodin
5 (1)
SR Liquidity is a trading indicator designed to reveal the hidden zones where market liquidity concentrates and price reacts most strongly. These special liquidity areas act as powerful support and resistance levels, giving you a clear map of where the market is most likely to reverse. Instead of drawing ordinary Support/Resistance lines, SR Liquidity analyzes real price behavior to detect the zones where buying and selling pressure accumulate. These are actually the pools of liquidity that driv
Quantum Breakout Indicator PRO
Bogdan Ion Puscasu
4.96 (26)
Introducing   Quantum Breakout PRO , the groundbreaking MQL5 Indicator that's transforming the way you trade Breakout Zones! Developed by a team of experienced traders with trading experience of over 13 years, Quantum Breakout PRO is designed to propel your trading journey to new heights with its innovative and dynamic breakout zone strategy. Quantum Breakout Indicator will give you signal arrows on breakout zones with 5 profit target zones and stop loss suggestion based on the breakout box. I
Trend Catcher ind
Ramil Minniakhmetov
5 (11)
TREND CATCHER INDICATOR Trend Catcher Indicator analyzes market price movements, using a combination of the author’s proprietary and customized adaptive trend-analysis indicators.  It identifies the true market direction by filtering out short-term noise and focusing on underlying momentum strength, volatility expansion, and price structure behavior.  It also uses a combination of smoothing and trend-filtering customized indicators such as moving averages, RSI, and volatility filters.   Real ope
Super Signal – Skyblade Edition Professional No-Repaint / No-Lag Trend Signal System with Exceptional Win Rate | For MT4 / MT5 It works best on lower timeframes, such as 1-minute, 5-minute, and 15-minute charts. Core Features: Super Signal – Skyblade Edition is a smart signal system designed specifically for trend trading. It applies a multi-layered confirmation mechanism to detect only strong, directional moves supported by real momentum. This system does not attempt to predict tops or bottoms
Zoryk Gold mt4
Reda El Koutbane
discount ends in 24 h original price 69 $ ZORYK — Advanced XAUUSD Signal System for MetaTrader 4 You know the feeling. You spend time analyzing gold. You wait for the entry. You finally open the trade, and price immediately moves against you. You close too early, move the Stop Loss, or hesitate for a few seconds. Then the market reaches the exact destination you originally expected without you. The direction was not always the problem. The real problem was uncertainty. You did not know exa
Advanced Supply Demand
Bernhard Schweigert
4.91 (302)
Trading Special – 30% OFF Best Solution for any Newbie or Expert Trader! This indicator is a unique, high quality and affordable trading tool because we have incorporated a number of proprietary features and a new formula. With this update, you will be able to show double timeframe zones. You will not only be able to show a higher TF but to show both, the chart TF, PLUS the higher TF: SHOWING NESTED ZONES. All Supply Demand traders will love it. :) Important Information Revealed Maximize the pot
Neo Wave PRO
Nikolay Raykov
5 (1)
Price & Time Market Structure Indicator A professional market structure tool that analyzes waves through both price and time — not price alone. Main Description NeoWave PRO is a professional market structure indicator for MetaTrader 4 designed for traders who want to move beyond traditional one-dimensional wave tools such as ZigZag, swing indicators, and basic high/low systems. Most wave indicators analyze only one thing: Price. But a real market wave is not only a price movement. A true wave de
AW Candle Patterns MT4
AW Trading Software Limited
The AW Candle Patterns indicator is a combination of an advanced trend indicator combined with a powerful candle pattern scanner. It is a useful tool for recognizing and highlighting the thirty most reliable candlestick patterns. In addition, it is a current trend analyzer based on colored bars with a   plug-in multi-timeframe trend panel that can be resized and positioned. A unique ability to adjust the display of patterns depending on the trend filtering. Advantages: Easily identifies candle p
All in One Trade
Alexey Minkov
4.5 (28)
All-in-One Trade Indicator (AOTI) – Since 2015. The All-in-One Trade Indicator (AOTI) determines daily targets for EURUSD, EURJPY, GBPUSD, USDCHF, EURGBP, EURCAD, EURAUD, AUDJPY, GBPAUD, GBPCAD, GBPCHF, GBPJPY, AUDUSD, and USDJPY. All other modules work with any trading instruments. The indicator includes various features, such as Double Channel trend direction, Price channel, MA Bands, Fibo levels, Climax Bar detection, and others. The AOTI indicator is based on several trading strategies, and
Currency Strength Wizard is a very powerful indicator that provides you with all-in-one solution for successful trading. The indicator calculates the power of this or that forex pair using the data of all currencies on multiple time frames. This data is represented in a form of easy to use currency index and currency power lines which you can use to see the power of this or that currency. All you need is attach the indicator to the chart you want to trade and the indicator will show you real str
ECM Elite Channel is a volatility-based indicator, developed with a specific time algorithm, which consists of finding possible corrections in the market. This indicator shows two outer lines, an inner line (retracement line) and an arrow sign, where the channel theory is to help identify overbought and oversold conditions in the market. The market price will generally fall between the boundaries of the channel. If prices touch or move outside the channel, it's a trading opportunity. The ind
This product was   updated   for the   2026 market   and   optimized   for the   latest MT5 builds . PRICE UPDATE NOTICE: Smart Trend Trading System   is currently available for $99. The price will   increase to $199   after the next   30 purchases. SPECIAL OFFER:  After purchasing Smart Trend Trading System, send me a private message to claim the Smart Universal EA for FREE and turn your Smart Trend signals into automated trades. Smart Trend Trading System is a complete non-repainting, non-re
FX Power MT4 NG
Daniel Stein
4.95 (21)
FX Power: Analyze Currency Strength for Smarter Trading Decisions Overview FX Power is your go-to tool for understanding the real strength of currencies and Gold in any market condition. By identifying strong currencies to buy and weak ones to sell, FX Power simplifies trading decisions and uncovers high-probability opportunities. Whether you’re looking to follow trends or anticipate reversals using extreme delta values, this tool adapts seamlessly to your trading style. Don’t just trade—trade
Scalper Vault
Oleg Rodin
5 (37)
Scalper Vault is a professional scalping system which provides you with everything you need for successful scalping. This indicator is a complete trading system which can be used by forex and binary options traders. The recommended time frame is M5. The system provides you with accurate arrow signals in the direction of the trend. It also provides you with top and bottom signals and Gann market levels. The indicator provides all types of alerts including PUSH notifications. PLEASE CONTACT ME AFT
BUY 1 and GET 1 FREE - Promotion! Buy Trend Reader Indicator with a huge –60% discount and GET 1 FREE EA by your choice! Promo Price: $117 (Regular Price: $297 — You Save $180! Don't Miss!) After purchase contact me to get your GIFT EA! You can also contact me to get the list of available GIFT EAs! Trend Reader Indicator is a revolutionary trading indicator designed to empower forex traders with the tools they need to make informed trading decisions. This cutting-edge indicator utilizes compl
Volatility Trend System - a trading system that gives signals for entries. The volatility system gives linear and point signals in the direction of the trend, as well as signals to exit it, without redrawing and delays. The trend indicator monitors the direction of the medium-term trend, shows the direction and its change. The signal indicator is based on changes in volatility and shows market entries. The indicator is equipped with several types of alerts. Can be applied to various trading ins
Volume Break Oscillator is an indicator that matches price movement with volume trends in the form of an oscillator. I wanted to integrate volume analysis into my strategies but I have always been disappointed by most volume indicators, such as OBV, Money Flow Index, A/D but also as Volume Weighted Macd and many others. I therefore wrote this indicator for myself, I am satisfied with how useful it is, and therefore I decided to publish it on the market. Main features: It highlights the phase
Atomic Analyst
Issam Kassas
5 (11)
This product was   updated   for   the 2026 market   and   optimized   for the   latest MT5 builds. PRICE UPDATE NOTICE: Atomic Analyst is currently available for $99. The price will increase to $199 after the next 30 purchases. SPECIAL OFFER:  After purchasing Atomic Analyst, send me a private message to claim the Smart Universal EA for FREE and turn your Atomic Analyst signals into automated trades. Atomic Analyst is a non-repainting, non-redrawing, and non-lagging price action trading indic
Color Trend FX
Alexey Minkov
4 (4)
Color Trend FX – Since 2017. The indicator shows on the chart the accurate market entry points, accurate exit points, maximum possible profit of a deal (for those who take profit according to their own system for exiting deals), points for trailing the open positions, as well as detailed statistics. Statistics allows to choose the most profitable trading instruments, and also to determine the potential profits. The indicator does not redraw its signals! The indicator is simple to set up and man
Linear Trend Predictor - A trend indicator that combines entry points and direction support lines. It works on the principle of breaking through the High/Low price channel. The indicator algorithm filters market noise, takes into account volatility and market dynamics. Indicator capabilities Using smoothing methods, it shows the market trend and entry points for opening BUY or SELL orders. Suitable for determining short-term and long-term market movements by analyzing charts on any timeframes.
This dashboard is an alert tool for use with the market structure reversal indicator. It's primary purpose is to alert you to reversal opportunities on specific time frames and also to the re-tests of the alerts (confirmation) as the indicator does. The dashboard is designed to sit on a chart on it's own and work in the background to send you alerts on your chosen pairs and timeframes. It was developed after many people requested a dash to monitor multiple pairs and time frames at once rather th
More from author
SupandResFinderMaster
Jerzy Krzysztof Bednarski
## What it does SRLF is an MT4 on-chart indicator that identifies and draws probable support and resistance zones as shaded boxes. It combines confirmed swing points, directional tick-volume pressure, and a lightweight market-structure read to estimate areas where support or resistance is more likely to form. The indicator keeps the most recently qualified support and resistance zones active, extends them forward, monitors their interaction with price, and detects confirmed breaks and role re
FREE
Filter:
No reviews
Reply to review