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.

Prodotti consigliati
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)
L'indicatore analizza il numero di candele specificato e costruisce i livelli di Fibonacci in base al massimo e al minimo. Poiché i livelli vengono ricostruiti, siamo interessati al lato destro dell'intervallo. Il prezzo è magnetico rispetto ai livelli e reagisce a un tocco. Utilizzate questo strumento per trovare un punto di ingresso nel trend dopo una correzione. Se a sinistra vediamo che i livelli sono perfettamente al rialzo, allora possiamo presumere di aver trovato la fine del movimento ne
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
Blog MQL5: https://www.mql5.com/en/blogs/post/772494 Versione MT4: https://www.mql5.com/en/market/product/185408 Versione MT5: https://www.mql5.com/en/market/product/185407 RSI HEATMAP [tambangEA] è un indicatore professionale di momentum e struttura di mercato che combina l'Indice di Forza Relativa (RSI), una linea di segnale RSI, una logica di crossover confermata, livelli di supporto e resistenza dinamici, informazioni di mercato in tempo reale e una rapida navigazione del grafico multi-sim
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. Ar
FREE
WH DrawFib Pro MT4
Wissam Hussein
5 (7)
Sei stanco di disegnare manualmente i livelli di Fibonacci sui tuoi grafici? Stai cercando un modo conveniente ed efficiente per identificare i principali livelli di supporto e resistenza nel tuo trading? Non guardare oltre!   Ti presentiamo DrawFib Pro, l'ultimo indicatore MetaTrader 4 che fa   i livelli   di fibonacci   automatici       attingendo ai tuoi grafici e fornisce avvisi tempestivi quando questi livelli vengono superati. Con DrawFib Pro puoi migliorare le tue strategie di trading, ri
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
Gli utenti di questo prodotto hanno anche acquistato
Gann Made Easy
Oleg Rodin
4.84 (171)
Gann Made Easy è un sistema di trading Forex professionale e facile da usare che si basa sui migliori principi del trading utilizzando la teoria di mr. WD Gann. L'indicatore fornisce segnali ACQUISTA e VENDI accurati, inclusi i livelli di Stop Loss e Take Profit. Puoi fare trading anche in movimento utilizzando le notifiche PUSH. CONTATTAMI DOPO L'ACQUISTO PER RICEVERE GRATUITAMENTE LE ISTRUZIONI DI TRADING E OTTIMI INDICATORI EXTRA! Probabilmente hai già sentito parlare molte volte dei metodi d
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 è un sistema di indicatori di trading facile da usare. Si tratta di un indicatore a freccia progettato per l'intervallo temporale M1. L'indicatore può essere utilizzato come sistema autonomo per lo scalping sull'intervallo temporale M1 e come parte del tuo sistema di trading esistente. Sebbene questo sistema di trading sia stato progettato specificamente per il trading sull'intervallo temporale M1, può comunque essere utilizzato anche con altri intervalli temporali. Inizialmente ho pro
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 è un indicatore di trading avanzato che combina il filtro Laguerre di John Ehlers con un potente motore di auto-ottimizzazione. Invece di utilizzare parametri fissi, l'indicatore ricerca automaticamente le migliori impostazioni in base alle condizioni recenti del mercato, aiutandoti ad adattarti alla volatilità variabile senza costanti aggiustamenti manuali. L'indicatore genera segnali chiari di ACQUISTO (BUY) e VENDITA (SELL), insieme a livelli adattivi di Stop Loss
KURAMA GOLD SIGNAL PRO (MT4) — Filtro a 7 livelli · TP/SL automatico · Punteggio di qualità · Salvataggio dello storico dei segnali | Sistema di trading completo per XAUUSD Nessun ridisegno (repaint) in tempo reale. Nell'istante in cui appare un segnale, freccia, ingresso, TP e SL vengono bloccati sul posto e non si spostano mai più. Ciò che fai tradare è proprio questo segnale in tempo reale. E nella v7.20, ogni segnale realmente inviato viene salvato automaticamente e ripristinato con esattez
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)
Attualmente 30% di sconto! Questo cruscotto è un software molto potente che lavora su più simboli e fino a 9 timeframe. Si basa sul nostro indicatore principale (migliori recensioni: Advanced Supply Demand ).   Il cruscotto offre un'ottima panoramica. Mostra:    Valori filtrati di domanda e offerta, compresa la valutazione della forza delle zone, distanze dei pip da/all'interno delle zone, Evidenzia le zone annidate, Fornisce 4 tipi di allarmi per i simboli scelti in tutti i (9) time-frames.
SR Liquidity
Oleg Rodin
5 (1)
SR Liquidity è un indicatore di trading progettato per individuare le zone nascoste in cui si concentra la liquidità di mercato e dove il prezzo reagisce con maggiore intensità. Queste aree di liquidità agiscono come potenti livelli di supporto e resistenza, offrendo una mappa chiara dei punti in cui è più probabile che il mercato inverta la propria direzione. Invece di tracciare le classiche linee di supporto e resistenza, SR Liquidity analizza l'effettivo comportamento dei prezzi per individua
Quantum Breakout Indicator PRO
Bogdan Ion Puscasu
4.96 (26)
Presentazione       Quantum Breakout PRO   , l'innovativo indicatore MQL5 che sta trasformando il modo in cui scambi le zone di breakout! Sviluppato da un team di trader esperti con un'esperienza di trading di oltre 13 anni,   Quantum Breakout PRO   è progettato per spingere il tuo viaggio di trading a nuovi livelli con la sua strategia innovativa e dinamica della zona di breakout. Quantum Breakout Indicator ti fornirà frecce di segnalazione sulle zone di breakout con 5 zone target di profitt
Trend Catcher ind
Ramil Minniakhmetov
5 (11)
INDICATORE TREND CATCHER L'indicatore Trend Catcher analizza i movimenti dei prezzi di mercato, utilizzando una combinazione di indicatori di analisi del trend proprietari dell'autore e personalizzati. Identifica la vera direzione del mercato filtrando il rumore a breve termine e concentrandosi sulla forza del momentum sottostante, sull'espansione della volatilità e sul comportamento della struttura dei prezzi. Utilizza inoltre una combinazione di indicatori personalizzati di smoothing e filtr
Super Signal – Skyblade Edition Sistema professionale di segnali di tendenza senza repaint / senza ritardo con tasso di vincita eccezionale | Per MT4 / MT5 Funziona meglio su timeframe più bassi, come 1 minuto, 5 minuti e 15 minuti. Caratteristiche principali: Super Signal – Skyblade Edition è un sistema intelligente di segnali progettato specificamente per il trading di tendenza. Utilizza una logica di filtraggio multilivello per identificare esclusivamente i movimenti direzionali forti, supp
Zoryk Gold mt4
Reda El Koutbane
ZORYK — Sistema avanzato di segnali e pianificazione per XAUUSD su MetaTrader 4 Conosci sicuramente questa situazione. Analizzi l’oro, aspetti l’ingresso e finalmente apri la posizione. Il prezzo si muove immediatamente contro di te. Chiudi troppo presto, sposti lo Stop Loss oppure esiti per alcuni secondi. Poco dopo, il mercato raggiunge esattamente la direzione e l’obiettivo che avevi previsto, ma senza di te. Il problema non era sempre la direzione. Il vero problema era l’incertezza. No
Advanced Supply Demand
Bernhard Schweigert
4.91 (302)
Speciale Trading- SCONTO DEL 30% La soluzione migliore per qualsiasi trader principiante o esperto! Questo indicatore è uno strumento di trading unico, di alta qualità e conveniente, perché abbiamo incorporato una serie di funzionalità proprietarie e una nuova formula. Con questo aggiornamento, potrai visualizzare doppie zone di timeframe. Non solo potrai visualizzare un TF più alto, ma anche entrambi, il TF del grafico e il TF più alto: MOSTRA ZONE ANNIDATE. Tutti i trader che operano con Of
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
L'indicatore AW Candle Patterns è una combinazione di un indicatore di tendenza avanzato combinato con un potente scanner di modelli di candele. È uno strumento utile per riconoscere ed evidenziare i trenta modelli di candele più affidabili. Inoltre, è un analizzatore di trend attuale basato su barre colorate con a       pannello di trend multi-timeframe plug-in che può essere ridimensionato e posizionato. Una capacità unica di regolare la visualizzazione dei modelli in base al filtraggio delle
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 è un indicatore molto potente che ti fornisce una soluzione all-in-one per un trading di successo. L'indicatore calcola la potenza di questa o quella coppia forex utilizzando i dati di tutte le valute su più intervalli di tempo. Questi dati sono rappresentati in una forma di indice di valuta facile da usare e linee elettriche di valuta che puoi utilizzare per vedere il potere di questa o quella valuta. Tutto ciò di cui hai bisogno è collegare l'indicatore al grafico che
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
Questo prodotto è stato aggiornato per il mercato 2026 e ottimizzato per le ultime build di MT5. AVVISO DI AGGIORNAMENTO PREZZO: Smart Trend Trading System è attualmente disponibile a $99 . Il prezzo aumenterà a $199 dopo i prossimi 30 acquisti . OFFERTA SPECIALE: Dopo aver acquistato Smart Trend Trading System, inviami un messaggio privato per ricevere Smart Universal EA GRATIS e trasformare i tuoi segnali Smart Trend in operazioni automatiche. Smart Trend Trading System è un sistema di tradin
FX Power MT4 NG
Daniel Stein
4.95 (21)
FX Power: Analizza la Forza delle Valute per Decisioni di Trading Più Intelligenti Panoramica FX Power è lo strumento essenziale per comprendere la reale forza delle principali valute e dell'oro in qualsiasi condizione di mercato. Identificando le valute forti da comprare e quelle deboli da vendere, FX Power semplifica le decisioni di trading e rivela opportunità ad alta probabilità. Che tu segua le tendenze o anticipi inversioni utilizzando valori estremi di Delta, questo strumento si adatta
Scalper Vault
Oleg Rodin
5 (37)
Scalper Vault è un sistema di scalping professionale che ti fornisce tutto il necessario per scalping di successo. Questo indicatore è un sistema di trading completo che può essere utilizzato dai trader di forex e opzioni binarie. L'intervallo di tempo consigliato è M5. Il sistema fornisce segnali di freccia accurati nella direzione della tendenza. Ti fornisce anche i segnali più alti e più bassi e i livelli di mercato di Gann. Gli indicatori forniscono tutti i tipi di avvisi, comprese le notifi
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 - un sistema di trading che fornisce segnali per le voci. Il sistema di volatilità fornisce segnali lineari e puntuali nella direzione del trend, nonché segnali per uscirne, senza ridisegnare e ritardi. L'indicatore di tendenza monitora la direzione della tendenza a medio termine, mostra la direzione e il suo cambiamento. L'indicatore di segnale si basa sui cambiamenti della volatilità e mostra gli ingressi nel mercato. L'indicatore è dotato di diversi tipi di avvisi. Pu
Volume Break Oscillator è un indicatore che abbina il movimento dei prezzi con le tendenze del volume sotto forma di oscillatore. Volevo integrare l'analisi del volume nelle mie strategie, ma sono sempre stato deluso dalla maggior parte degli indicatori di volume, come OBV, Money Flow Index, A/D ma anche come Volume Weighted Macd e molti altri. Ho quindi scritto questo indicatore per me stesso, sono soddisfatto di quanto sia utile e quindi ho deciso di pubblicarlo sul mercato. Caratteristiche
Atomic Analyst
Issam Kassas
5 (11)
Questo prodotto è stato aggiornato per il mercato 2026 e ottimizzato per le ultime build di MT5. AVVISO DI AGGIORNAMENTO PREZZO: Atomic Analyst è attualmente disponibile a $99 . Il prezzo aumenterà a $199 dopo i prossimi 30 acquisti . OFFERTA SPECIALE: Dopo aver acquistato Atomic Analyst, inviami un messaggio privato per ricevere Smart Universal EA GRATIS e trasformare i tuoi segnali Atomic Analyst in operazioni automatiche. Atomic Analyst è un indicatore di trading Price Action non-repainting
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 : indicatore di tendenza che combina punti di ingresso e linee di supporto direzionale. Funziona secondo il principio di rottura del canale dei prezzi alto/basso. L'algoritmo dell'indicatore filtra il rumore di mercato, tiene conto della volatilità e delle dinamiche di mercato. Capacità dell'indicatore Utilizzando metodi di smoothing, mostra l'andamento del mercato e i punti di ingresso per l'apertura di ordini di ACQUISTO o VENDITA. Adatto per determinare i movimenti d
Questa dashboard è uno strumento di avviso da utilizzare con l'indicatore di inversione della struttura del mercato. Il suo scopo principale è avvisarti di opportunità di inversione su intervalli di tempo specifici e anche di ripetere i test degli avvisi (conferma) come fa l'indicatore. Il dashboard è progettato per essere posizionato su un grafico da solo e funzionare in background per inviarti avvisi sulle coppie e sui tempi scelti. È stato sviluppato dopo che molte persone hanno richiesto un
Altri dall’autore
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
Filtro:
Nessuna recensione
Rispondi alla recensione