Ut Bot Indicator

5

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 key to smarter, faster, and more precise trading decisions.

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

#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"
#property strict
//+------------------------------------------------------------------+
// Expert iniputs                                                    |
//+------------------------------------------------------------------+
input string             EA_Setting              =  "";                   // General settings
input int                magic_number            = 1234;                 // Magic number for trade identification
input double             fixed_lot_size          = 0.01;                 // Fixed lot size
input double             StopLoss                = 0;                    // Stop loss level (in pips)
input double             TakeProfit              = 0;                   // Take profit level (in pips)
input double             LotMultiplier = 2.0; // Multiplier for martingale strategy


string Name_Indicator       = "Market/UT Bot Indicator.ex4";  // Name of the custom indicator
int bufferToBuy2 = 0;                      // Buffer index for buy signals
int bufferToSell2 = 1;                     // Buffer index for sell signals
double current_lot_size;                   // Current lot size
int LastProf = 0;                          // 1 = profit, -1 = loss, 0 = no history


// Enum to represent candle indices
enum candle
  {
   curr = -1,  // Current candle
   prev = 0    // Previous closed candle
  };

// Indicator settings
input string Indicator = "== Market/UT Bot Indicator.ex4 ==";    // Indicator title
static input string _Properties_ = "Automationfx";  // Expert properties
input double         Key_value          =  2;         // Key value for indicator calculation
input double         atrPeriods         =  14;       // ATR periods for indicator
input bool           h                  = false;     // Use Heiken Ashi candles for signals
int                  s                  = prev;     // Show arrows on previous candle
int                  p                  = 20;                         // Arrow position (in points)
input int            b                  = 10;                 // Candle period for calculations
string T_0 = "== Draw Trade ==";    // Trade drawing title
input bool          drawTradeON         = false;

//+------------------------------------------------------------------+
//|  get indicator                                                                |
//+------------------------------------------------------------------+
double UT_Bot(int buffer, int _candle)
  {
// Call the custom indicator and return its value
   return iCustom(NULL, 0, "Market/UT Bot Indicator.ex4",Indicator, Key_value, atrPeriods, h, s, p, b, T_0, drawTradeON, buffer, _candle);
  }


//+------------------------------------------------------------------+
// Expert initialization function                                   |
//+------------------------------------------------------------------+
int OnInit()
  {
   ChartSetInteger(0, CHART_SHOW_GRID, false);
   return(INIT_SUCCEEDED);
  }
//+------------------------------------------------------------------+
//| Expert deinitialization function                                 |
//+------------------------------------------------------------------+
void OnDeinit(const int reason)
  {
//---

  }
//+------------------------------------------------------------------+
//| for calculation buy                                 |
//+------------------------------------------------------------------+
int BuyCount()
  {
   int counter=0;
   for(int i=0; i<OrdersTotal(); i++)
     {
      if(OrderSelect(i, SELECT_BY_POS)==false)
         continue;
      if(OrderSymbol()!=_Symbol)
         continue;
      if(OrderMagicNumber()!=magic_number)
         continue;
      if(OrderType()==OP_BUY)
         counter++;
     }
   return counter;
  }

//+------------------------------------------------------------------+
//| for calculation sell                                                                 |
//+------------------------------------------------------------------+
int SellCount()
  {
   int counter=0;
   for(int i=0; i<OrdersTotal(); i++)
     {
      if(OrderSelect(i, SELECT_BY_POS)==false)
         continue;
      if(OrderSymbol()!=_Symbol)
         continue;
      if(OrderMagicNumber()!=magic_number)
         continue;
      if(OrderType()==OP_SELL)
         counter++;
     }
   return counter;
  }



//+------------------------------------------------------------------+
//| Expert tick function                                             |
//+------------------------------------------------------------------+
void OnTick()
  {
// Check if a new bar has formed
   if(!isNewBar())
      return;
// Buy condition
   bool buy_condition = true;
   buy_condition &= (BuyCount() == 0);
   buy_condition &= (UT_Bot(0, 1) != EMPTY_VALUE); // Ensure valid check

   if(buy_condition)
     {
      CloseSell();
      Buy();
     }
// Sell condition
   bool sell_condition = true;
   sell_condition &= (SellCount() == 0);
   sell_condition &= (UT_Bot(1, 1) != EMPTY_VALUE); // Ensure valid check

   if(sell_condition)
     {
      CloseBuy();
      Sell();
     }

  }

// Function to calculate lot size based on the last trade
void Lot()
  {
// Analyze the last order in history
   if(OrderSelect(OrdersHistoryTotal() - 1, SELECT_BY_POS, MODE_HISTORY))
     {
      if(OrderSymbol() == _Symbol && OrderMagicNumber() == magic_number)
        {
         if(OrderProfit() > 0)
           {
            LastProf = 1;                   // Last trade was profitable
            current_lot_size = fixed_lot_size; // Reset to fixed lot size
           }
         else
           {
            LastProf = -1;                  // Last trade was a loss
            current_lot_size = NormalizeDouble(current_lot_size * LotMultiplier, 2);
           }
        }
     }
   else
     {
      // No previous trades, use the fixed lot size
      LastProf = 0;
      current_lot_size = fixed_lot_size;
     }
  }



datetime timer=NULL;
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;
  }

//+------------------------------------------------------------------+
//|  open buy trades                                                                |
//+------------------------------------------------------------------+
void Buy()
  {
   Lot();
   double StopLossLevel;
   double TakeProfitLevel;
// Calculate the stop loss and take profit levels based on input values
   if(StopLoss>0)
      StopLossLevel=Bid-StopLoss*Point;
   else
      StopLossLevel=0.0;
   if(TakeProfit>0)
      TakeProfitLevel=Ask+TakeProfit*Point;
   else
      TakeProfitLevel=0.0;


   if(OrderSend(_Symbol, OP_BUY, current_lot_size, Ask, 3, StopLossLevel,TakeProfitLevel, NULL, magic_number, 0, clrNONE) == -1)
     {
      Print("Error Executing Buy Order: ", GetLastError());
     }
  }

//+------------------------------------------------------------------+
//|  open sell trades                                                                |
//+------------------------------------------------------------------+
void Sell()
  {
   Lot();
   double StopLossLevel1;
   double TakeProfitLevel2;
// Calculate the stop loss and take profit levels based on input values
   if(StopLoss>0)
      StopLossLevel1=Ask+StopLoss*Point;
   else
      StopLossLevel1=0.0;
   if(TakeProfit>0)
      TakeProfitLevel2=Bid-TakeProfit*Point;
   else
      TakeProfitLevel2=0.0;


   if(OrderSend(_Symbol, OP_SELL, current_lot_size, Bid, 3, StopLossLevel1,TakeProfitLevel2, NULL, magic_number, 0, clrNONE) == -1)
     {
      Print("Error Executing Sell Order: ", GetLastError());
     }
  }


//+------------------------------------------------------------------+
//|                                                                  |
//+------------------------------------------------------------------+
void CloseBuy()
  {
   for(int i=OrdersTotal()-1; i>=0; i--)
     {
      if(OrderSelect(i, SELECT_BY_POS)==false)
         continue;
      if(OrderSymbol()!=_Symbol)
         continue;
      if(OrderMagicNumber()!=magic_number)
         continue;
      if(OrderType()==OP_BUY)
         if(OrderClose(OrderTicket(), OrderLots(), Bid, 3, clrNONE)==false)
           {
            Print("Error Closing Position: ", GetLastError());
           }
     }
  }

//+------------------------------------------------------------------+
//|  close all positions currunly not use                                                                |
//+------------------------------------------------------------------+
void CloseSell()
  {
   for(int i=OrdersTotal()-1; i>=0; i--)
     {
      if(OrderSelect(i, SELECT_BY_POS)==false)
         continue;
      if(OrderSymbol()!=_Symbol)
         continue;
      if(OrderMagicNumber()!=magic_number)
         continue;
      if(OrderType()==OP_SELL)
         if(OrderClose(OrderTicket(), OrderLots(), Ask, 3, clrNONE)==false)
           {
            Print("Error Closing Position: ", GetLastError());
           }
     }
  }
//+------------------------------------------------------------------+ 


Отзывы 1
sid07198
24
sid07198 2026.05.11 00:10 
 

This indicator is helping me make the right decisions. Thank you so much.

Рекомендуем также
This indicator help to mark the high and low of the session Asian,London,Newyork , with custom hour setting This indicator is set to count from minute candle so it will move with the current market and stop at the designated hour and create a accurate line for the day. below is the customization that you can adjust : Input Descriptions EnableAsian Enables or disables the display of Asian session high and low levels. EnableLondon Enables or disables the display of London session high and
FREE
SX Supply Demand Zones accurately identifies and draws high-probability Supply and Demand zones using a sophisticated algorithm. Unlike traditional indicators that clutter your chart, this indicator is designed with a focus on performance and a clean user experience. New Unique Feature: Interactive Legend System What truly sets this indicator apart from everything else is the Interactive Control Legend. You have a professional dashboard directly on your chart that allows you to: Show/Hide: Ins
FREE
Show Pips
Roman Podpora
4.27 (59)
Данный информационный индикатор будет полезен тем, кто всегда хочет быть в курсе текущей ситуации на счете. Индикатор отображает такие данные, как прибыль в пунктах, процентах и валюте, а также спред по текущей паре и время до закрытия бара на текущем таймфрейме.  VERSION MT5 -  Больше полезных индикаторов Существует несколько вариантов расположения информационной строки на графике: Справа от цены (бегает за ценой); Как комментарий (в левом верхнем углу графика); В выбранном углу экрана. Так же
FREE
Профиль рынка Форекс (сокращенно FMP) Чем это не является: FMP не является классическим отображением TPO с буквенным кодом, не отображает общий расчет профиля данных диаграммы и не сегментирует диаграмму на периоды и не вычисляет их. Что оно делает : Что наиболее важно, индикатор FMP будет обрабатывать данные, которые находятся между левым краем спектра, определяемого пользователем, и правым краем спектра, определяемого пользователем. Пользователь может определить спектр, просто потянув мышь
FREE
The indicator rely on The Toby strategy >> The mother candle which is bigger in range than the previous six candles. A vertical line shows the last Toby Candle with the targets shown up and down. The strategy is about the closing price out of the range of the toby candle to reach the 3 targets..The most probable to be hit is target1 so ensure reserving your profits and managing your stop lose.
FREE
Rainbow MT4 is a technical indicator based on Moving average with period 34 and very easy to use. When price crosses above MA and MA changes color to green, it’s a signal to buy. When price crosses below MA and MA changes color to red, it’s a signal to sell. The Expert advisor ( Rainbow EA MT4) based on Rainbow MT4 indicator, as you can see in the short video below is now available here .
FREE
The Rayol Code Hour Interval Lines indicator was designed to assist your trading experience. It draws the range of hours chosen by the user directly on the chart, so that it enables traders to visualize price movements during their preferred trading hours, providing traders a more comprehensive view of price movements and market dynamics. This indicator allows the user to choose not only the Broker's time, but also the Local time. This way, the user no longer needs to calculate local time in re
FREE
Индикатор Shadow Flare — это не перерисовывающийся инструмент для работы с трендом и ликвидностью в MetaTrader 4. Он рассчитывает настраиваемую базовую скользящую среднюю (HMA, EMA, SMA или RMA), обёрнутую в Envelope на основе Average True Range, и формирует «липкое» трендовое состояние, которое меняется только тогда, когда цена закрытия бара пробивает верхнюю или нижнюю границу диапазона. Та же тренд‑логика управляет автоматическим модулем зон спроса/предложения: он находит pivot‑максимумы и pi
FREE
QualifiedEngulfing - это бесплатная версия индикатора ProEngulfing ProEngulfing - это платная версия индикатора Advance Engulf, загрузите ее здесь. В чем разница между бесплатной и платной версией ProEngulfing ? Бесплатная версия имеет ограничение в один сигнал в день. Представляем QualifiedEngulfing - ваш профессиональный индикатор для распознавания паттернов Engulf для MT4. Разблокируйте мощь точности с QualifiedEngulfing, передовым индикатором, разработанным для выявления и выделения квалиф
FREE
PZ Penta O MT4
PZ TRADING SLU
2.33 (3)
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
Market Profile 3
Hussien Abdeltwab Hussien Ryad
3 (2)
Market Profile 3 MetaTrader 4 indicator  — is a classic Market Profile implementation that can show the price density over time, outlining the most important price levels, value area, and control value of a given trading session. This indicator can be attached to timeframes between M1 and D1 and will show the Market Profile for daily, weekly, monthly, or even intraday sessions. Lower timeframes offer higher precision. Higher timeframes are recommended for better visibility. It is also possible t
FREE
This indicator alerts you when/before new 1 or 5 minute bar candle formed. In other words,this indicator alerts you every 1/5 minutes. This indicator is especially useful for traders who trade when new bars formed. *This indicator don't work propery in strategy tester.Use this in live trading to check functionality. There is more powerful Pro version .In Pro version,you can choose more timeframe and so on. Input Parameters Alert_Or_Sound =Sound ----- Choose alert or sound or both to notify y
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
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
Candle Time (MT4) The Candle Time indicator shows the remaining time for the current candle on the active chart timeframe. It adapts automatically to the chart period and updates on every tick. This is a charting utility; it does not provide trading signals and does not guarantee any profit. Main functions Display the time remaining for the current candle on any timeframe (M1 to MN). Color-coded state: green when price is above the open (up), gray when unchanged, and red when below the open (do
FREE
Auto TP SL Manul Open Panding Orders Overview: AUto TP SL Manul Open Panding Orders is an innovative trading platform designed to enhance trading efficiency and effectiveness in managing financial investments. Key Features: Automated Management : Seamlessly manage take-profit (TP) and stop-loss (SL) orders with our advanced automation tools. Manual Adjustments : Maintain control with manual options, allowing traders to adjust orders according to market conditions.
FREE
SuperTrend MT4
KEENBASE SOFTWARE SOLUTIONS
KT SuperTrend is a modified version of the classic SuperTrend indicator with new useful features. Whether its Equities, Futures, and Forex, the beginners' traders widely use the Supertrend indicator.  Buy Signal: When price close above the supertrend line. Sell Signal: When price close below the supertrend line. Features A multi-featured SuperTrend coded from scratch. Equipped with a multi-timeframe scanner. The last signal direction and entry price showed on the chart. All kinds of MetaTrader
FREE
Head and Shoulders Pattern Indicator - Your Key to Recognizing Trend Reversals Unlock the power of pattern recognition with the "Head and Shoulders Pattern Indicator." This cutting-edge tool, designed for MetaTrader, is your trusted ally in identifying one of the most powerful chart patterns in technical analysis. Whether you're a novice or an experienced trader, this indicator simplifies the process of spotting the Head and Shoulders pattern, allowing you to make informed trading decisions. Key
FREE
Pivot Point Fibo RSJ - это индикатор, который отслеживает линии поддержки и сопротивления дня с использованием ставок Фибоначчи. Этот впечатляющий индикатор создает до 7 уровней поддержки и сопротивления через точку разворота с использованием ставок Фибоначчи. Замечательно, как цены уважают каждый уровень этой поддержки и сопротивления, где можно определить возможные точки входа / выхода из операции. Функции До 7 уровней поддержки и 7 уровней сопротивления Устанавливайте цвета уровней индивид
FREE
Triple RSI
Pablo Leonardo Spata
1 (1)
LOOK AT THE FOLLOWING STRATEGY   WITH THIS INDICATOR.   Triple RSI   is a tool that uses the classic Relative Strength Indicator, but in several timeframes to find market reversals.    1.  ️ Idea behind the indicator and its strategy: In Trading, be it Forex or any other asset, the ideal is   to keep it simple, the simpler the better . The   triple RSI   strategy is one of the simple strategies that seek market returns. In our experience, where there is more money to always be won, i
FREE
Индикатор Smart FVG для MT4 – Продвинутое определение Fair Value Gap для MetaTrader 4 Индикатор Smart FVG для MetaTrader 4 обеспечивает профессиональное обнаружение, мониторинг и оповещение о Fair Value Gap (FVG) прямо на ваших графиках. Он сочетает фильтрацию на основе ATR со структурно-ориентированной логикой, чтобы убрать шум, адаптироваться к ликвидности и оставлять только наиболее значимые дисбалансы для точных торговых решений. Ключевые преимущества Точное обнаружение FVG: находит реальн
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 t
FREE
После приобретения индикатора Tpx Dash Supply Demand вам необходимо загрузить этот индикатор, который будет связываться с индикатором Tpx Dash Supply Demand и передавать рыночные данные, предоставляя все ценовые сигналы спроса и предложения, ATR Stop, VAH и VAL, значения тренда с ADX, а также цены и местоположения точек подтверждения (POC) на рынке. Просто загрузите его, и Dash найдет индикатор для получения информации!
FREE
Pip Counter MT4
KEENBASE SOFTWARE SOLUTIONS
KT Pip Counter — это простой и информативный индикатор, который в режиме реального времени показывает важные цифры и данные. Такое критически важное отображение может серьёзно помочь трейдеру во время напряжённой торговой сессии. Особенности Показывает текущую прибыль/убыток в валюте, пунктах и процентах. Отображает актуальный спред.  Показывает оставшееся время до закрытия текущего бара. Различные цветовые схемы для сценариев прибыли и убытка. Положение текста и макет полностью настраиваются. 
FREE
Free automatic fibonacci - это индикатор, который автоматически строит коррекции Фибоначчи, основываясь на количестве баров, выбранных в параметре BarsToScan. Линии Фибоначчи автоматически обновляются в реальном времени при появлении новых максимальных и минимальных значений среди выбранных баров. В настройках индикатора можно выбрать уровни, значения которых будут отображены. Также можно выбрать цвет уровней, что позволяет трейдеру прикреплять индикатор несколько раз с разными настройками и цве
FREE
Pin Bars
Yury Emeliyanov
4.83 (6)
Основное назначение: "Pin Bars" предназначен для автоматического обнаружения пин-баров на графиках финансовых рынках. Пин-бар – это свеча с характерным телом и длинным хвостом, которая может сигнализировать о развороте тренда или коррекции. Принцип работы: Индикатор анализирует каждую свечу на графике, определяя размер тела, хвоста и носа свечи. При обнаружении пин-бара, соответствующего заранее определенным параметрам, индикатор отмечает его на графике стрелкой вверх или вниз, в зависимости от
FREE
MT Supply Demand
Issara Seeboonrueang
4 (4)
We provide indicators tailored to better meet your trading requirements.       >>  MT Magical  << MT Supply Demand : It is an indicator created to find supply and demand, which will be important support and resistance levels for the price.  Supply Zone   is a zone where the price has reached, it is often resisted. In other words, when the price reaches this zone, there will be more selling power to push the price back down. Demand Zone   is a zone where the price has reached, it is ofte
FREE
Выделяет торговые сессии на графике Демо-версия работает только на графике AUDNZD !!! Полная версия продукта доступна по адресу: (*** будет добавлено ***) Trading Sessions Indicator (Индикатор торговых сессий) отображает начала и окончания четырех торговых сессий: тихоокеанской, азиатской, европейской и американской. возможностью пользовательской настройки начала/окончания сессий; возможность отображения только выбранных сессий; работает на M1-H2 таймфреймах; В индикаторе можно настроить следую
FREE
Индикатор анализирует шкалу объёмов и разделяет её на две компоненты - объёмы продавцов и объёмы покупателей, а также вычисляет дельту и кумулятивную дельту. Индикатор не мерцает и не перерисовывает, вычисления и отрисовку производит достаточно быстро, используя при этом данные с младших (относительно текущего) периодов. Режимы работы индикатора переключаются с помощью входной переменной Mode : Buy - отображает только объёмы покупателей. Sell - отображает только объёмы продавцов. BuySell - отобр
FREE
Добро пожаловать в наш   ценовой волновой паттерн   MT4 --(ABCD Pattern)--     Паттерн ABCD является мощным и широко используемым торговым паттерном в мире технического анализа. Это гармонический ценовой паттерн, который трейдеры используют для определения потенциальных возможностей покупки и продажи на рынке. С помощью паттерна ABCD трейдеры могут предвидеть потенциальное движение цены и принимать обоснованные решения о том, когда открывать и закрывать сделки. Версия советника:   Price Wave E
FREE
С этим продуктом покупают
Super Signal – Skyblade Edition Профессиональная система трендовых сигналов без перерисовки и без задержек с исключительным процентом выигрышей | Для MT4 / MT5 Лучше всего работает на младших таймфреймах, таких как 1 минута, 5 минут и 15 минут. Основные характеристики: Super Signal – Skyblade Edition — это интеллектуальная система сигналов, специально разработанная для трендовой торговли. Она использует многоуровневую фильтрацию, чтобы выявлять только сильные направленные движения, подкреплённ
Gann Made Easy - это профессиональная, но при этом очень простая в применении Форекс система, основанная на лучших принципах торговли по методам господина У.Д. Ганна. Индикатор дает точные BUY/SELL сигналы, включающие в себя уровни Stop Loss и Take Profit. ПОЖАЛУЙСТА, СВЯЖИТЕСЬ СО МНОЙ ПОСЛЕ ПОКУПКИ, ЧТОБЫ ПОЛУЧИТЬ ТОРГОВЫЕ ИНСТРУКЦИИ И ОТЛИЧНЫЕ ДОПОЛНИТЕЛЬНЫЕ ИНДИКАТОРЫ БЕСПЛАТНО! Вероятно вы уже не раз слышали о торговли по методам Ганна. Как правило теория Ганна отпугивает от себя не только н
Neuro Poseidon - новый индикатор от Дарьи Резуевой. Он сочетает точные торговые сигналы с адаптивными уровнями TP/SL , в результате создавая максимально выгодные сделки! TO SWITCH TO   ENG   PLEASE CHOOSE IT IN THE UPPER-RIGHT CORNER OF THE WEBSITE Напишите мне после покупки и получите Neuro Poseidon Assistant в подарок для автоматизации вашей торговли! Что отличает его от других индикаторов? 1. Доказанная прибыльность на всех активах и таймфреймах 2. На графике присутствуют только подтвержденн
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
Scalper Inside PRO помогает читать внутридневной тренд и планировать сделку до входа в рынок. Индикатор использует эксклюзивные встроенные алгоритмы для оценки направления рынка и расчёта ключевых целевых уровней в момент появления сигнала, поэтому вы всегда заранее видите потенциальный вход, стоп-лосс и цели по прибыли. Индикатор также показывает подробную статистику эффективности на исторических данных, чтобы вы могли увидеть, как вели себя разные инструменты и стратегии, и выбрать то, что под
ограниченное количество копий по стартовой цене ZORYK — продвинутая сигнальная система для XAUUSD в MetaTrader 4 Вам знакомо это чувство. Вы анализируете золото, ждёте вход и наконец открываете сделку. Цена сразу начинает двигаться против вас. Вы закрываете позицию слишком рано, переносите Stop Loss или сомневаетесь несколько секунд. А затем рынок без вас достигает именно той цели, которую вы ожидали с самого начала. Проблема не всегда была в направлении. Настоящая проблема была в неопреде
Trend Catcher ind
Ramil Minniakhmetov
5 (11)
Trend Catcher   анализирует движения рыночных цен, используя комбинацию собственных и индивидуально разработанных адаптивных индикаторов анализа тренда. Он определяет истинное направление рынка, отфильтровывая краткосрочные шумы и фокусируясь на силе импульса, расширении волатильности и поведении ценовой структуры. Он также использует комбинацию сглаживающих и фильтрующих тренд индикаторов, таких как скользящие средние, RSI и фильтры волатильности. Мониторинг реальных операций, а также другие
Этот продукт был обновлен для рынка 2026 года и оптимизирован для последних сборок MT5. УВЕДОМЛЕНИЕ ОБ ИЗМЕНЕНИИ ЦЕНЫ: Atomic Analyst сейчас доступен за $99 . Цена увеличится до $199 после следующих 30 покупок . СПЕЦИАЛЬНОЕ ПРЕДЛОЖЕНИЕ: После покупки Atomic Analyst отправьте мне личное сообщение, чтобы получить Smart Universal EA БЕСПЛАТНО и превратить сигналы Atomic Analyst в автоматические сделки. Atomic Analyst — это индикатор Price Action без перерисовки, без перерисовывания истории и без
Currency Strength Wizard — очень мощный индикатор, предоставляющий вам комплексное решение для успешной торговли. Индикатор рассчитывает силу той или иной форекс-пары, используя данные всех валют на нескольких тайм фреймах. Эти данные представлены в виде простых в использовании индексов валют и линий силы валют, которые вы можете использовать, чтобы увидеть силу той или иной валюты. Все, что вам нужно, это прикрепить индикатор к графику, на котором вы хотите торговать, и индикатор покажет вам ре
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
Этот продукт был обновлен для рынка 2026 года и оптимизирован для последних сборок MT5. УВЕДОМЛЕНИЕ ОБ ИЗМЕНЕНИИ ЦЕНЫ: Smart Trend Trading System сейчас доступен за $99 . Цена увеличится до $199 после следующих 30 покупок . СПЕЦИАЛЬНОЕ ПРЕДЛОЖЕНИЕ: После покупки Smart Trend Trading System отправьте мне личное сообщение, чтобы получить Smart Universal EA БЕСПЛАТНО и превратить сигналы Smart Trend в автоматические сделки. Smart Trend Trading System — это полноценная торговая система без перерисов
MTF Supply Demand Zones
Georgios Kalomoiropoulos
4.82 (22)
Следующее поколение автоматизированных зон спроса и предложения. Новый инновационный алгоритм, работающий на любом графике. Все зоны создаются динамически в соответствии с ценовым действием рынка. ДВА ТИПА СИГНАЛОВ --> 1) ПРИ ПОПАДАНИИ ЦЕНЫ В ЗОНУ 2) ПРИ ФОРМИРОВАНИИ НОВОЙ ЗОНЫ Вы не получите еще один бесполезный индикатор. Вы получаете полную торговую стратегию с проверенными результатами.     Новые особенности:     Оповещения, когда цена достигает зоны спроса/предложения     Оповещения
M1 SNIPER — это простая в использовании торговая система. Это стрелочный индикатор, разработанный для тайм фрейма M1. Индикатор можно использовать как отдельную систему для скальпинга на тайм фрейме M1, а также как часть вашей существующей торговой системы. Хотя эта торговая система была разработана специально для торговли на M1, ее можно использовать и с другими тайм фреймами. Первоначально я разработал этот метод для торговли XAUUSD и BTCUSD. Но я считаю этот метод полезным и для торговли на д
Congestioni
Stefano Frisetti
5 (1)
This indicator is very usefull to TRADE Trading Ranges and helps identify the following TREND. Every Trader knows that any market stay 80% of the time in trading ranges and only 20% of the time in TREND; this indicator has been built to help traders trade trading ranges. Now instead of waiting for the next TREND, You can SWING TRADE on trading ranges with this simple yet very effective indicator. TRADING with CONGESTIONI INDICATOR: The CONGESTIONI Indicator identify a new trading range and ale
В НАСТОЯЩЕЕ ВРЕМЯ СКИДКА 20%! Лучшее решение для новичка или трейдера-эксперта! Этот индикатор специализирован для отображения силы валюты для любых символов, таких как экзотические пары, товары, индексы или фьючерсы. Впервые в своем роде, любой символ может быть добавлен в 9-ю строку, чтобы показать истинную силу валюты золота, серебра, нефти, DAX, US30, MXN, TRY, CNH и т.д. Это уникальный, высококачественный и доступный торговый инструмент, потому что мы включили в него ряд собственных функци
Gold Signal Swing Pro XAUUSD with Auto TP SL (MT4) — Система из 7 фильтров + Гарантия RR для свинг-трейдинга XAUUSD Без перерисовки. Без перерисовки. Без задержек. Все сигналы фиксируются после подтверждения. Бонус для покупателей: Получите AI Zone Radar (стоимость $59) + PDF-руководство бесплатно при покупке. Напишите мне сообщение на MQL5 после покупки. AI Zone Radar: https://www.mql5.com/en/market/product/175834 Версия MT5 также доступна:  https://www.mql5.com/ja/market/product/177643?source=
В настоящее время скидка 30%! Эта приборная панель - очень мощное программное обеспечение, работающее на нескольких символах и до 9 таймфреймов. Он основан на нашем основном индикаторе (Лучшие отзывы: Advanced Supply Demand ).   Приборная панель дает отличный обзор. Она показывает:  Отфильтрованные значения спроса и предложения, включая рейтинг силы зон, расстояния между пунктами в зонах и внутри зон, Выделяются вложенные зоны, Выдает 4 вида предупреждений для выбранных символов на всех (9) та
DayTrader PRO DayTrader PRO — это передовой торговый индикатор, сочетающий фильтр Лагерра (Laguerre Filter) Джона Элерса с мощным движком автоматической оптимизации. Вместо использования фиксированных параметров индикатор автоматически подбирает оптимальные настройки на основе недавних рыночных условий, что позволяет адаптироваться к изменяющейся волатильности без необходимости ручной корректировки. Индикатор генерирует четкие сигналы на ПОКУПКУ и ПРОДАЖУ, а также адаптивные уровни Stop Loss и T
Gold Pro Scalper
Aleksandr Makarov
4.8 (5)
Gold Pro Scalper Точные точки входа в сделки  для    валют, крипты, металлов, акций, индексов! Индикатор 100% не перерисовывается!!! Если сигнал появился, он больше Не исчезает! В отличие от индикаторов с перерисовкой,которые ведут к потере депозита,потому что могут показать сигнал, а потом убрать его. Торговать с данным индикатором очень легко. Дожидаемся сигнала от индикатора и входим в сделку, согласно стрелке  (Синяя стрелка - Buy, Красная  - Sell). Рекомендую использовать с Фильтром трен
Официальный доступ к экосистеме BlueDigitsFx Получайте обновления инфраструктуры, рабочие материалы, новые продукты и доступ к официальной экосистеме BlueDigitsFx. Экосистема Telegram Веб-сайт Версия MT5 BlueDigitsFx Easy 123 System — Мощная система определения разворотов и пробоев для MT4 Универсальная не перерисовывающаяся система для поиска разворотов и пробоев рынка — создана для трейдеров, которые ценят структуру, ясность и торговлю на основе подтверждений. BlueDigitsFx Easy 123 System —
Day Trader Master - это полноценная торговая система для трейдеров, кто ведет внутридневную торговлю. Система состоит из двух индикаторов. Один индикатор представляет собой стрелки-сигналы на покупку и продажу. Именно стрелочный индикатор вы приобретаете. Второй индикатор я предоставлю вам совершенно бесплатно. Второй индикатор является индикатором тренда, специально разработанного для использования совместно с этими стрелками. ИНДИКАТОРЫ НЕ ПЕРЕРИСОВЫВАЮТСЯ И НЕ ЗАПАЗДЫВАЮТ! Использовать данную
Money Flow Profile MT5 HERE   Here   our more valuable tools SMC Trend Trading   ,  Easy SMC Trading  ,  Institutional SMC Architect Volume Analysis Tools  ,  Volume flow Profile  ,  Market volume profile  , FVG with Volume  , Liquidity Heatmap Profile  ,  Volume Spread Analysis This Master Edition is engineered for clarity and speed, featuring a unique Auto-Theme Sync system that instantly beautifies your chart layout upon loading. Key Features: True Money Flow Calculation: Goes beyond stand
Gold Trend M1 - Optimized Scalping Tool for Gold (XAUUSD) Gold Trend M1 is a high-frequency trading indicator for the MetaTrader 4 platform, specifically optimized for the M1 timeframe on the Gold market. It combines a powerful SuperTrend trend filter with buy/sell signals derived from Heiken Ashi calculation logic, helping traders identify precise and disciplined entry points for optimal trading performance. Key Features Optimized for M1 Scalping: Specifically developed for high-speed scalping
TrendMaestro
Stefano Frisetti
4 (4)
Attention: beware of SCAMS, TRENDMAESTRO is only ditributed throught MQL5.com market place. note: this indicator is for METATRADER4, if you want the version for METATRADER5 this is the link:  https://www.mql5.com/it/market/product/108106 TRENDMAESTRO ver 2.5 TRENDMAESTRO recognizes a new TREND from the start, he never makes mistakes. The certainty of identifying a new TREND is priceless. DESCRIPTION TRENDMAESTRO identifies a new TREND in the bud, this indicator examines the volatility, volumes a
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 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 indicator automates the highly effective  Candle Range Theory (CRT) , a core pillar of  ICT Concepts (Inner Circle Trader
TrendDecoder Premium
Christophe Pa Trouillas
5 (8)
Определите диапазоны и следующие вероятные движения   |  Получите самые ранние сигналы и силу трендов   |  Получите четкие выходы перед разворотом   |  Определите уровни Фибо, которые будет тестировать цена Индикатор без перерисовки и задержек - идеально подходит для ручной и автоматической торговли - подходит для всех активов и всех временных единиц После покупки, пожалуйста, свяжитесь со мной, чтобы получить ваш БЕСПЛАТНЫЙ TrendDECODER_Scanner. Версия   МТ5 :   кликните сюда Получите наш полны
M1 Arrow
Oleg Rodin
4.81 (21)
Индикатор M1 Arrow основан на естественных принципах торговли на рынке, включая анализ волатильности и объема. Индикатор можно использовать с любым таймфреймом и валютной парой. Один простой в использовании параметр индикатора позволит вам адаптировать сигналы к любой валютной паре и таймфрейму, на котором вы хотите торговать. Помимо основного алгоритма, основанного на сигналах на покупку и продажу, индикатор также имеет множество встроенных дополнительных стратегий, которые вы можете выбрать в
Этот продукт был обновлен для рынка 2026 года и оптимизирован для последних сборок MT5. УВЕДОМЛЕНИЕ ОБ ИЗМЕНЕНИИ ЦЕНЫ: Smart Price Action Concepts сейчас доступен за $200 . Цена увеличится до $299 после следующих 30 покупок . СПЕЦИАЛЬНОЕ ПРЕДЛОЖЕНИЕ: После покупки отправьте мне личное сообщение, чтобы получить БЕСПЛАТНЫЙ бонус + подарок . Прежде всего, стоит подчеркнуть, что этот торговый инструмент является индикатором без перерисовки, без перерисовывания истории и без запаздывания, что делает
PZ Day Trading
PZ TRADING SLU
3.67 (3)
Этот индикатор обнаруживает разворот цены зигзагообразно, используя только анализ ценового действия и канал Дончиана. Он был специально разработан для краткосрочной торговли, без перекраски или перекраски вообще. Это фантастический инструмент для проницательных трейдеров, стремящихся увеличить сроки своих операций. [ Руководство по установке | Руководство по обновлению | Устранение неполадок | FAQ | Все продукты ] Удивительно легко торговать Это обеспечивает ценность на каждом таймфрейме Реал
PRO Renko System - это высокоточная система торговли на графиках RENKO. Система универсальна. Данная торговая система может применяться к различным торговым инструментам. Система эффективно нейтрализует так называемый рыночный шум, открывая доступ к точным разворотным сигналам. Индикатор прост в использовании и имеет лишь один параметр, отвечающий за генерацию сигналов. Вы легко можете адаптировать алгоритм к интересующему вас торговому инструменту и размеру ренко бара. Всем покупателям с удовол
Другие продукты этого автора
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
UT Alart Bot
Menaka Sachin Thorat
4.75 (4)
To get access to MT4 version please click  https://www.mql5.com/en/market/product/130055&nbsp ; - 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 versio
FREE
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
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
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
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
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:
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
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
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
Фильтр:
sid07198
24
sid07198 2026.05.11 00:10 
 

This indicator is helping me make the right decisions. Thank you so much.

Ответ на отзыв