UT Alart Bot

4.75

To get access to MT4 version please click  https://www.mql5.com/en/market/product/130055 

- This is the exact conversion from TradingView: "Ut Alart Bot Indicator".

- You can message in private chat for further changes you need.

Here is the source code of a simple Expert Advisor operating based on signals from Ut Bot Indicator.

#property copyright "This EA is only education purpose only use it ur own risk"
#property link      "https://sites.google.com/view/automationfx/home"
#property version   "1.00"

#include <Trade\Trade.mqh>
CTrade trade;

int indicator_handle;

input group "EA Setting"
input int magic_number = 123456; // Magic number
input double fixed_lot_size = 0.01; // Fixed lot size
input double AtrCoef = 2; // ATR Coefficient (Sensitivity)
input int AtrLen = 10; // ATR Period


input string IndicatorName = "Market/UT Alart Bot"; // Ind icator name

// Buffers for indicator
double BullBuffer[];
double BearBuffer[];

datetime timer = NULL;

int OnInit() {
   trade.SetExpertMagicNumber(magic_number);

    // Load the custom indicator
    indicator_handle = iCustom(NULL, 0, IndicatorName);
    if (indicator_handle == INVALID_HANDLE) {
        Print("Failed to load indicator. Error: ", GetLastError());
        return(INIT_FAILED);
    }

    // Initialize buffers
    ArraySetAsSeries(BullBuffer, true);
    ArraySetAsSeries(BearBuffer, true);

    return(INIT_SUCCEEDED);
}

void OnDeinit(const int reason) {
    IndicatorRelease(indicator_handle);
}

void OnTick() {
    if (!isNewBar()) return;

    // Get the latest buffer values
    if (CopyBuffer(indicator_handle, 0, 0, 1, BullBuffer) <= 0 ||
        CopyBuffer(indicator_handle, 1, 0, 1, BearBuffer) <= 0) {
        Print("Failed to copy buffer. Error: ", GetLastError());
        return;
    }

    // Buy conditions
    bool buy_condition = true;
    buy_condition &= (BuyCount() == 0);
    buy_condition &= IsUTBuy(1);
    if (buy_condition) {
        CloseSell();
        Buy();
    }

    // Sell conditions
    bool sell_condition = true;
    sell_condition &= (SellCount() == 0);
    sell_condition &= IsUTSell(1);
    if (sell_condition) {
        CloseBuy();
        Sell();
    }
}

bool IsUTBuy(int i) {
    double array[];
    ArraySetAsSeries(array, true);
    CopyBuffer(indicator_handle, 0, i, 1, array);
    double val1 = array[0];
    CopyBuffer(indicator_handle, 1, i, 1, array);
    double val2 = array[0];
    return val1 > val2;
}

bool IsUTSell(int i) {
    double array[];
    ArraySetAsSeries(array, true);
    CopyBuffer(indicator_handle, 0, i, 1, array);
    double val1 = array[0];
    CopyBuffer(indicator_handle, 1, i, 1, array);
    double val2 = array[0];
    return val1 < val2;
}

int BuyCount()
{
   int buy=0;
   for(int i=0;i<PositionsTotal();i++)
   {
      ulong ticket=PositionGetTicket(i);
      if(ticket==0) continue;
      if(PositionGetInteger(POSITION_TYPE) != POSITION_TYPE_BUY) continue;
      if(PositionGetInteger(POSITION_MAGIC) != magic_number) continue;
      buy++;
   }  
   return buy;
}

int SellCount()
{
   int sell=0;
   for(int i=0;i<PositionsTotal();i++)
   {
      ulong ticket=PositionGetTicket(i);
      if(ticket==0) continue;
      if(PositionGetInteger(POSITION_TYPE) != POSITION_TYPE_SELL) continue;
      if(PositionGetInteger(POSITION_MAGIC) != magic_number) continue;
      sell++;
   }  
   return sell;
}


void Buy()
{
   double Ask=SymbolInfoDouble(_Symbol, SYMBOL_ASK);
   if(!trade.Buy(fixed_lot_size, _Symbol, Ask, 0, 0, ""))
   {
      Print("Error executing order: ", GetLastError());
      //ExpertRemove();
   }
}

void Sell()
{
   double Bid=SymbolInfoDouble(_Symbol, SYMBOL_BID);
   if(!trade.Sell(fixed_lot_size, _Symbol, Bid, 0, 0, ""))
   {
      Print("Error executing order: ", GetLastError());
      //ExpertRemove();
   }
}


void CloseBuy()
{
   for(int i=PositionsTotal()-1;i>=0;i--)
   {
      ulong ticket=PositionGetTicket(i);
      if(ticket==0) continue;
      if(PositionGetInteger(POSITION_TYPE) != POSITION_TYPE_BUY) continue;
      if(PositionGetInteger(POSITION_MAGIC) != magic_number) continue;
      if(trade.PositionClose(ticket)==false)
      {
         Print("Error closing position: ", GetLastError());
         //ExpertRemove();
      }
   }  
}

void CloseSell()
{
   for(int i=PositionsTotal()-1;i>=0;i--)
   {
      ulong ticket=PositionGetTicket(i);
      if(ticket==0) continue;
      if(PositionGetInteger(POSITION_TYPE) != POSITION_TYPE_SELL) continue;
      if(PositionGetInteger(POSITION_MAGIC) != magic_number) continue;
      if(trade.PositionClose(ticket)==false)
      {
         Print("Error closing position: ", GetLastError());
      }
   }  
}

bool isNewBar()
{
   datetime candle_start_time= (int)(TimeCurrent()/(PeriodSeconds()))*PeriodSeconds();
   if(timer==NULL) {}
   else if(timer==candle_start_time) return false;
   timer=candle_start_time;
   return true;
}

Отзывы 5
Benjamin Afedzie
3910
Benjamin Afedzie 2025.07.30 17:14 
 

great product

Rouhollah Poursamany
19
Rouhollah Poursamany 2025.05.06 21:10 
 

Hi. I would like to extend my heartfelt thanks for your excellent work in rewriting the UT Bot indicator from TradingView into MQL5. Your effort has been truly outstanding, and I deeply appreciate the dedication you’ve put into it. It has been a valuable tool for me so far.

Detleff Böhmer
3126
Detleff Böhmer 2025.01.25 09:45 
 

Ein erstaunlich sehr guter, für jeden geeigneter Indikator (Bot). Die Signale sind ausgezeichnet gut und sehr genau. DANKE DANKE!!!

Рекомендуем также
Elevate Your Trading with Advanced Anchored Volume Weighted Average Price Technology Unlock the true power of price action with our premium Anchored VWAP Indicator for MetaTrader 5 - the essential tool for precision entries, strategic exits, and high-probability trend continuation setups. Write me a DM for a 7 day free trial.  Anchored VWAP Plus gives traders unprecedented control by allowing custom anchor points for Volume Weighted Average Price calculations on any chart. With support for 4 sim
FREE
Индикатор подчёркивает те моменты, которые профессиональный трейдер видит в обычных индикаторах. VisualVol визуально отображает разные показатели волатильности в единой шкале и общем масштабе. Подчёркивает цветом превышение показателей объёма. Одновременно могут быть отображены Тиковый и Реальный Объем, Действительный диапазон, ATR, размер свечи и ретурнс (разница open-close). Благодаря VisualVol вы увидите рыночные периоды и подходящее время для разных торговых операций. Эта версия предназначен
FREE
Volume Profile Density V2.40 Отображает распределение объема по уровням цены, показывая зоны институционального интереса. В отличие от обычного объема по времени, показывает, где объем реально сосредоточен. Основное: Горизонтальные полосы = объем на каждом уровне цены Длиннее полоса → больше объема Красные зоны = сильная поддержка / сопротивление Использование: Определение зон поддержки и сопротивления Поиск POC (Point of Control) Определение Value Area (70% объема) Использование зон низкого объ
FREE
Haven Volume Profile - это многофункциональный индикатор для анализа объемного профиля, который помогает определять ключевые ценовые уровни на основе распределения объема торгов. Он предназначен для профессиональных трейдеров, желающих более точно понимать рынок и выявлять важные точки для входа и выхода из сделок. Другие продукты ->  ЗДЕСЬ Основные возможности: Расчет Point of Control (POC) - уровня максимальной торговой активности, который позволяет выявить наиболее ликвидные уровни Определени
FREE
Value Chart Candlesticks
Flavio Javier Jarabeck
4.57 (14)
The idea of a Value Chart indicator was presented in the very good book I read back in 2020 , " Dynamic Trading Indicators: Winning with Value Charts and Price Action Profile ", from the authors Mark Helweg and David Stendahl. The idea is simple and the result is pure genius: Present candlestick Price analysis in a detrended way! HOW TO READ THIS INDICATOR Look for Overbought and Oversold levels. Of course, you will need to test the settings a lot to find the "correct" one for your approach. It
FREE
VP hidden
Emr Aljnaby
4.33 (12)
The indicator works to convert normal volume into levels and determine financial liquidity control points. It is very similar in function to Fixed Volume Profile. But it is considered more accurate and easier to use than the one found on Trading View because it calculates the full trading volumes in each candle and in all the brokers present in MetaTrade, unlike what is found in Trading View, as it only measures the broker’s displayed prices. To follow us on social media platforms: telegram
FREE
Rolling vwap atr market panel
Florian Alain Bernard Jean-paul Pierre Cuiset
Rolling VWAP + ATR Bands + Market Panel — powerful visual tool for scalping, extensions detection and intraday market structure analysis. Rolling VWAP + Panel Rolling VWAP + Panel is a professional MetaTrader 5 indicator designed to analyze market structure using a Rolling Volume Weighted Average Price (VWAP) combined with ATR-based volatility bands , a real-time market analysis panel , and an integrated candle countdown timer . This indicator provides a clear and structured view of price beha
FREE
(Специальная акция к Новому Году - беЗплатное распространение!) Индикатор показывает реальный 'Масштаб по пунктам на бар' (идентично как при ручном выставлении в Терминале, см.скрин) в правом верхнем углу Графика. Изменение отображаемого значения происходит МГНОВЕННО при любом изменении масштаба высоты/ширины графика! (что очень удобно при планировании скриншотов). в Настройках: смена языка (Русский / Английский), размер шрифта отображаемого текста, коэфициент смещения текстовой метки от угла г
FREE
Aggression Volume
Flavio Javier Jarabeck
4.29 (17)
Aggression Volume Indicator is the kind of indicator that is rarely found in the MQL5 community because it is not based on the standard Volume data provided by the Metatrader 5 platform. It requires the scrutiny of all traffic Ticks requested on the platform... That said, Aggression Volume indicator requests all Tick Data from your Broker and processes it to build a very special version of a Volume Indicator, where Buyers and Sellers aggressions are plotted in a form of Histogram. Additionally,
FREE
Simple Anchored VWAP   is a lightweight yet powerful tool designed for traders who want precise volume-weighted levels without complexity. This indicator lets you anchor VWAP from any point on the chart and instantly see how price reacts around institutional volume zones. MT4 Version - https://www.mql5.com/en/market/product/155320 Join To Learn Market Depth -   https://www.mql5.com/en/channels/suvashishfx Using VWAP bands and dynamic levels, the tool helps you understand where real buying and s
FREE
This indicator sums up the difference between the sells aggression and the buys aggression that occurred in each Candle, graphically plotting the waves of accumulation of the aggression volumes.   Through these waves an exponential average is calculated that indicates the direction of the business flow. Note: This indicator DOES NOT WORK for Brokers and/or Markets WITHOUT the type of aggression (BUY or SELL).   Be sure to try our Professional version with configurable features and alerts:  Agre
FREE
Индикатор Mirror Chart для MT5 — это индикатор наложения, специально разработанный для проецирования второго финансового инструмента непосредственно на основное окно графика. Этот инструмент незаменим для трейдеров, которые полагаются на корреляционный анализ, поскольку он визуализирует ценовые движения двух разных инструментов в реальном времени. В отличие от традиционных индикаторов наложения, этот индикатор использует интеллектуальную, динамическую логику центрирования и масштабирования. Он п
FREE
AntaresX Volume Profile — Indicator for MetaTrader 5 AntaresX Volume Profile is an indicator that displays the price levels where the highest trading activity was concentrated during a selected period, and calculates the historical probability of the price reacting when it reaches each of those levels. What the indicator draws The indicator identifies three levels on the chart: POC (Point of Control): the price where the highest trading activity was recorded during the selected period. Displaye
FREE
High Low Open Close
Alexandre Borela
4.98 (44)
Если вам нравится этот проект, оставьте 5-звездочный обзор. Данный показатель рисует открытые, высокие, низкие и закрывающие цены на указанные период и его можно отрегулировать для специфического часового пояса. Это важные уровни, которые выглядят многие институциональные и профессиональные трейдеры и могут быть полезны для вас, чтобы знать места, где они могут быть больше активный. Доступные периоды: Предыдущий день. Предыдущая неделя. Предыдущий месяц. Предыдущий квартал. Предыдущий год. Или
FREE
Overview Market Volume Profile Modes is a powerful MT5 volume distribution indicator that integrates multiple Volume Profile variants. Users can switch between different analysis modes through a simple menu selection. This indicator helps traders identify key price levels, support and resistance zones, and market volume distribution. Core Concepts • POC (Point of Control): The price level with the highest volume concentration, representing the market's accepted "fair value" area • VAH (Value A
FREE
Общее описание Этот индикатор — усовершенствованная версия классического канала Дончия с добавлением практических функций для реальной торговли. Помимо стандартных трёх линий (верхняя, нижняя и средняя), система определяет пробои и отображает их на графике стрелками, показывая только линию, противоположную текущему направлению тренда для более чистого восприятия. Индикатор включает: Визуальные сигналы : цветные стрелки при пробое Автоматические уведомления : всплывающие окна, push и email Фильтр
FREE
Индикатор MA Color Candles MA Color Candles — это индикатор для визуального отображения рыночного тренда путем окрашивания свечей на графике. Он не добавляет объектов и не искажает котировки, а изменяет цвет реальных свечей в зависимости от состояния двух скользящих средних. Это позволяет быстро оценить направление цены и использовать индикатор как фильтр в стратегиях. Принцип работы Бычий тренд: быстрая MA выше медленной, медленная MA растёт (зелёные свечи). Медвежий тренд: быстрая MA ниже мед
FREE
Simple QM Pattern   is a powerful and intuitive trading indicator designed to simplify the identification of the Quasimodo (QM) trading pattern. The QM pattern is widely recognized among traders for effectively signaling potential   reversals   by highlighting key market structures and price action formations. This indicator helps traders easily visualize the QM pattern directly on their charts, making it straightforward even for those who are new to pattern trading. Simple QM Pattern includes d
FREE
Expansoes M
Marcus Vinicius Da Silva Miranda
The M Extensions are variations of the Golden Ratio (Fibonacci Sequence). It is the World's first technique developed for Candle Projections. Advantages: Easy to plot. Candle anchoring; High and accurate precision as support and resistance; Excellent Risk x Return ratio; Works in any timeframe; Works in any asset / market.   The M Extensions are classified into: M0: Zero point (starting candle) RC: Initial candle control region M1: Extension region 1 M2: Extension region 2 M3: Extension regi
FREE
Order Book, известный также как Market Book, глубина рынка, стакан цен, Level 2, - это предоставляемая брокером динамически обновляемая таблица с данными по текущим объемам торговых заявок на покупку и продажу для различных уровней цен вблизи Bid и Ask конкретного финансового инструмента. MetaTrader 5 предоставляет возможность трансляции стакана цен , но только в реальном времени. Данный эксперт OrderBook History Playback позволяет воспроизводить события стакана на истории из предварительно сохр
FREE
Индикатор вычисляет профиль объёма и выставляет метки, соответствующие уровням VAL, VAH и POC, для каждой свечи индивидуально. Особенности работы индикатора Индикатор работает на периодах от M3 до MN, но для вычислений использует исторические данные меньших периодов: M1 - для периодов от M3 до H1, M5 - для периодов от H2 до H12, M30 - для периода D1, H4 - для периода W1, D1 - для периода MN. Цвет и положение меток VAL, VAH и POC на текущей свече считаются корректными только по времени близкому
FREE
VWAP_PC_MQL5 — простой самодельный индикатор VWAP для отображения объёмно-взвешенной средней цены в MT5. TF: Работает на всех тайм фреймах. Пары: Подходит для Forex, индексов, сырьевых товаров и акций. Параметры: AppliedPrice – тип цены для расчёта LineColor / Width / Style – стиль линии VWAP SessionReset – сброс по сессии или непрерывный режим Как работает (принцип VWAP): VWAP — это объёмно-взвешенная средняя цена , рассчитываемая как: VWAP = (∑ Цена × Объём) / (∑ Объём) Она показывает средн
FREE
Core Purpose ​ A permanent crosshair indicator designed exclusively for MetaTrader 5 (MT5). It addresses key limitations of MT5's default crosshair, including the need for manual activation, automatic disappearance on click, and solid lines obscuring price bars. This indicator optimizes chart analysis by delivering a smooth, professional-grade crosshair experience on MT5. ​ Key Features ​ Automatic activation: Enabled immediately after loading, replacing the default Ctrl+F function. The crossha
FREE
Ultimate Retest
Nguyen Thanh Cong
5 (6)
Introduction The "Ultimate Retest" Indicator stands as the pinnacle of technical analysis made specially for support/resistance or supply/demand traders. By utilizing advanced mathematical computations, this indicator can swiftly and accurately identify the most powerful support and resistance levels where the big players are putting their huge orders and give traders a chance to enter the on the level retest with impeccable timing, thereby enhancing their decision-making and trading outcomes.
FREE
Enhanced Volume Profile: The Ultimate Order Flow & Liquidity Analysis Tool Overview Enhanced Volume Profile is an indicator for MetaTrader 5 that displays the traded volume at specific price levels over a defined period. It separates the total volume into buy and sell components, presenting them as a side-by-side histogram on the chart. This allows users to observe the volume distribution and the proportion of buy and sell volumes at each price level. Graphics Rendering The indicator uses the
FREE
MyFXRoom Supply & Demand Zones Automatically identifies and draws high-probability Supply and Demand zones directly on your chart using a ZigZag-based swing point algorithm. Zones are calculated on a configurable higher timeframe and projected onto any chart timeframe, giving you clean, objective levels without manual analysis. How It Works The indicator scans historical price data for significant swing highs and swing lows using a ZigZag algorithm. Each confirmed swing point becomes a Supply z
FREE
PZ Penta O MT5
PZ TRADING SLU
3.5 (4)
The Penta-O is a 6-point retracement harmonacci pattern which usually precedes big market movements. Penta-O patterns can expand and repaint quite a bit. To make things easier this indicator implements a twist: it waits for a donchian breakout in the right direction before signaling the trade. The end result is an otherwise repainting indicator with a very reliable trading signal. The donchian breakout period is entered as an input. [ Installation Guide | Update Guide | Troubleshooting | FAQ | A
FREE
FlatBreakout  MT5 (Бесплатная версия) Детектор флэта и пробоев для MT5 — только для GBPUSD FlatBreakout   MT5  — это бесплатная версия профессионального индикатора FlatBreakoutPro MT5, специально предназначенная для анализа флэта и поиска точек пробоя только по паре   GBPUSD . Идеально для трейдеров, которые хотят познакомиться с уникальной фрактальной логикой FlatBreakout MT5  и протестировать сигналы пробоя диапазона на реальном рынке. Для кого этот продукт Для трейдеров, предпочитающих торгов
FREE
Вот профессиональный перевод на русский язык Forensic ATR Chandelier Exit Pro – Описание для MQL5 Market Возьмите полный контроль над выходами с точностью и логикой, основанной на волатильности. Forensic ATR Chandelier Exit Pro — это высокопроизводительный трендовый индикатор и инструмент управления стоп-лоссами для MetaTrader 5. Он разработан для трейдеров, которым требуется профессиональный анализ волатильности, повторяющий точную логику лучших реализаций TradingView, но нативно в MQL5. Инд
FREE
MIDAS Super VWAP
Flavio Javier Jarabeck
4.27 (11)
Imagine VWAP, MVWAP and MIDAS in one place... Well, you found it! Now you can track the movement of Big Players in various ways, as they in general pursue the benchmarks related to this measuring, gauging if they had good execution or poor execution on their orders. Traders and analysts use the VWAP to eliminate the noise that occurs throughout the day, so they can measure what prices buyers and sellers are really trading. VWAP gives traders insight into how a stock trades for that day and deter
FREE
С этим продуктом покупают
ARIBot is a powerful trading companion designed to generate high-probability entry signals with dynamic TP/SL/DP levels based on volatility. Built-in performance tracking shows win/loss stats, PP1/PP2 hits, and success rates — all updated live. Key Features: Buy/Sell signals with adaptive volatility bands Real-time TP/SL/DP levels based on ATR Built-in MA Filter with optional ATR/StdDev volatility Performance stats panel (Success, Profit/Loss, PP1/PP2) Alerts via popup, sound, push, or email Cus
SuperScalp Pro
Van Minh Nguyen
4.63 (24)
SuperScalp Pro – Продвинутая скальпинговая индикаторная система с множественными фильтрами SuperScalp Pro — это продвинутый скальпинговый индикатор, который сочетает классический Supertrend с несколькими интеллектуальными фильтрами подтверждения для поиска торговых возможностей. Он эффективно работает на различных таймфреймах от M1 до H4, с оптимизированной производительностью на XAUUSD, BTCUSD и основных валютных парах Forex. Индикатор предоставляет четкие сигналы Buy и Sell, а также автоматиче
Каждый покупатель этого индикатора получает дополнительно Бесплатно: Авторскую утилиту "Bomber Utility", которая автоматически сопровождает каждю торговую операцию, устанавливает уровни Стоп Лосс и Тейк профит и закрывает сделки согласно правилам этой стратегии, Сет-файлы для настройки этого индикатора на различных активах, Сет-файлы для настройки Bomber Utility в режимы: "Минимум Риска", "Взвешенный Риск" и "Стратегия Выжидания", Пошаговый видео-мануал, который поможет вам быстро установить, на
Entry In The Zone and SMC Multi Timeframe is a real-time 2-in-1 market analysis tool that combines market structure analysis and a No Repaint BUY / SELL signal system into a single indicator, built on Smart Money Concepts (SMC) — a widely adopted framework used by professional traders to understand market structure. This indicator helps you see the market more clearly, make decisions based on structure rather than guesswork, and focus on high-probability zones where price is more likely to react
Gold Entry Sniper – Профессиональная Мульти-Таймфрейм ATR Панель для Скальпинга и Свинг-Трейдинга на Золоте Gold Entry Sniper — это передовой индикатор для MetaTrader 5, разработанный для точных сигналов на покупку/продажу по XAUUSD и другим инструментам. Основан на логике ATR Trailing Stop и мульти-таймфрейм анализе , этот инструмент идеально подходит как для скальперов, так и для среднесрочных трейдеров, обеспечивая чёткие точки входа с высокой вероятностью . Основные возможности и преимуществ
Power Candles V3 — самооптимизирующийся индикатор силы Power Candles V3 преобразует силу валюты и инструмента в готовый к использованию торговый план на каждом графике, к которому он прикреплен. Вместо того, чтобы просто раскрашивать свечи, он выполняет автоматическую оптимизацию в режиме реального времени в фоновом режиме и предоставляет вам оптимальные значения Stop Loss, Take Profit и порог сигнала для выбранного вами символа. Один клик — и все готово для реальной торговли: на графике появляю
Если вы покупаете этот индикатор, вы получите мой профессиональный Trade Manager + EA БЕСПЛАТНО. Прежде всего стоит подчеркнуть, что эта торговая система является индикатором без перерисовки, без повторной отрисовки и без задержки, что делает ее идеальной как для ручной, так и для роботизированной торговли. Онлайн курс, руководство и загрузка пресетов. «Smart Trend Trading System MT5» - это комплексное торговое решение, созданное для новичков и опытных трейдеров. Он объединяет более 10 премиаль
SignalTech MT5 is a fully rule based trading system for EURUSD, USDCHF, USDJPY, AUDUSD, NZDUSD, EURJPY, AUDJPY, NZDJPY, CADJPY.  All the winning trades with chart setups are published on the comments page. 2025-12 1174 Pips 2026-01 2624 Pips 2026-02 2937 Pips 2026-03 2165 Pips 2026-04 2243 Pips It can generate signals with Buy/Sell Arrows and Pop-Up/Sound Alerts. Each signal has clear Entry and Stop Loss levels, which should be automatically flagged on the chart, as well as potential Targets 1,
Gann Made Easy   - это профессиональная, но при этом очень простая в применении Форекс система, основанная на лучших принципах торговли по методам господина У.Д. Ганна. Индикатор дает точные BUY/SELL сигналы, включающие в себя уровни Stop Loss и Take Profit. ПОЖАЛУЙСТА, СВЯЖИТЕСЬ СО МНОЙ ПОСЛЕ ПОКУПКИ, ЧТОБЫ ПОЛУЧИТЬ ТОРГОВЫЕ ИНСТРУКЦИИ И ОТЛИЧНЫЕ ДОПОЛНИТЕЛЬНЫЕ ИНДИКАТОРЫ БЕСПЛАТНО! Вероятно вы уже не раз слышали о торговли по методам Ганна. Как правило теория Ганна отпугивает от себя не только
Представляем       Quantum Breakout PRO   , новаторский индикатор MQL5, который меняет ваш способ торговли в зонах прорыва! Разработан командой опытных трейдеров со стажем торговли более 13 лет,       Квантовый прорыв PRO       разработан, чтобы поднять ваше торговое путешествие к новым высотам с его инновационной и динамичной стратегией зоны прорыва. Quantum Breakout Indicator покажет вам сигнальные стрелки на зонах прорыва с 5 целевыми зонами прибыли и предложением стоп-лосса на основе поля
Azimuth Pro
Ottaviano De Cicco
5 (7)
Azimuth Pro V2: Синтетический фрактальный структурный анализ и подтверждённые входы для MT5 Обзор Azimuth Pro — многоуровневый индикатор свинговой структуры от Merkava Labs . Четыре вложенных уровня свингов, привязанный к свингам VWAP, определение ABC-паттернов, трёхтаймфреймная структурная фильтрация и подтверждённые входы на закрытой свече — один график, один рабочий процесс от микро-свингов до макро-циклов. Это не слепой сигнальный продукт. Это рабочий процесс, основанный на структуре, для т
Прежде всего стоит подчеркнуть, что этот Торговый Инструмент является Неперерисовывающимся Нерепейнтинговым Индикатором, что делает его идеальным для профессиональной торговли. Онлайн-курс, руководство пользователя и демонстрация. Индикатор Концепций Умного Действия Цены - очень мощный инструмент как для новичков, так и для опытных трейдеров. Он объединяет более 20 полезных индикаторов в одном, комбинируя передовые торговые идеи, такие как анализ Inner Circle Trader и стратегии торговли концеп
Давайте сначала будем честны. Ни один индикатор сам по себе не сделает вас прибыльным. Если кто-то говорит вам обратное — он продаёт вам мечту. Любой индикатор, который показывает идеальные стрелки покупки/продажи, можно сделать безупречным — просто увеличьте нужный участок истории и сделайте скриншот успешных сделок. Мы так делать не будем. SMC Intraday Formula — это инструмент. Он считывает структуру рынка за вас, определяет зоны с наивысшей вероятностью движения цены и точно показывает, как
RelicusRoad Pro: Квантовая Рыночная Операционная Система СКИДКА 70% ПОЖИЗНЕННЫЙ ДОСТУП (ОГРАНИЧЕНО) - ПРИСОЕДИНЯЙТЕСЬ К 2000+ ТРЕЙДЕРАМ Почему большинство трейдеров теряют деньги даже с «идеальными» индикаторами? Потому что они торгуют Единичными Концепциями в вакууме. Сигнал без контекста — это лотерея. Чтобы выигрывать стабильно, вам нужна КОНФЛЮЭНЦИЯ . RelicusRoad Pro — это не простой стрелочный индикатор. Это полная Количественная Рыночная Экосистема . Она отображает «Дорогу Справедливой Сто
Meridian Pro
Ottaviano De Cicco
5 (2)
Meridian Pro 2.00: профессиональная multi-timeframe матрица тренда для MT5 Meridian Pro 2.00 - профессиональная адаптивная матрица тренда для MetaTrader 5. Она объединяет оригинальный трендовый движок Meridian, чистый chart ribbon, сигнальные стрелки по закрытому бару, dashboard на 8 таймфреймов, Fuel momentum, weighted consensus, synthetic HTF processing и chart-native линии контекста старших таймфреймов. Цель простая: читать текущий тренд, multi-timeframe структуру, силу, momentum и EA-ready с
Quantum TrendPulse
Bogdan Ion Puscasu
5 (25)
Представляем   Quantum TrendPulse   , совершенный торговый инструмент, который объединяет мощь   SuperTrend   ,   RSI   и   Stochastic   в один комплексный индикатор, чтобы максимизировать ваш торговый потенциал. Разработанный для трейдеров, которые ищут точность и эффективность, этот индикатор помогает вам уверенно определять рыночные тренды, сдвиги импульса и оптимальные точки входа и выхода. Основные характеристики: Интеграция SuperTrend:   легко следуйте преобладающим рыночным тенденциям и п
FX Trend NG: Следующее поколение интеллектуального анализа трендов на разных рынках Обзор FX Trend NG — это профессиональный инструмент анализа трендов и мониторинга рынка с поддержкой нескольких таймфреймов. Он позволяет за секунды получить полное структурное понимание текущего состояния рынка. Вместо переключения между десятками графиков вы мгновенно видите, какие инструменты находятся в тренде, где импульс ослабевает и где наблюдается сильная синхронизация между таймфреймами. Специальное пр
Прежде всего стоит подчеркнуть, что этот торговый индикатор не перерисовывается, не перерисовывает и не отставает, что делает его идеальным как для ручной, так и для роботизированной торговли. Руководство пользователя: настройки, вводы и стратегия. Атомный аналитик - это индикатор ценового действия PA, который использует силу и импульс цены, чтобы найти лучший край на рынке. Оборудованный расширенными фильтрами, которые помогают убирать шумы и ложные сигналы, и повышают торговый потенциал. Испо
FX Power: Анализируйте силу валют для более эффективной торговли Обзор FX Power — это ваш незаменимый инструмент для понимания реальной силы валют и золота в любых рыночных условиях. Определяя сильные валюты для покупки и слабые для продажи, FX Power упрощает принятие торговых решений и выявляет высоковероятные возможности. Независимо от того, хотите ли вы следовать за трендами или предсказывать развороты с использованием экстремальных значений дельты, этот инструмент идеально адаптируется под
Большинство стрелочных индикаторов дают сигнал и оставляют вас самостоятельно разбираться со всем остальным. KT Alpha Hunter Arrows дает вам полный торговый план. Каждая сигнальная стрелка появляется вместе с уже готовым планом: линия входа, стоп-лосс, четыре уровня тейк-профита и живой вердикт по преимуществу, который показывает, стоит ли сейчас торговать данный символ и таймфрейм. В комплект входит Trade Manager EA, который берет на себя сопровождение сделки после вашего входа, помогая сохраня
Market Structure Order Block Dashboard MT5 — это индикатор MT5, разработанный для трейдеров, которые хотят читать рыночную структуру и основные зоны реакции цены прямо на графике. Он объединяет BOS, ChoCH, Order Blocks, Fair Value Gaps (FVG), Ликвидность, Kill Zones, Volume Profile и компактную панель для быстрого анализа. Индикатор предназначен для трейдеров, использующих рыночную структуру, концепции ICT и Smart Money как основу для принятия решений. Он помогает выявлять продолжения тренда, во
Btmm state engine pro
Garry James Goodchild
5 (4)
BTMM State Engine Pro is a MetaTrader 5 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
Раскройте силу торговли трендами с помощью индикатора Trend Screener: вашего идеального решения для торговли трендами, основанного на нечеткой логике и мультивалютной системе! Повысьте уровень своей торговли по тренду с помощью Trend Screener, революционного индикатора тренда, основанного на нечеткой логике. Это мощный индикатор отслеживания тренда, который сочетает в себе более 13 инструментов и функций премиум-класса и 3 торговые стратегии, что делает его универсальным выбором для превращения
Представляю Вам отличный технический индикатор GRABBER, который работает, как готовая торговая стратегия "Все включено"! В одном программном коде интегрированы мощные инструменты для технического анализа рынка, торговые сигналы (стрелки), функции алертов и Push уведомлений.  Каждый покупатель этого индикатора получает дополнительно БЕСПЛАТНО:  Grabber Утилиту для автоматического управления открытыми ордерами, Пошаговый видео-мануал : как установить, настроить и торговать, Авторские сет-файлы дл
Топовый индикатор МТ5, дающий сигналы для входа в сделки без перерисовки! Идеальные точки входа в сделки для  валют, крипты, металлов, акций, индексов !  Смотрите  видео  (6:22) с примером отработки всего одного сигнала, окупившего индикатор. Версия индикатора для MT4 Преимущества индикатора Сигналы на вход без перерисовки Если сигнал появился, он никуда НЕ исчезает! В отличие от индикаторов с перерисовкой, которые ведут к потере депозита, потому что могут показать сигнал, а потом убрать его. Б
Индикатор Trend Forecaster использует уникальный авторский алгоритм для определения точек входа в сделку по пробойной стратегии. Индикатор определяет ценовые скопления и анализирует движение цены возле уровней и показывает сигнал, когда цена пробивает уровень. Индикатор Trend Forecaster подходит для любых финансовых активов: валюты (Форекс), металлы, акции, индексы, криптовалюты. Также индикатор можно настроить для работы на любых тайм-фреймах, однако в качестве рабочего тайм-фрейма все же реком
Эта панель показывает последние доступные   гармонические паттерны   для выбранных символов, так что вы сэкономите время и будете более эффективны /   MT4 версия . Бесплатный индикатор:   Basic Harmonic Pattern Колонки индикатора Symbol:   отображаются выбранные символы Trend   :   бычий или медвежий Pattern   :   тип паттерна (Гартли, бабочка, летучая мышь, краб, акула, шифр или ABCD) Entry   :   цена входа SL:   цена стоп-лосса TP1:   цена первого тейк-профита TP2:   цена второго тейк-профи
TREND LINES PRO   помогает понять, где рынок действительно меняет направление. Индикатор показывает реальные развороты тренда и места, где крупные участники входят повторно. Вы видите   BOS-линии   смены тренда и ключевые уровни старших таймфреймов — без сложных настроек и лишнего шума. Сигналы не перерисовываются и остаются на графике после закрытия бара. VERSION MT4     -     Раскрывает свой максимальный потенциал в связке с индикатором  RFI LEVELS PRO Что показывает индикатор: Реальные смены
Индикатор точно показывает точки разворота и зоны возврата цены, где входят   крупные игроки . Вы видите, где формируется новый тренд, и принимаете решения с максимальной точностью, держа контроль над каждой сделкой. VERSION MT4     -    Раскрывает свой максимальный потенциал в связке с индикатором  TREND LINES PRO Что показывает индикатор: Разворотные конструкции и разворотные уровни с активацией в начале нового тренда. Отображение уровней  TAKE PROFIT  и  STOP LOSS  с минимальным соотношением
Super Signal Market Slayer Без перерисовки | Высокая точность | Интеллектуальный мульти-рыночный трендовый индикатор В трейдинге самое сложное — не открыть сделку, а вовремя распознать начало тренда среди рыночного шума. Именно для этого был создан Market Slayer. Это интеллектуальный индикатор без перерисовки, разработанный для внутридневной торговли. Благодаря многоуровневому подтверждению и фильтрации тренда он показывает чёткие и надёжные сигналы Buy / Sell только в ключевые моменты. Ключевы
Другие продукты этого автора
Breakout Master EA
Menaka Sachin Thorat
5 (4)
"The Breakout Master EA is a semi-automatic expert advisor. In semi-automatic mode, you only need to draw support and resistance lines or trendlines, and then the EA handles the trading. You can use this EA for every market and timeframe. However, backtesting is not available in semi-automatic mode. The EA has an option to specify how many trades to open when a breakout occurs. It opens all trades with stop loss and target orders. There is also an optional input for a breakeven function, which
FREE
UT Alart Bot EA
Menaka Sachin Thorat
UTBot EA is an automated trading system for MetaTrader 5 based on proprietary UTBot algorithm using ATR-based dynamic levels. Features: - UTBot signal generation - Heiken Ashi candle filtering - Multi-timeframe direction filter (H1/H4/D1) - ADX trend filter - Spread filter - Trading hours filter - ATR-based stop loss and take profit - Trailing stop and breakeven - Fixed or risk-based lot sizing Input parameters: - AtrLen = 10 (ATR period) - AtrCoef = 2 (signal sensitivity) - InpMaxTrades = 1-
FREE
Recovery Zone Scalper
Menaka Sachin Thorat
2 (1)
SMART RECOVERY EA – FREE Edition (MT5) SMART RECOVERY EA is a FREE Expert Advisor for MetaTrader 5 , developed by Automation FX , created for educational and testing purposes . This EA helps traders understand recovery-based trading logic with both manual control and basic automated support . Key Features (FREE Version) Manual Buy / Sell / Close All buttons Clean information panel with live trade data Basic recovery and trade monitoring logic Simple stochastic-based auto mode Suitable for lea
FREE
Trendline Expert MT5
Menaka Sachin Thorat
4 (1)
Trendline EA – Semi & Fully Automatic Trading System Trendline EA is a professional Expert Advisor designed for trading trendlines, support & resistance levels, breakouts, and retests with complete automation or trader control. The EA supports Semi-Automatic and Fully Automatic modes : Semi-Auto: Manually draw trendlines — EA executes trades automatically Full-Auto: EA automatically draws trendlines and support/resistance levels and trades them Limited-Time Offer Launch Discount Price:
Ut Bot Indicator
Menaka Sachin Thorat
5 (1)
Evolutionize Your Trading with the UT Alert Bot Indicator for MQL4 The UT Alert Bot Indicator is your ultimate trading companion, meticulously designed to give you an edge in the fast-paced world of financial markets. Powered by the renowned UT system, this cutting-edge tool combines advanced analytics, real-time alerts, and customizable features to ensure you never miss a profitable opportunity. Whether you’re trading forex, stocks, indices, or commodities, the UT Alert Bot Indicator is your k
FREE
Time Range Breakout Strategy The Time Range Breakout strategy is designed to identify and capitalize on market volatility during specific time intervals. This strategy focuses on defining a time range, calculating the high and low within that range, and executing trades when price breaks out of the defined boundaries. It is particularly effective in markets with high liquidity and strong directional movement. Key Features : Customizable Time Range : Users can specify a start time and end time t
Engulfing Levels Indicator – Smart Entry Zones for High-Probability Trades Overview: The Engulfing Levels Indicator is designed to help traders identify key price levels where potential reversals or trend continuations can occur. This powerful tool combines Engulfing Candle Patterns , Percentage-Based Levels (25%, 50%, 75%) , and Daily Bias Analysis to create high-probability trading zones . Key Features: Engulfing Pattern Detection – Automatically identifies Bullish and Bearish Engulf
FREE
Supertrend with CCI Indicator for MQL5 – Short Description The Supertrend with CCI Indicator is a powerful trend-following tool that combines Supertrend for trend direction and CCI for momentum confirmation. This combination helps reduce false signals and improves trade accuracy. Supertrend identifies uptrends and downtrends based on volatility. CCI Filter ensures signals align with market momentum. Customizable Settings for ATR, CCI period, and alert options. Alerts & Notifications via
FREE
Time Range Breakout EA AFX – Precision Trading with ORB Strategy Capture strong market trends with high-precision breakouts using the proven Opening Range Breakout (ORB) strategy! Time Range Breakout EA AFX is a fully automated Expert Advisor that identifies breakout levels within a user-defined trading window and executes trades with precision and safety. No martingale, no grid—just controlled, professional risk management. Why Choose Time Range Breakout EA AFX? Proven ORB Strategy
Certainly! A candlestick pattern EA is an Expert Advisor that automates the process of identifying specific candlestick patterns on a price chart and making trading decisions based on those patterns. Candlestick patterns are formed by one or more candles on a chart and are used by traders to analyze price movements and make trading decisions.  EA likely scans the price chart for predefined candlestick patterns such as the Hammer, Inverted Hammer, Three White Soldiers, and Evening Star. When it
FREE
Master Breakout EA Description The Master Breakout EA is a fully automatic Expert Advisor that operates based on breakout strategies involving support and resistance lines or trendlines. The EA manages trades automatically after identifying and responding to breakout scenarios. Features: Trade Management: The EA offers the flexibility to specify the number of trades to open upon a breakout. Each trade is configured with stop loss and target options. An optional breakeven function helps secure p
Фильтр:
mura1975
64
mura1975 2026.02.24 05:20 
 

Linear Regression Candlesと合わせて使用したら、勝率が上がりました。

Benjamin Afedzie
3910
Benjamin Afedzie 2025.07.30 17:14 
 

great product

Rouhollah Poursamany
19
Rouhollah Poursamany 2025.05.06 21:10 
 

Hi. I would like to extend my heartfelt thanks for your excellent work in rewriting the UT Bot indicator from TradingView into MQL5. Your effort has been truly outstanding, and I deeply appreciate the dedication you’ve put into it. It has been a valuable tool for me so far.

Detleff Böhmer
3126
Detleff Böhmer 2025.01.25 09:45 
 

Ein erstaunlich sehr guter, für jeden geeigneter Indikator (Bot). Die Signale sind ausgezeichnet gut und sehr genau. DANKE DANKE!!!

7099266
411
7099266 2025.01.19 09:54 
 

Пользователь не оставил комментарий к оценке

Menaka Sachin Thorat
9185
Ответ разработчика Menaka Sachin Thorat 2025.01.19 14:42
"Thank you so much for the amazing feedback and the 10+ rating! 😊 I'm glad you liked it. Adding a sound alert is a great suggestion—I’ll definitely consider it for the next update. Your support means a lot!"
Ответ на отзыв