Multi Currency Stocastic Cross Scanner

Stoch Cross 448 Scanner
Scan 64 pairs x 7 timeframes for stochastic golden/dead crosses — all from a single chart.  |  User Manual

------------------------------------------------------------------------
1. Overview
------------------------------------------------------------------------
Stoch Cross 448 Scanner is a MetaTrader 4 indicator that monitors
stochastic cross signals across 64 currency pairs and 7 timeframes
simultaneously, displaying all results in a single panel.

Drop it onto any chart and it instantly scans every selected symbol and
timeframe for stochastic golden crosses and dead crosses — no need to
switch charts manually.

Signal logic:
- Buy signal:
  Stochastic main line crosses the signal line from below to above
  while the stochastic is at or below the buy level.
  Default buy level: 20

- Sell signal:
  Stochastic main line crosses the signal line from above to below
  while the stochastic is at or above the sell level.
  Default sell level: 80

Key specs:
- Signals fire on confirmed (closed) candles only. No repainting.
- Uses built-in MT4 iStochastic calculation. No external custom
  indicator reference is required.
- Works on FX pairs, Gold (XAUUSD), indices, crypto — any symbol in
  your broker's Market Watch.
- Default display: 29 symbols x 7 timeframes.
- Full capacity: 64 pairs x 7 timeframes = 448 combinations.
- Settings are fully adjustable per symbol and timeframe.

------------------------------------------------------------------------
2. Typical Workflow
------------------------------------------------------------------------
Step 1  Find signals with 448 Scanner
        The panel highlights a cell when a stochastic cross signal is
        detected on the latest confirmed bar.

Step 2  Open chart with one click
        Click the timeframe label in the panel to open a new chart
        for that symbol and timeframe instantly.

Step 3  Check the chart context
        Use the opened chart to confirm trend direction, support and
        resistance, higher timeframe bias, and your own entry rules.

Step 4  Restore your chart workspace anytime with AutoLineSaver for 448
        Use AutoLineSaver to save and restore your drawn lines at any time.

------------------------------------------------------------------------
3. Color Guide
------------------------------------------------------------------------
Each cell in the panel represents one symbol x timeframe combination.

Color         Meaning
----------    -------------------------------------------------------
Cyan          Buy condition detected.
Dodger Blue   A new buy signal was just detected on this bar.
              Reverts to Cyan on the next scan cycle.
Red           Sell condition detected.
Magenta       A new sell signal was just detected on this bar.
              Reverts to Red on the next scan cycle.
White/Gray    No signal detected.
Yellow        Signal ended, or symbol is excluded from scan when the
              SymOnOff feature is used.

- When an alert fires, the symbol name turns Red temporarily.
  It returns to its normal color on the next scan cycle.
- The number shown next to each symbol name is the current spread.
  When the spread turns Red, the symbol is skipped due to the
  MaxSpread filter.

------------------------------------------------------------------------
4. Installation
------------------------------------------------------------------------
1. Copy  StochCrossAllSearch.mq4  to your MT4  MQL4/Indicators/  folder.
2. Restart MetaTrader 4, or press F5 in MetaEditor to refresh.
3. Attach the indicator to any chart.
   The timeframe of the host chart does not affect scan results.

This version is a built-in single-file scanner.
AllSearch.mqh is already embedded in the mq4 file, so no Include file
is required.

------------------------------------------------------------------------
5. First Launch Warning
------------------------------------------------------------------------
Immediately after attaching the indicator, symbols that have not been
recently loaded in Market Watch may lack price history.

If this occurs, the following alert may appear:

  "Please load [Symbol][Timeframe] chart once"

Open a new chart for the indicated symbol and timeframe. Once the chart
loads, MT4 downloads the required history and the scanner works normally
from that point on.

------------------------------------------------------------------------
6. How to Specify Symbols (UseSymbols)
------------------------------------------------------------------------
Only symbols visible in MT4's Market Watch window are scanned.
Add any symbol you want to monitor to Market Watch before starting.

There are two ways to enter symbols in UseSymbols:

Method 1 — Currency codes (auto-combination)
  Enter 3-letter currency codes separated by spaces.
  All valid pairs are generated automatically.

  Example: EUR USD JPY  ->  EURUSD, EURJPY, USDJPY

Method 2 — Full symbol names (direct)
  Enter the full symbol name to add it directly.

  Example: XAUUSD  ->  Gold is added to the scan list

You can combine both methods.
  Example: XAUUSD USD EUR JPY  ->  XAUUSD, EURUSD, EURJPY, USDJPY

- Display order follows the order of entry in UseSymbols.
- If your broker adds a suffix to symbol names (e.g. EURUSDm or
  EURUSDPro), enter the suffix in AddSymbol (e.g. AddSymbol = m).

------------------------------------------------------------------------
7. Parameters
------------------------------------------------------------------------
Stochastic Settings
  StochKPeriod          7       Period of the stochastic %K line.
  StochDPeriod          3       Period of the stochastic %D signal line.
  StochSlowing          3       Slowing value of the stochastic.
  StochBuyLevel         20      Lower level used for buy signal detection.
                                A buy signal is detected when the main line
                                crosses above the signal line in this zone.
  StochSellLevel        80      Upper level used for sell signal detection.
                                A sell signal is detected when the main line
                                crosses below the signal line in this zone.
  StochMethod           MODE_SMA
                                Moving average method used for stochastic
                                calculation.
                                0=MODE_SMA  1=MODE_EMA
                                2=MODE_SMMA 3=MODE_LWMA
  StochPriceField       0       Price field used for stochastic calculation.
                                0 = Low/High
                                1 = Close/Close
  bMainLineLevelOnly    true    true: The 20/80 zone is judged by the main
                                  line only.
                                false: Both the main line and signal line
                                  must be inside the 20/80 zone.

Signal Detection Details
  The scanner compares the latest confirmed bar (shift 1) with the
  previous confirmed bar (shift 2).

  Buy:
    main(shift 2) < signal(shift 2)
    main(shift 1) > signal(shift 1)
    and the selected 20-zone condition is met.

  Sell:
    main(shift 2) > signal(shift 2)
    main(shift 1) < signal(shift 1)
    and the selected 80-zone condition is met.

Timeframe Selection — Display ON/OFF
  Controls which timeframes appear in the panel and are scanned.
  Set to false to exclude a timeframe entirely.

  bUseM1        false           Show M1 in the panel and scan it.
  bUseM5        false           Show M5 in the panel and scan it.
  bUseM15       true            Show M15 in the panel and scan it.
  bUseM30       true            Show M30 in the panel and scan it.
  bUseH1        true            Show H1 in the panel and scan it.
  bUseH4        true            Show H4 in the panel and scan it.
  bUseD1        true            Show D1 in the panel and scan it.
  bUseW1        true            Show W1 in the panel and scan it.

Alert Settings — Alert ON/OFF (independent from display)
  Display and alerts are controlled separately.
  A timeframe can be visible in the panel but fire no alert.
  Example: bUseH1=true + bAlertH1=false
           H1 is shown in the panel, but no alert fires on H1 signals.

  bAlertOnce    true            true: Log detailed messages to Experts tab
                                  and show one summary pop-up.
                                false: Show pop-up alert dialog for each
                                  detected signal.
  bFindAlert    true            Alert when a new cross signal is detected.
  bLostAlert    false           Alert when an existing signal ends.
  bAlertM1      true            Fire alerts on M1 signals.
  bAlertM5      true            Fire alerts on M5 signals.
  bAlertM15     true            Fire alerts on M15 signals.
  bAlertM30     true            Fire alerts on M30 signals.
  bAlertH1      true            Fire alerts on H1 signals.
  bAlertH4      true            Fire alerts on H4 signals.
  bAlertD1      true            Fire alerts on D1 signals.
  bAlertW1      true            Fire alerts on W1 signals.

Spread Filter
  bUseSpread    true            Show the current spread next to each symbol name.
                                Aqua = within the allowed range.
                                Red  = spread exceeds MaxSpread. Symbol is skipped
                                       for that scan cycle automatically.
  MaxSpread     6.0             Spread threshold in pips. Symbols above this value
                                are excluded from scanning until spread drops back
                                below the limit.

Notification Settings
  bMail         false           Send an email when an alert fires.
                                Requires MT4 email settings to be configured.
  bPush         false           Send a mobile push notification when an alert fires.
                                Requires MT4 notification settings to be configured.

Symbol Settings
  UseSymbols    XAUUSD USD EUR JPY GBP CAD AUD NZD CHF
                                Space-separated list. See section 6 for details.
  AddSymbol     (empty)         Suffix appended to every symbol name.
                                Example: enter "m" if your broker uses EURUSDm.

Special Features
  SelfRifresh   false           Controls color update behavior for multi-instance use.
                                false (default): Colors reset each cycle automatically.
                                  DodgerBlue -> Cyan, Magenta -> Red, Yellow -> White.
                                true: Colors set by other indicators on the same panel
                                  are preserved. Use this on secondary instances when
                                  running multiple scanners on the same chart.
  SymOnOff      false           Enables click-to-exclude on symbol names.
                                false (default): Clicking a symbol has no effect.
                                true: Click a symbol name to toggle it Yellow
                                  (excluded from scan). Click again to restore.
                                  Useful for hiding specific symbols temporarily
                                  without editing UseSymbols.
  AddText       (empty)         Prefix added to all chart object names for this
                                instance. Set a unique value (e.g. "A", "B") when
                                running multiple instances on the same chart to
                                prevent object name conflicts.

Display Position Settings
  ATRCorner     1               Corner where the panel is anchored.
                                0 = Upper-Left
                                1 = Upper-Right  (default)
                                2 = Lower-Left
                                3 = Lower-Right
  TxtXBase      0               Horizontal offset of the entire panel from the
                                anchored corner (pixels). Increase to shift the
                                panel away from the chart edge.
  LineMax       30              Maximum symbol rows per column. When the symbol
                                count exceeds this, a new column is added
                                automatically.
  FontSize      10              Font size of all panel text. Changing this value
                                also scales the spacing between columns and rows.
  TxtXPos       5               Horizontal spacing between each timeframe column
                                in the panel (pixels).
  TxtXSpace     5               Additional horizontal padding between timeframe
                                columns. Adjust together with TxtXPos to fine-tune
                                column spacing.
  TxtYPos       5               Vertical spacing between symbol rows (pixels).
                                Increase if rows overlap at larger font sizes.

------------------------------------------------------------------------
8. Tips
------------------------------------------------------------------------
- All signals are based on completed bars only.
  The current open bar is never used for signal generation.
- The scanner uses shift 1 and shift 2 to confirm the stochastic cross.
- Enabling many timeframes with a large symbol list increases CPU load.
  Disable unused timeframes with bUseM1, bUseM5, etc.
- If you want stricter overbought/oversold filtering, set
  bMainLineLevelOnly=false.
- To run multiple instances on the same chart with different settings,
  set a unique value for AddText on each instance.

------------------------------------------------------------------------
9.  All-Currency Monitoring Series
------------------------------------------------------------------------
Tools that monitor all currency pairs at once become an incredibly powerful weapon once mastered ? a trading tool for life.
The key is to match the right tool to your trading strategy.
Here are the hottest tools available right now:

- IFVG All-Currency Scanner
  The most effective tool for catching ICT fake-out moves.
  Especially powerful for targeting AMD movement setups.

- MA + Pin Bar All-Currency Scanner
  A precision tool that finds pin bars bouncing off moving averages to catch pullback entries.
  The ultimate edge comes from knowing [what was swept]. Works perfectly with ICT methodology.

- AutoLineSaver
  An almost essential companion for all-currency monitoring.
  Automatically saves and restores your drawn lines even after closing charts ? an extremely
  convenient tool that dramatically improves the efficiency of multi-pair chart analysis.





Рекомендуем также
--- FREE VERSION - WORKS ONY ON EURUSD ------------------------------------------------------------------- This is a unique breakout strategy that is used for determination of the next short term trend/move. The full system is available on MQL5 under the name "Forecast System". Here is the link -->  https://www.mql5.com/en/market/product/104166?source=Site Backtest is not possible, because calculations are done based on the data of all timeframes/periods. Therefore I propose you use the technolo
FREE
Auto Supply and Demand Oscillator is an indicator for MetaTrader 4 and MetaTrader 5 that detects supply and demand zones automatically and displays them as a single oscillator value at the bottom of the chart, instead of drawing rectangles directly on price. Concept Supply zones are price areas where strong selling created a sharp downward move away from a balance area. Demand zones are price areas where strong buying created a sharp upward move. Traditional implementations draw boxes on the
FREE
Free automatic fibonacci - это индикатор, который автоматически строит коррекции Фибоначчи, основываясь на количестве баров, выбранных в параметре BarsToScan. Линии Фибоначчи автоматически обновляются в реальном времени при появлении новых максимальных и минимальных значений среди выбранных баров. В настройках индикатора можно выбрать уровни, значения которых будут отображены. Также можно выбрать цвет уровней, что позволяет трейдеру прикреплять индикатор несколько раз с разными настройками и цве
FREE
Candle Countdown — Accurate Time to Close for MT4 Candle Countdown — это простой и точный инструмент, который показывает оставшееся время до закрытия текущей свечи прямо на графике. Когда вход зависит от момента закрытия свечи, даже несколько секунд имеют значение. Этот индикатор позволяет видеть точное время и принимать решения без спешки и догадок. Индикатор для точного контроля времени закрытия свечи. Индикатор показывает: время до закрытия текущей свечи текущее серверное время спред Stop Le
FREE
Индикатор Average True Range (ATR) с поддержкой мультитаймфрейма, настраиваемыми визуальными сигналами и конфигурируемой системой оповещений. Услуги по фриланс-программированию, обновления и другие продукты TrueTL доступны на моём профиле MQL5 . Отзывы и рецензии очень приветствуются! Что такое ATR? Average True Range (ATR), разработанный Дж. Уэллесом Уайлдером, — это технический индикатор, измеряющий рыночную волатильность. Он вычисляет среднее значение истинного диапазона (True Range) за ук
FREE
BoxFibo
Sergei Kiriakov
It is just an alternative fibo lines, because mt4 have is a very strange drawing of fibo lines A simple Box (Rectangle) graphic element with adjustable levels binding: it is possible to specify up to 17 custom levels, all rectangles on the chart with the given prefix in their name are processed. Levels are specified in % of the height of the rectangle. A convenient graphical element for analyzing charts by growth-correction levels. Enjoy your work!
FREE
Contact me for any queries or custom orders, if you want to use this in an EA. Key Features: Pattern Recognition : Identifies Fair Value Gaps (FVGs) Spots Break of Structure (BOS) points Detects Change of Character (CHoCH) patterns Versatile Application : Optimized for candlestick charts Compatible with any chart type and financial instrument Real-Time and Historical Analysis : Works seamlessly with both real-time and historical data Allows for backtesting strategies and live market analysis Vi
FREE
В MetaTrader построение нескольких   горизонтальных линий   и отслеживание их ценовых уровней может быть утомительным. Этот индикатор автоматически строит горизонтальные линии на равных интервалах для установки ценовых оповещений, отображения уровней поддержки и сопротивления и других ручных целей. Этот индикатор идеально подходит для начинающих трейдеров на рынке Форекс, стремящихся быстро заработать на покупке и продаже. Горизонтальные линии помогают определить возможные зоны для входа в рынок
FREE
Бесплатная версия индикатора   Hi Low Last Day MT4 . Индикатор    Hi Low Levels Last Day MT4   показывает максимум и минимум прошлого торгового дня. Доступна возможность изменения цвета линий. Попробуйте полную версию индикатора    Hi Low Last Day MT4 , в которой доступны дополнительные возможности индикатора: Отображение минимума и максимума второго прошлого дня Отображение минимума и максимума прошлой недели Звуковое оповещение при пересечении макс. и мин. уровней Выбор произвольного звук
FREE
Добро пожаловать в наш   ценовой волновой паттерн   MT4 --(ABCD Pattern)--     Паттерн ABCD является мощным и широко используемым торговым паттерном в мире технического анализа. Это гармонический ценовой паттерн, который трейдеры используют для определения потенциальных возможностей покупки и продажи на рынке. С помощью паттерна ABCD трейдеры могут предвидеть потенциальное движение цены и принимать обоснованные решения о том, когда открывать и закрывать сделки. Версия советника:   Price Wave E
FREE
The principle of this indicator is very simple: detecting the candlestick pattern in D1 timeframe, then monitoring the return point of graph by using the pullback of High-Low of D1 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 D1: the indicator will detect the reversal, pullback, price action on this timeframe (for exam
FREE
Индикатор отображает на графике сигналы согласно стратегии Билла Вильямса. Демо версия индикатора имеет такие же функции, как и платная, за исключением того, что может работать только на демо-счете. Сигнал "Первый мудрец" формируется, когда появляется разворотный бар с ангуляцией. Бычий разворотный бар - у которого более низкий минимум и цена закрытия в верхней его половине. Медвежий разворотный бар - более высокий максимум и цена закрытия в нижней его половине. Ангуляция образуется, когда все
FREE
Power Trend Free - индикатор, показывающий "силу" тренда на выбранном периоде. Входные параметры Индикатор имеет три входных параметра: Period - положительное число больше единицы, показывающее, по какому количеству свечей строятся показания. Если ввести единицу или ноль, ошибки не будет, но отрисовываться индикатор не будет. Applied Price - стандартный набор "Применить к:", обозначающий, по каким данным будет рассчитываться индикатор: Close - по ценам закрытия; Open - по ценам открытия; High -
FREE
''Trendlines'' is an Indicator, that every Trader need and shows Trendline and  Support and resistance levels in all  Timeframe's. Also In 1-hour, 4-hour and daily time frames and Current timeframes, support, and resistance levels are specified and trend lines are drawn so that the trader can see all levels on a chart.   In   Properties   it is possible to turn off unnecessary Lines.  In ' Tendency indicator '' , as full package of Predictions that every Trader need, there  is also the Predict
FREE
Perfect for one minutes high trading and scalping. This indicator is very effective for trading on one minutes, in the hour. A combination of moving averages and STOCHASTICS calculation to produce a very convincing signal every hour. Blue colour signals a buy opportunity. Follow the X signs for possible buy points. The Blue average line serves as possible trend direction and support. Red colour signals a sell opportunity. Follow the X signs for possible sell points. The Red average line serves a
FREE
Индикатор "Buy Sell zones x2" основан на принципе "остановка/разворот после сильного движения". Поэтому, как только обнаруживается сильное безоткатное движение, сразу после остановки - рисуется зона покупок/продаж. Зоны отрабатывают красиво. Или цена ретестит зону и улетает в космос, или пробивает зону насквозь и зона отрабатывается с другой стороны так же красиво.  Работает на всех таймфреймах. Лучше всего выглядит и отрабатывает на Н1.    Может использоваться как: индикатор зон, где лучше вс
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
FlatBreakout (Бесплатная версия) Детектор флэта и пробоев для MT4 — только для GBPUSD FlatBreakout — это бесплатная версия профессионального индикатора FlatBreakoutPro, специально предназначенная для анализа флэта и поиска точек пробоя только по паре GBPUSD . Идеально для трейдеров, которые хотят познакомиться с уникальной фрактальной логикой FlatBreakout и протестировать сигналы пробоя диапазона на реальном рынке. Для кого этот продукт Для трейдеров, предпочитающих торговать на пробой флэта (br
FREE
Вы торгуете по гармоническим паттернам? Паттерн "Три движения" (Three Drives) представляет собой шеститочечный паттерн разворота, состоящий из серии повышающихся максимумов или понижающихся минимумов, завершающейся на уровнях Фибоначчи 127% или 161.8%. Он сигнализирует о том, что движение слабеет и высока вероятность разворота. Паттерн легко обнаруживается Позволяет изучить основы гармонических паттернов Полезен при поиске дешевых и дорогих зон Бычьи откаты отображаются синим цветом Медвежьи отк
FREE
Discover the power of precision and efficiency in your trading with the " Super Auto Fibonacci " MT4 indicator. This cutting-edge tool is meticulously designed to enhance your technical analysis, providing you with invaluable insights to make informed trading decisions. Key Features: Automated Fibonacci Analysis: Say goodbye to the hassle of manual Fibonacci retracement and extension drawing. "Super Auto Fibonacci" instantly identifies and plots Fibonacci levels on your MT4 chart, saving you tim
FREE
Pivot Point Fibo RSJ - это индикатор, который отслеживает линии поддержки и сопротивления дня с использованием ставок Фибоначчи. Этот впечатляющий индикатор создает до 7 уровней поддержки и сопротивления через точку разворота с использованием ставок Фибоначчи. Замечательно, как цены уважают каждый уровень этой поддержки и сопротивления, где можно определить возможные точки входа / выхода из операции. Функции До 7 уровней поддержки и 7 уровней сопротивления Устанавливайте цвета уровней индивид
FREE
Are you tired of drawing trendlines every time you're analyzing charts? Or perhaps you would like more consistency in your technical analysis. Then this is for you. This indicator will draw trend lines automatically when dropped on a chart. How it works Works similar to standard deviation channel found on mt4 and mt5. It has 2 parameters: 1. Starting Bar 2. Number of bars for calculation The   starting bar   is the bar which drawing of the trend lines will begin, while the   number of bars for c
FREE
Binary options tester Торговая панель для тестирования своих стратегий по правилам бинарных опционов. Возможности: Выставлять время экспирации в секундах. Задавать размер ставки. Задавать размер депозита. Задавать процент прибыли с сделки. Заключать несколько сделок подряд. Отслеживать время до закрытия опциона. График тиков с уровнями сделок дублируется на дополнительное окно для точности. Позволяет работать как в режиме тестирования так и в режиме реальных котировок. Программа дает представлен
FREE
BinaryFortune
Andrey Spiridonov
3.83 (6)
BinaryFortune - индикатор, разработан и адаптирован специально для торговли краткосрочными бинарными опционами. Алгоритм индикатора, прежде чем выдать сигнал анализирует множество факторов. Устанавливается индикатор обычным способом. Сам индикатор состоит из информационного окна, где отображается имя торгового инструмента, уровни поддержки и сопротивления, непосредственно сам сигнал ( BUY , SELL или WAIT ). Появление торгового сигнала сопровождается также звуковым сигналом и окном Alert. Преиму
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
Ppr PA
Yury Emeliyanov
4.75 (4)
"Ppr PA" – это уникальный технический индикатор, созданный для выявления паттернов " PPR " на валютных графиках торговой платформы МТ4. Эти паттерны могут указывать на возможные развороты или продолжения тренда, предоставляя трейдерам ценные сигналы для входа в рынок. Особенности: Автоматическое Обнаружение PPR: Индикатор автоматически идентифицирует и отмечает паттерны PPR стрелками на графике. Визуальные Сигналы: Зеленые и красные стрелки обозначают оптимальные точки для покупки и продажи соот
FREE
Данный индикатор создан для поиска предполагаемых разворотных точек цены символа. В его работе используется небольшой разворотный свечной паттерн в совокупности с фильтром экстремумов. Индикатор не перерисовывается! В случае отключения фильтра экстремумов, индикатор показывает все точки, в которых есть паттерн. В случае включения фильтра экстремумов, работает условие – если в истории на Previous bars 1 свечей назад, были более высокие свечки и они дальше чем свеча Previous bars 2 – то тогда тако
FREE
The " YK Find Support And Resistance " indicator is a technical analysis tool used to identify key support and resistance levels on a price chart. Its features and functions are as follows: 1. Displays support and resistance levels using arrow lines and colored bands, with resistance in red and support in green. 2. Can be adjusted to calculate and display results from a specified timeframe using the forced_tf variable. If set to 0, it will use the current timeframe of the chart. 3. Uses the
FREE
Гармонические паттерны наилучшим образом используются для прогнозирования точек разворота рынка. Они обеспечивают высокую вероятность успешных сделок и множество возможностей для торговли в течение одного торгового дня. Наш индикатор идентифицирует наиболее популярные гармонические паттерны, основываясь на книгах о Гармоническом трейдинге. ВАЖНЫЕ ЗАМЕЧАНИЯ: Индикатор не перерисовывается, не отстает (он обнаруживает паттерн в точке D) и не изменяется (паттерн либо действителен, либо отменен). КАК
FREE
Aurum Trend Scout — Бесплатная LITE-версия Aurum Trend Engine Aurum Trend Scout — бесплатная версия советника Aurum Trend Engine. Торгует золотом (XAUUSD) на H1 по трендовой стратегии на основе Parabolic SAR + Bollinger Band Width Ratio, с входами BUYSTOP на пробое дневного максимума. Эта LITE-версия включает полную логику стратегии со стоп-лоссом на основе ATR. Использует фиксированный лот и не включает динамическое управление капиталом из FULL-версии. Подтверждённая производительность (реальны
FREE
С этим продуктом покупают
Neuro Poseidon - новый индикатор от Дарьи Резуевой. Он сочетает точные торговые сигналы с адаптивными уровнями TP/SL , в результате создавая максимально выгодные сделки! TO SWITCH TO   ENG   PLEASE CHOOSE IT IN THE UPPER-RIGHT CORNER OF THE WEBSITE Напишите мне после покупки и получите Neuro Poseidon Assistant в подарок для автоматизации вашей торговли! Что отличает его от других индикаторов? 1. Доказанная прибыльность на всех активах и таймфреймах 2. На графике присутствуют только подтвержденн
Gann Made Easy - это профессиональная, но при этом очень простая в применении Форекс система, основанная на лучших принципах торговли по методам господина У.Д. Ганна. Индикатор дает точные BUY/SELL сигналы, включающие в себя уровни Stop Loss и Take Profit. ПОЖАЛУЙСТА, СВЯЖИТЕСЬ СО МНОЙ ПОСЛЕ ПОКУПКИ, ЧТОБЫ ПОЛУЧИТЬ ТОРГОВЫЕ ИНСТРУКЦИИ И ОТЛИЧНЫЕ ДОПОЛНИТЕЛЬНЫЕ ИНДИКАТОРЫ БЕСПЛАТНО! Вероятно вы уже не раз слышали о торговли по методам Ганна. Как правило теория Ганна отпугивает от себя не только н
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
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
Trend Catcher ind
Ramil Minniakhmetov
5 (10)
Trend Catcher   анализирует движения рыночных цен, используя комбинацию собственных и индивидуально разработанных адаптивных индикаторов анализа тренда. Он определяет истинное направление рынка, отфильтровывая краткосрочные шумы и фокусируясь на силе импульса, расширении волатильности и поведении ценовой структуры. Он также использует комбинацию сглаживающих и фильтрующих тренд индикаторов, таких как скользящие средние, RSI и фильтры волатильности. Мониторинг реальных операций, а также другие
Этот продукт был обновлен для рынка 2026 года и оптимизирован для последних сборок MT5. УВЕДОМЛЕНИЕ ОБ ИЗМЕНЕНИИ ЦЕНЫ: Smart Trend Trading System сейчас доступен за $99 . Цена увеличится до $199 после следующих 30 покупок . СПЕЦИАЛЬНОЕ ПРЕДЛОЖЕНИЕ: После покупки Smart Trend Trading System отправьте мне личное сообщение, чтобы получить Smart Universal EA БЕСПЛАТНО и превратить сигналы Smart Trend в автоматические сделки. Smart Trend Trading System — это полноценная торговая система без перерисов
Индикатор Miraculous – 100% ненарисовывающийся инструмент для Форекс и бинарных опционов, основанный на Квадрате Девяти Ганна Это видео представляет индикатор Miraculous – высокоточный и мощный торговый инструмент, специально разработанный для трейдеров Форекс и бинарных опционов. Что делает этот индикатор уникальным, так это его основа на легендарном Квадрате Девяти Ганна и Законе вибрации Ганна , что делает его одним из самых точных инструментов прогнозирования, доступных в современном трейдин
System Trend Pro - Это лучший индикатор торговли по тренду!!! Индикатор не перерисовывается и не изменяет свои данные! В индикаторе есть   MTF   режим, что добавляет нам уверенности торговли по тренду(сигналы тоже не перерисовываются) Как торговать? Всё очень просто, ждём первый сигнал ( большая стрелка), потом дожидаемся второго сигнала ( маленькая стрелка) и входим в рынок по направлению стрелки. (См. скрин 1 и 2.) Выход по обратному сигналу или взять 20-30  пунктов, половина закрыть, а ос
Advanced Supply Demand
Bernhard Schweigert
4.91 (301)
Специальное предложение – скидка 30% Этот индикатор является уникальным, качественным и доступным инструментом для торговли, включающим в себя наши собственные разработки и новую формулу. В обновленной версии появилась возможность отображать зоны двух таймфреймов. Это означает, что вам будут доступны зоны не только на старшем ТФ, а сразу с двух таймфреймов - таймфрейма графика и старшего: отображение вложенных зон. Обновление обязательно понравится всем трейдерам, торгующим по зонам спроса и пре
M1 SNIPER — это простая в использовании торговая система. Это стрелочный индикатор, разработанный для тайм фрейма M1. Индикатор можно использовать как отдельную систему для скальпинга на тайм фрейме M1, а также как часть вашей существующей торговой системы. Хотя эта торговая система была разработана специально для торговли на M1, ее можно использовать и с другими тайм фреймами. Первоначально я разработал этот метод для торговли XAUUSD и BTCUSD. Но я считаю этот метод полезным и для торговли на д
Owl smart levels
Sergey Ermolov
4.26 (38)
При торговле по тренду основная сложность — не в том, чтобы найти уровень, а в том, чтобы понять, где вход действительно имеет смысл. Цена часто реагирует на уровни, но не даёт продолжения — из-за этого появляются ложные входы или пропущенные движения. Owl Smart Levels показывает не просто уровни , а зоны, сформированные с учётом структуры движения и отката. Это позволяет по-другому смотреть на точки входа и избегать части ложных сигналов. Что входит в систему Owl Smart Levels? Owl Smart Levels
Trend Trading - это индикатор, предназначенный для получения максимальной прибыли от трендов, происходящих на рынке, путем определения времени отката и прорыва. Он находит торговые возможности, анализируя, что делает цена во время установленных тенденций. [ Руководство по установке | Руководство по обновлению | Устранение неполадок | FAQ | Все продукты ] Торгуйте на финансовых рынках с уверенностью и эффективностью Прибыль от устоявшихся тенденций без проволочек Признать прибыльные откаты, пр
ORB Seeker
Marcela Goncalves De Oliveira
Специальная цена в честь запуска! Всего 79 долларов! Цена повысится после 10 продаж, окончательная цена — 199 долларов. После покупки свяжитесь со мной, чтобы получить БЕСПЛАТНЫЙ бонусный советник, который может торговать на пробоях в полностью автоматическом режиме и с оптимизированными файлами настроек. С уверенностью фиксируйте чистые вспышки активности во время сеансов! ORB Seeker — это профессиональный индикатор пробоя диапазона открытия (ORB), созданный для трейдеров, которым важны точно
PRO Renko System - это высокоточная система торговли на графиках RENKO. Система универсальна. Данная торговая система может применяться к различным торговым инструментам. Система эффективно нейтрализует так называемый рыночный шум, открывая доступ к точным разворотным сигналам. Индикатор прост в использовании и имеет лишь один параметр, отвечающий за генерацию сигналов. Вы легко можете адаптировать алгоритм к интересующему вас торговому инструменту и размеру ренко бара. Всем покупателям с удовол
Чрезвычайно удобный индикатор, воистину делающий легким процесс заработка денег на бирже.   Основан   на разработанной автором   научно-строгой теории рынка, начало которой представлено   здесь .                   Полный алгоритм работы данного индикатора   представлен в статье .                  Индикатор   рассчитывает  наиболее вероятную траекторию движения цены и отображает это на графике. Из прогнозируемой траектории движения цены  индикатор  рассчитывает направление  позиции
Торговые сигналы в реальном времени с использованием M1 Quantum: Сигнал Примечание разработчика:   После покупки, пожалуйста, свяжитесь со мной, чтобы получить последний   рекомендуемый файл настроек (set file) , торговые советы и приглашение в нашу   VIP-группу поддержки , где вы сможете общаться с другими пользователями M1 Quantum. Версия MT5 доступна : Перейти в MT5 M1 Quantum — это профессиональная торговая система для таймфрейма M1, которая предоставляет быстрые и точные торговые сигналы с
Этот продукт был обновлен для рынка 2026 года и оптимизирован для последних сборок MT5. УВЕДОМЛЕНИЕ ОБ ИЗМЕНЕНИИ ЦЕНЫ: Smart Price Action Concepts сейчас доступен за $200 . Цена увеличится до $299 после следующих 30 покупок . СПЕЦИАЛЬНОЕ ПРЕДЛОЖЕНИЕ: После покупки отправьте мне личное сообщение, чтобы получить БЕСПЛАТНЫЙ бонус + подарок . Прежде всего, стоит подчеркнуть, что этот торговый инструмент является индикатором без перерисовки, без перерисовывания истории и без запаздывания, что делает
Scalping Lines System - торговая система для скальпинга, специально разработанная для торговли на активе "Gold, XAUUSD" на Тайм-фреймах M1 - H1. Сочетает в себе индикаторы для анализа тренда, волатильности и перекупленности/перепроданности рынка, собранные в один осциллятор для определения кратковременных сигналов. Основные внутренние параметры для сигнальных линий уже настроены для работы, для ручного изменения оставлены некоторые параметры, "Продолжительность трендовой волны", регулирующий пр
В настоящее время скидка 30%! Лучшее решение для новичка или трейдера-эксперта! Эта приборная панель работает на 28 валютных парах. Он основан на 2 наших основных индикаторах (Advanced Currency Strength 28 и Advanced Currency Impulse). Он дает отличный обзор всего рынка Forex. Он показывает значения Advanced Currency Strength, скорость движения валюты и сигналы для 28 пар Forex на всех (9) таймфреймах. Представьте, как улучшится ваша торговля, когда вы сможете наблюдать за всем рынком с помощ
Друзья, представляем Вашему вниманию наш новый индикатор Forex Gump Laser. Так как у нас в команде нет дизайнеров, а в основном мы математики, финансисты, программисты и трейдеры, то особых изменений в дизайне индикатора мы не делали. С виду он напоминает привычный Вам Forex Gump. С другой стороны Forex Gump стал уже не просто названием индикатора, это бренд. И мы пытаемся во всех его разновидностях сохранить фирменный стиль. Вся суть индикатора в его алгоритмах работы и формулах, которые отвеча
Market Structure Patterns   is an indicator based on   smart money concepts   that displays   SMC/ICT   elements that can take your trading decisions to the next level. Take advantage of the   alerts ,   push notifications   and   email messages   to keep informed from when an element is formed on the chart, the price crosses a level and/or enters in a box/zone. Developers can access the values of the elements of the indicator using the   global variables  what allows the automation of trading d
Cycle Sniper
Elmira Memish
4.39 (36)
Please contact us after your purchase and we will send you the complimentary indicators to complete the system Cycle Sniper is not a holy grail but when you use it in a system which is explained in the videos, you will feel the difference. If you are not willing to focus on the charts designed with Cycle Sniper and other free tools we provide, we recommend not buying this indicator. We recommend watching the videos about the indiactor and system before purchasing. Videos, settings  and descri
Scalper Inside PRO Scalper Inside PRO — это индикатор внутридневного тренда и скальпинга, использующий эксклюзивные встроенные алгоритмы для оценки направления рынка и ключевых целевых уровней. Индикатор автоматически рассчитывает точки входа и выхода и несколько уровней фиксации прибыли, а также показывает подробную статистику эффективности, благодаря чему вы видите, как различные инструменты и стратегии вели себя на исторических данных. Это помогает выбирать инструменты, подходящие под текущие
Этот продукт был обновлен для рынка 2026 года и оптимизирован для последних сборок MT5. УВЕДОМЛЕНИЕ ОБ ИЗМЕНЕНИИ ЦЕНЫ: Atomic Analyst сейчас доступен за $99 . Цена увеличится до $199 после следующих 30 покупок . СПЕЦИАЛЬНОЕ ПРЕДЛОЖЕНИЕ: После покупки Atomic Analyst отправьте мне личное сообщение, чтобы получить Smart Universal EA БЕСПЛАТНО и превратить сигналы Atomic Analyst в автоматические сделки. Atomic Analyst — это индикатор Price Action без перерисовки, без перерисовывания истории и без
Easy Breakout
Mohamed Hassan
4.71 (14)
After your purchase, feel free to contact me for more details on how to receive a bonus indicator called VFI, which pairs perfectly with Easy Breakout for enhanced confluence!    Easy Breakout is a powerful price action trading system built on one of the most popular and widely trusted strategies among traders: the Breakout strategy ! This indicator delivers crystal-clear Buy and Sell signals based on breakouts from key support and resistance zones. Unlike typical breakout indicators, it levera
CRT Candle Range Theory HTF MT4.   Ultimate CRT Indicator: Advanced ICT Concepts and Malaysian SnR Trading System Master the Market Maker's Footprints with the Most Advanced Candle Range Theory Indicator Discounted   Price   $50  !!     Secure your lifetime access   now   before it switches to   subscription-only ! Unlock the true power of  Smart Money Concepts (SMC)  and trade precisely like the institutions with the  Ultimate CRT Indicator . Built exclusively for serious traders, this indicat
BTMM State Engine Pro is a MetaTrader 4 indicator for traders who use the Beat The Market Maker approach: Asian session context, kill zone timing, level progression, peak formation detection, and a multi-pair scanner from a single chart. It combines cycle state logic with a built-in scanner dashboard so you do not need the same tool on many charts at once. What it does Draws the Asian session range; session times can follow broker server offset or be set in inputs. Tracks level progression (L
Dynamic Forex28 Navigator — инструмент для торговли на рынке Форекс нового поколения. В НАСТОЯЩЕЕ ВРЕМЯ СКИДКА 49%. Dynamic Forex28 Navigator — это эволюция наших популярных индикаторов, объединяющая мощь трех в одном: Advanced Currency Strength28 Indicator (695 отзывов) + Advanced Currency IMPULSE with ALERT (520 отзывов) + CS28 Combo Signals (бонус). Подробности об индикаторе https://www.mql5.com/en/blogs/post/758844 Что предлагает индикатор Strength нового поколения?  Все, что вам нравило
Channel Trend Bands – A Comprehensive Indicator for Market Analysis MetaTrader 5 Version Simple to Use, Effective in Application User-Friendly and Suitable for All Traders This indicator stands out due to its straightforward functionality. Whether you're a beginner exploring the market or an experienced trader refining your strategy, this tool offers valuable insights. Using a Triangular Moving Average (TMA) with additional ATR-based bands , it provides structured market data to support well-i
Super Signal – Skyblade Edition Профессиональная система трендовых сигналов без перерисовки и без задержек с исключительным процентом выигрышей | Для MT4 / MT5 Лучше всего работает на младших таймфреймах, таких как 1 минута, 5 минут и 15 минут. Основные характеристики: Super Signal – Skyblade Edition — это интеллектуальная система сигналов, специально разработанная для трендовой торговли. Она использует многоуровневую фильтрацию, чтобы выявлять только сильные направленные движения, подкреплённ
Другие продукты этого автора
Reverse_Elements - Formatted Description Reverse_Elements Reverse_Elements is a signal-based indicator designed to help identify potential market reversal points directly on the chart. Using a proprietary calculation method, the indicator displays buy and sell signals with arrows. It is built to support discretionary trading by making potential entry areas easier to recognize visually. This is not an Expert Advisor and does not place trades automatically. Main Features Buy and sell arrows displa
================================================================  DispTrade_en.mq4  User Manual ================================================================ OVERVIEW -------- Displays trade history and open positions visually on the MT4 chart using arrows and connecting lines. WHAT IT SHOWS ------------- - BUY Entry Arrow   : Entry point for BUY orders (blue) - SELL Entry Arrow  : Entry point for SELL orders (red) - Exit Arrow        : Close point for historical trades (goldenrod) - Dott
FREE
================================================================================   IFVG Signals Indicator  (ICTIFVGmq4_en.mq4)  ?  User Manual ================================================================================ Version : 1.00 Platform: MetaTrader 4 Signal  : IFVG Buy / IFVG Sell arrows on the main chart Zone    : Horizontal rectangle drawn at the confirmed IFVG zone -------------------------------------------------------------------------------- WHAT IS AN IFVG? -------------------
FREE
================================================================   TradeInfoS_en  -  Trade Statistics Indicator for MT4   Copyright (C) 2014 fx-mt4ea.com ================================================================ OVERVIEW -------- Displays trade history statistics and market info in a separate indicator window. Shows results for All-time, This Month, and This Week in three columns. DISPLAY LAYOUT -------------- [ S ]  T:xx/W:xx/L:xx/R:xx%/PL:xx    <- All-time stats [ M ]  T:xx/W:xx/L:xx
FREE
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
MagicalTouch for MT4 Draw a line. Wait for the alert. MagicalTouch monitors lines you draw on MT4 and fires an alert the instant price touches them. What it does Horizontal lines: Alerts when price hits the specified level. Vertical lines: Alerts when a candle reaches the specified time. Trendlines: Alerts on touch (a unique feature MT4 cannot do natively). Alert Types: Supports Popup, Sound, Email, and Mobile Push Notifications. Quick Start (3 Steps) Apply: Drag MagicalTouch onto any chart. Dr
MA Cross 448 Scanner Scan 64 pairs x 7 timeframes for MA crossovers — all from a single chart.  |  User Manual ------------------------------------------------------------------------ 1. Overview ------------------------------------------------------------------------ MA Cross 448 Scanner is a MetaTrader 4 indicator that monitors moving average crossovers across 64 currency pairs and 7 timeframes simultaneously, displaying all results in a single panel. Drop it onto any chart and it instantly
AutoLineSaver for 448 Save and restore your chart workspace automatically.  |  User Manual 1. Overview AutoLineSaver automatically saves every line you draw on the chart and restores them the next time you open it. No more redrawing your analysis from scratch. Drop AutoLineSaver onto your chart once, and your workspace is always preserved. What it saves: • Horizontal lines • Trendlines • Rays (extended trendlines) • Vertical lines • Rectangles • Fibonacci retracements How it works: • Lines
## 1. Overview  ?  ICT IFVG All-Currency Scanner Detects IFVG (Inverse Fair Value Gap) signals across all currency pairs simultaneously. An IFVG occurs when a candle body fully breaks through a prior Fair Value Gap in the OPPOSITE direction ? a key ICT concept indicating a potential institutional reversal.   BUY  signal : Bear FVG is broken upward   → price likely to rise   SELL signal : Bull FVG is broken downward → price likely to fall Scans up to 64 symbols × 7 timeframes = 448 combina
HigherTF Background Candle draws higher timeframe candlesticks directly on your chart background, giving you instant multi-timeframe context without switching charts. KEY FEATURES - Background HTF Candles: Renders Open/High/Low/Close of any higher timeframe as colored rectangles behind your price action. - Instant TF Switching: Press keys 1-9 to switch between M1, M5, M15, M30, H1, H4, D1, W1, MN1. Press 0 to hide. - Auto-Promotion: If the selected TF is equal to or lower than the cha
Reverse_Elements_AllSearch Reverse_Elements signals multi-symbol / multi-timeframe scanner for MetaTrader 4 ---------------------------------------------------------------------- Important Requirement ---------------------------------------------------------------------- Reverse_Elements_AllSearch requires the main Reverse_Elements indicator. Reverse_Elements_AllSearch is not a standalone signal-generation indicator. It is a scanner that reads signals from the main Reverse_Elements indicator an
Фильтр:
Нет отзывов
Ответ на отзыв