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.

Рекомендуем также
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
Индикатор анализирует указанное количество свечей и строит уровни Фибоначчи на основе максимума-минимума. Поскольку уровни перестраиваются, то нас интересует правая часть диапазона. Цена магнитит к уровням и реагирует на касание. Используйте этот инструмент для поиска точки входа по тренду после коррекции. Если слева мы видим, что уровни идеально встали, то мы можем предположить, что нашли окончание движения в крайней точке. Все линии прорисовываются через буферы или объекты (на выбор). Входные
FREE
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) - это точный и уникальный индикатор уровней поддержки и сопротивления. Он отображает ближайшие значимые уровни, на которых ожидается коррекция/разворот цены. Если все уровни пробиваются с одной стороны, индикатор их пересчитывает и рисует новые уровни поддержки и сопротивления. Эти уровни могут оставаться действительными в течение нескольких дней, в зависимости от рынка. Основные возможности Его можно использовать на всех таймфреймах младше дневного. Ото
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
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
Индикатор отображает на графике сигналы согласно стратегии Билла Вильямса. Демо версия индикатора имеет такие же функции, как и платная, за исключением того, что может работать только на демо-счете. Сигнал "Первый мудрец" формируется, когда появляется разворотный бар с ангуляцией. Бычий разворотный бар - у которого более низкий минимум и цена закрытия в верхней его половине. Медвежий разворотный бар - более высокий максимум и цена закрытия в нижней его половине. Ангуляция образуется, когда все
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
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: https://www.mql5.com/en/blogs/post/772494 Версия для MT4: https://www.mql5.com/en/market/product/185408 Версия для MT5: https://www.mql5.com/en/market/product/185407 RSI HEATMAP [tambangEA] — профессиональный индикатор импульса и структуры рынка, который сочетает в себе индекс относительной силы (RSI), сигнальную линию RSI, подтвержденную логику пересечения, динамические уровни поддержки и сопротивления, рыночную информацию в реальном времени и быструю навигацию по многосимвольным
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
Данный индикатор создан для поиска предполагаемых разворотных точек цены символа. В его работе используется небольшой разворотный свечной паттерн в совокупности с фильтром экстремумов. Индикатор не перерисовывается! В случае отключения фильтра экстремумов, индикатор показывает все точки, в которых есть паттерн. В случае включения фильтра экстремумов, работает условие – если в истории на Previous bars 1 свечей назад, были более высокие свечки и они дальше чем свеча Previous bars 2 – то тогда тако
FREE
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 - отличный инструмент для обнаружения пиков и впадин на графике. Peak Trough Analysis может использовать три разных алгоритма обнаружения пиков и впадин. Эти три алгоритма включают в себя оригинальный индикатор Fractals Билла Вильямса, модифицированный индикатор Fractals и индикатор ZigZag. Вы можете использовать этот инструмент анализа пиков и впадин для обнаружения паттернов, составленных Равновесным Фрактально-Волновым процессом. Для дальнейшего использования имеется хоро
FREE
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
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
Индикатор ценового канала за определенное количество баров, заданных в настройках. Линии индикатора представляют собой динамические уровни поддержки или сопротивления. Верхняя граница является ценовым максимумом за определенное число периодов, нижняя – минимумом. В отличии от скользящих средних, которые строят по ценам закрытий, индикатор не «отвлекается» на мелкие колебания. Пересчитываться он будет только в том случае, если изменятся границы. Если же последнее происходит, значит, стоит серьезн
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" – это уникальный технический индикатор, созданный для выявления паттернов " PPR " на валютных графиках торговой платформы МТ4. Эти паттерны могут указывать на возможные развороты или продолжения тренда, предоставляя трейдерам ценные сигналы для входа в рынок. Особенности: Автоматическое Обнаружение PPR: Индикатор автоматически идентифицирует и отмечает паттерны PPR стрелками на графике. Визуальные Сигналы: Зеленые и красные стрелки обозначают оптимальные точки для покупки и продажи соот
FREE
Вы устали вручную рисовать уровни Фибоначчи на своих графиках? Вы ищете удобный и эффективный способ определения ключевых уровней поддержки и сопротивления в своей торговле? Не смотрите дальше!   Представляем DrawFib Pro, совершенный индикатор для MetaTrader 4, который выполняет автоматические   уровни   Фибоначчи.       рисование на ваших графиках и предоставление своевременных предупреждений при нарушении этих уровней. С DrawFib Pro вы можете улучшить свои торговые стратегии, сэкономить время
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
С этим продуктом покупают
Gann Made Easy - это профессиональная, но при этом очень простая в применении Форекс система, основанная на лучших принципах торговли по методам господина У.Д. Ганна. Индикатор дает точные BUY/SELL сигналы, включающие в себя уровни Stop Loss и Take Profit. ПОЖАЛУЙСТА, СВЯЖИТЕСЬ СО МНОЙ ПОСЛЕ ПОКУПКИ, ЧТОБЫ ПОЛУЧИТЬ ТОРГОВЫЕ ИНСТРУКЦИИ И ОТЛИЧНЫЕ ДОПОЛНИТЕЛЬНЫЕ ИНДИКАТОРЫ БЕСПЛАТНО! Вероятно вы уже не раз слышали о торговли по методам Ганна. Как правило теория Ганна отпугивает от себя не только н
Neuro Poseidon - новый индикатор от Дарьи Резуевой. Он сочетает точные торговые сигналы с адаптивными уровнями TP/SL , в результате создавая максимально выгодные сделки! TO SWITCH TO   ENG   PLEASE CHOOSE IT IN THE UPPER-RIGHT CORNER OF THE WEBSITE Напишите мне после покупки и получите Neuro Poseidon Assistant в подарок для автоматизации вашей торговли! Что отличает его от других индикаторов? 1. Доказанная прибыльность на всех активах и таймфреймах 2. На графике присутствуют только подтвержденн
M1 SNIPER — это простая в использовании торговая система. Это стрелочный индикатор, разработанный для тайм фрейма M1. Индикатор можно использовать как отдельную систему для скальпинга на тайм фрейме M1, а также как часть вашей существующей торговой системы. Хотя эта торговая система была разработана специально для торговли на M1, ее можно использовать и с другими тайм фреймами. Первоначально я разработал этот метод для торговли XAUUSD и BTCUSD. Но я считаю этот метод полезным и для торговли на д
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 DayTrader PRO — это передовой торговый индикатор, сочетающий фильтр Лагерра (Laguerre Filter) Джона Элерса с мощным движком автоматической оптимизации. Вместо использования фиксированных параметров индикатор автоматически подбирает оптимальные настройки на основе недавних рыночных условий, что позволяет адаптироваться к изменяющейся волатильности без необходимости ручной корректировки. Индикатор генерирует четкие сигналы на ПОКУПКУ и ПРОДАЖУ, а также адаптивные уровни Stop Loss и T
KURAMA GOLD SIGNAL PRO (MT4) — 7-уровневый фильтр · Автоматический TP/SL · Оценка качества · Сохранение истории сигналов | Полная торговая система для XAUUSD Без перерисовки в реальном времени. В момент появления сигнала стрелка, вход, TP и SL фиксируются на месте и больше никогда не смещаются. Вы торгуете именно этот сигнал в реальном времени. А в версии 7.20 каждый фактически отправленный сигнал автоматически сохраняется и точно восстанавливается после перезапуска. БОНУС ДЛ
Scalper Inside PRO помогает читать внутридневной тренд и планировать сделку до входа в рынок. Индикатор использует эксклюзивные встроенные алгоритмы для оценки направления рынка и расчёта ключевых целевых уровней в момент появления сигнала, поэтому вы всегда заранее видите потенциальный вход, стоп-лосс и цели по прибыли. Индикатор также показывает подробную статистику эффективности на исторических данных, чтобы вы могли увидеть, как вели себя разные инструменты и стратегии, и выбрать то, что под
В настоящее время скидка 30%! Эта приборная панель - очень мощное программное обеспечение, работающее на нескольких символах и до 9 таймфреймов. Он основан на нашем основном индикаторе (Лучшие отзывы: Advanced Supply Demand ).   Приборная панель дает отличный обзор. Она показывает:  Отфильтрованные значения спроса и предложения, включая рейтинг силы зон, расстояния между пунктами в зонах и внутри зон, Выделяются вложенные зоны, Выдает 4 вида предупреждений для выбранных символов на всех (9) та
SR Liquidity — это торговый индикатор, предназначенный для выявления скрытых зон, где концентрируется рыночная ликвидность и наблюдается наиболее сильная реакция цены. Эти особые зоны ликвидности выступают в качестве мощных уровней поддержки и сопротивления, предоставляя вам четкую картину того, где с наибольшей вероятностью произойдет разворот рынка. Вместо построения стандартных линий поддержки и сопротивления, индикатор SR Liquidity анализирует реальное поведение цены, выявляя зоны концентрац
Представляем       Quantum Breakout PRO   , новаторский индикатор MQL5, который меняет ваш способ торговли в зонах прорыва! Разработанная командой опытных трейдеров с опытом торговли более 13 лет,   Quantum Breakout PRO   предназначена для того, чтобы вывести ваше торговое путешествие на новые высоты благодаря своей инновационной и динамичной стратегии зон прорыва. Quantum Breakout Indicator покажет вам сигнальные стрелки на зонах прорыва с 5 целевыми зонами прибыли и предложением стоп-лосса
Trend Catcher ind
Ramil Minniakhmetov
5 (11)
Trend Catcher   анализирует движения рыночных цен, используя комбинацию собственных и индивидуально разработанных адаптивных индикаторов анализа тренда. Он определяет истинное направление рынка, отфильтровывая краткосрочные шумы и фокусируясь на силе импульса, расширении волатильности и поведении ценовой структуры. Он также использует комбинацию сглаживающих и фильтрующих тренд индикаторов, таких как скользящие средние, RSI и фильтры волатильности. Мониторинг реальных операций, а также другие
Super Signal – Skyblade Edition Профессиональная система трендовых сигналов без перерисовки и без задержек с исключительным процентом выигрышей | Для MT4 / MT5 Лучше всего работает на младших таймфреймах, таких как 1 минута, 5 минут и 15 минут. Основные характеристики: Super Signal – Skyblade Edition — это интеллектуальная система сигналов, специально разработанная для трендовой торговли. Она использует многоуровневую фильтрацию, чтобы выявлять только сильные направленные движения, подкреплённ
Скидка заканчивается через 24 часа — следующая цена $ 69 ограниченное количество копий по стартовой цене ZORYK — продвинутая сигнальная система для XAUUSD в MetaTrader 4 Вам знакомо это чувство. Вы анализируете золото, ждёте вход и наконец открываете сделку. Цена сразу начинает двигаться против вас. Вы закрываете позицию слишком рано, переносите Stop Loss или сомневаетесь несколько секунд. А затем рынок без вас достигает именно той цели, которую вы ожидали с самого начала. Проблема не всегд
Advanced Supply Demand
Bernhard Schweigert
4.91 (302)
Специальное предложение – скидка 30% Этот индикатор является уникальным, качественным и доступным инструментом для торговли, включающим в себя наши собственные разработки и новую формулу. В обновленной версии появилась возможность отображать зоны двух таймфреймов. Это означает, что вам будут доступны зоны не только на старшем ТФ, а сразу с двух таймфреймов - таймфрейма графика и старшего: отображение вложенных зон. Обновление обязательно понравится всем трейдерам, торгующим по зонам спроса и пре
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 является комбинацией из продвинутого трендового индикатора в сочетании с мощным сканером свечных паттернов. Это полезный инструмент для распознания и выделения тридцати наиболее надежных свечных паттернов. Помимо этого это анализатор текущего тренда по окрашенным барам с  подключаемой мультитаймфреймовой трендовой панелью, изменяемой по размеру и положению. Уникальная возможность регулировки отображения паттернов в зависимости от трендовой фильтрации.  Преимущества: 
Индикатор All-in-One Trade (AOTI) определяет дневные цели для пар EURUSD, EURJPY, GBPUSD, USDCHF, EURGBP, EURCAD, EURAUD, AUDJPY, GBPAUD, GBPCAD, GBPCHF, GBPJPY, AUDUSD и USDJPY. Все остальные модули работают на любых финансовых инструментах. Индикатор включает в себя множество функций: двойной канал для определения тренда, ценовой канал, полосы МА, построение уровней Фибо, определение точки кульминации и др. Индикатор создан для упрощения анализа рынка и основан на нескольких торговых стратегия
Currency Strength Wizard — очень мощный индикатор, предоставляющий вам комплексное решение для успешной торговли. Индикатор рассчитывает силу той или иной форекс-пары, используя данные всех валют на нескольких тайм фреймах. Эти данные представлены в виде простых в использовании индексов валют и линий силы валют, которые вы можете использовать, чтобы увидеть силу той или иной валюты. Все, что вам нужно, это прикрепить индикатор к графику, на котором вы хотите торговать, и индикатор покажет вам ре
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
Этот продукт был обновлен для рынка 2026 года и оптимизирован для последних сборок MT5. УВЕДОМЛЕНИЕ ОБ ИЗМЕНЕНИИ ЦЕНЫ: Smart Trend Trading System сейчас доступен за $99 . Цена увеличится до $199 после следующих 30 покупок . СПЕЦИАЛЬНОЕ ПРЕДЛОЖЕНИЕ: После покупки Smart Trend Trading System отправьте мне личное сообщение, чтобы получить Smart Universal EA БЕСПЛАТНО и превратить сигналы Smart Trend в автоматические сделки. Smart Trend Trading System — это полноценная торговая система без перерисов
FX Power: Анализируйте силу валют для более эффективной торговли Обзор FX Power — это ваш незаменимый инструмент для понимания реальной силы валют и золота в любых рыночных условиях. Определяя сильные валюты для покупки и слабые для продажи, FX Power упрощает принятие торговых решений и выявляет высоковероятные возможности. Независимо от того, хотите ли вы следовать за трендами или предсказывать развороты с использованием экстремальных значений дельты, этот инструмент идеально адаптируется под
Scalper Vault — это профессиональная торговая система, которая дает вам все необходимое для успешного скальпинга. Этот индикатор представляет собой полную торговую систему, которую могут использовать трейдеры форекс и бинарных опционов. Рекомендуемый тайм фрейм М5. Система дает точные стрелочные сигналы в направлении тренда. Она также предоставляет вам сигналы выхода и рассчитывает рыночные уровни Ганна. Индикатор дает все типы оповещений, включая PUSH-уведомления. Пожалуйста, напишите мне после
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 - торговая система дающая сигналы для входов.  Система волатильности дает линейные и точечные сигналы в направлении тренда, а также сигналы выхода из него, без перерисовки и запаздываний. Трендовый индикатор следит за направлением среднесрочной тенденции, показывает направление и ее изменение. Сигнальный индикатор основан на изменении волатильности, показывает входы в рынок. Индикатор снабжен несколькими типами оповещений. Может применяться к различным торговым инструмен
Volume Break Oscillator — это индикатор, который сопоставляет движение цены с тенденциями объема в форме осциллятора. Я хотел интегрировать анализ объема в свои стратегии, но меня всегда разочаровывали большинство индикаторов объема, таких как OBV, Money Flow Index, A/D, а также Volume Weighted Macd и многие другие. Поэтому я написал этот индикатор для себя, я доволен его полезностью, и поэтому я решил опубликовать его на рынке. Основные характеристики: Он выделяет фазы, в которых цена движе
Этот продукт был обновлен для рынка 2026 года и оптимизирован для последних сборок MT5. УВЕДОМЛЕНИЕ ОБ ИЗМЕНЕНИИ ЦЕНЫ: Atomic Analyst сейчас доступен за $99 . Цена увеличится до $199 после следующих 30 покупок . СПЕЦИАЛЬНОЕ ПРЕДЛОЖЕНИЕ: После покупки Atomic Analyst отправьте мне личное сообщение, чтобы получить Smart Universal EA БЕСПЛАТНО и превратить сигналы Atomic Analyst в автоматические сделки. Atomic Analyst — это индикатор Price Action без перерисовки, без перерисовывания истории и без
Color Trend FX – индикатор, отображающий на графике точные точки входа в сделку, точные точки выхода, максимально возможную прибыль в сделке (для тех, кто фиксирует прибыль по своей системе выхода из сделки), точки трейлинга открытых позиции, а также подробную статистику. Статистика сделок позволяет помочь с выбором наиболее прибыльных торговых инструментов, а также определить потенциальную прибыль. Индикатор не перерисовывает свои сигналы! Индикатор прост в настройке и управлении и подойдет для
Linear Trend Predictor - Трендовый индикатор сочетающий в себе точки для входа и линии поддержки направления. Работает по принципу пробития ценового канала High/Low. Алгоритм индикатора фильтрует рыночный шум, учитывает волатильность и рыночную динамику. Возможности индикатора Методами сглаживания показывает рыночную тенденцию и точки входа для открытия ордеров BUY или SELL. Подходит для определения краткосрочных и долгосрочных движений рынка, анализируя графики на любых таймфреймах. Адаптивн
Эта информационная панель представляет собой инструмент оповещения для использования с индикатором разворота структуры рынка. Его основная цель - предупредить вас о возможностях разворота на определенных временных рамках, а также о повторных проверках предупреждений (подтверждении), как это делает индикатор. Панель инструментов предназначена для самостоятельного размещения на графике и работы в фоновом режиме, чтобы отправлять вам оповещения о выбранных вами парах и таймфреймах. Он был разработ
Другие продукты этого автора
## 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
Фильтр:
Нет отзывов
Ответ на отзыв