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;
}

Comentários 5
Benjamin Afedzie
3964
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
3200
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!!!

Produtos recomendados
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
The indicator highlights the points that a professional trader sees in ordinary indicators. VisualVol visually displays different volatility indicators on a single scale and a common align. Highlights the excess of volume indicators in color. At the same time, Tick and Real Volume, Actual range, ATR, candle size and return (open-close difference) can be displayed. Thanks to VisualVol, you will see the market periods and the right time for different trading operations. This version is intended f
FREE
Volume Profile Density V2.40 Mostra a distribuição do volume por nível de preço, revelando áreas de interesse institucional. Diferente do volume clássico (por tempo), mostra onde o volume realmente se concentrou. Conceitos principais: Barras horizontais = volume negociado em cada preço Barra mais longa → maior volume Zonas vermelhas = suportes e resistências fortes Principais usos: Identificar suportes e resistências reais Determinar o POC (Ponto de Controle) Definir a Área de Valor (70 % do vol
FREE
Haven Volume Profile
Maksim Tarutin
4.55 (11)
Haven Volume Profile é um indicador multifuncional para análise do perfil de volume que ajuda a identificar níveis chave de preços com base na distribuição do volume de negociação. Foi projetado para traders profissionais que desejam entender melhor o mercado e identificar pontos importantes de entrada e saída nas operações. Outros produtos ->  AQUI Principais características: Cálculo do Point of Control (POC) - o nível de maior atividade comercial, que ajuda a identificar os níveis mais líquido
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
(Special New Year promotion - free price!) The indicator displays the actual 'Scale in points per bar' (identical to the manual setting in the Terminal, see screenshot) in the upper right corner of the chart. The displayed value changes INSTANTLY whenever the chart scale is changed! (This is very convenient when planning screenshots). In Settings: Change language (Russian/English), font size of the displayed text, text label offset coefficient from the graph corner, equally in X and Y directi
FREE
Aggression Volume
Flavio Javier Jarabeck
4.29 (17)
O Indicador de Volume de Agressão é o tipo de indicador que raramente é encontrado na comunidade MQL5 porque não é baseado nos dados de Volume padrão fornecidos pela plataforma Metatrader 5. Ele requer a análise de todos os Ticks de tráfego solicitados na plataforma... Dito isso, o indicador de Volume de Agressão solicita todos os Dados de Tick do seu Broker e os processa para construir uma versão muito especial de um Indicador de Volume, onde as agressões de Compradores e Vendedores são plotada
FREE
Simple Anchored VWAP MT5
Suvashish Halder
4.75 (4)
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
COMPRE um dos nossos ROBÔS e RECEBA  a VERSÃO PRO deste produto DE GRAÇA  Não deixe de testar nossa versão   Profissional   com recursos e alertas configuráveis:  Agression Wave PRO Este indicador soma a diferença entre a agressão de venda e agressão de compra ocorrida em cada Candle, plotando graficamente as ondas de acumulação dos volumes de agressão. Através destas ondas é calculada uma média exponencial que indica o sentido do fluxo de negócios Nota:   Ele só f
FREE
Mirror Chart MT5
Andrej Hermann
5 (1)
The Mirror Chart MT5 is a overlay indicator specifically designed to project a second financial instrument directly onto the main chart window. This tool is invaluable for traders who rely on correlation analysis, as it visualizes the price movements of two different instruments in real time. Unlike traditional overlays, this indicator utilizes intelligent, dynamic centering and scaling logic. It continuously analyzes the visible price range in the current window for both symbols and calculates
FREE
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 Automatically detects major swing points not internal noise Generates buy/sell signals at key Fibonacci levels Displays professional GUI panel with real-time analysis Marks major swings with visual indicators Trading Strategy BUY at 38.2%-61.8% Fib
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)
Se você gosta deste projeto, deixe uma revisão de 5 estrelas. Este indicador desenha os preços abertos, altos, baixos e finais para o especificado período e pode ser ajustado para um fuso horário específico. Estes são níveis importantes olhados por muitos institucional e profissional comerciantes e pode ser útil para você saber os lugares onde eles podem ser mais activa. Os períodos disponíveis são: Dia anterior. Semana anterior. Mês anterior. Quarto anterior. Ano anterior. Ou: Dia atual. Seman
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
Donchian Breakout And Rsi
Mattia Impicciatore
4.5 (2)
Descrição geral Este indicador é uma versão aprimorada do Canal Donchian clássico, enriquecida com funções práticas para o trading real. Além das três linhas padrão (máxima, mínima e linha do meio), o sistema detecta breakouts e os mostra visualmente com setas no gráfico, exibindo apenas a linha oposta à direção da tendência atual para uma leitura mais limpa. O indicador inclui: Sinais visuais : setas coloridas nos breakouts Notificações automáticas : alerta pop-up, push e e-mail Filtro RSI : pa
FREE
MA Color Candles Indicator MA Color Candles is an indicator for visually displaying market trends by coloring chart candles. It does not add objects or distort price data, instead coloring real candles based on the state of two moving averages. This enables quick trend assessment and use as a filter in trading strategies. How It Works Bullish trend: Fast MA above slow MA, slow MA rising (green candles). Bearish trend: Fast MA below slow MA, slow MA falling (red candles). Neutral state: Candles
FREE
Simple QM Pattern MT5
Suvashish Halder
3.33 (3)
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
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 1. What does this Terminal actually do? The   Guru Terminal   is designed to solve the "Retail Blindness" problem. Most traders only look at candles; this terminal gives you   Institutional Context . It helps you: Track Smart Money:   See what the l
FREE
Expansoes M
Marcus Vinicius Da Silva Miranda
As Expansões M são variações da Proporção Áurea (Sequência de Fibonacci). É a primeira técnica de projeção, no mercado mundial, desenvolvida para ancoragem em Candle. Vantagens: Fácil Plotagem, pode ser ancorada em apenas um Candle; Alto grau de precisão como suportes / resistências; Excelente relação de Risco x Retorno; Funciona em qualquer tempo gráfico; Funciona em qualquer ativo.   As regiões das Expansões M são classificadas em: M0: Ponto 0 (candle inicial) LC: Linha de suporte inicial
FREE
Order Book, known also as Market Book, market depth, Level 2, - is a dynamically updated table with current volumes of orders to buy and to sell specific financial instument at price levels near Bid and Ask. MetaTrader 5 provides the means for receiving market book from your broker, but in real time only, without access to its history. This expert adviser OrderBook History Playback allows you to playback the market book events on the history using files, created by OrderBook Recorder . The exper
FREE
BoxInside MT5
Evgeny Shevtsov
5 (4)
This indicator calculates the volume profile and places labels that correspond to the VAH, VAL and POC levels, for each candle individually. Indicator operation features The indicator works on the timeframes from M3 to MN, but it uses the history data of smaller periods: M1 - for periods from M3 to H1, M5 - for periods from H2 to H12, M30 - for the D1 period, H4 - for the W1 period, D1 - for the MN period. The color and location of the VAL, VAH and POC labels on the current candle are considere
FREE
================================================================ MATRIX CONDITION MONITOR Live Trade Condition Panel for MetaTrader 5 Fully Automatic -- Works with ALL Matrix EAs ================================================================ NEVER MISS A TRADE SETUP AGAIN Matrix Condition Monitor is a free utility that attaches to any chart and automatically checks all 10 trade conditions in real time -- showing you exactly why a trade will or will not open, and alerting you the moment ever
FREE
VWAP_PC_MQL5 — a simple home-built VWAP indicator showing real-time volume-weighted price levels directly on your MT5 chart. TF: Works on all timeframes. Pair: Compatible with all symbols — Forex, indices, commodities, and stocks. Settings: Applied Price – price type used for VWAP calculation (Close, Typical, Weighted, etc.) Line Color / Width / Style – customize VWAP line appearance Session Reset – optional reset per day or continuous mode How it works (VWAP principle): VWAP (Volume Weighted
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
Gold Max pro
Israr Hussain Shah
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 Automatic Professional Theme:   Instantly applies a high-contrast "Color on White" theme with DeepSkyBlue bull candles and Black bear candles for maximum clarity. Interactive Timeframe Panel:   21 vertical buttons on the left side allow for one-clic
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
Os compradores deste produto também adquirem
Neuro Poseidon MT5
Daria Rezueva
4.95 (20)
Neuro Poseidon is a new indicator by Daria Rezueva. It combines precise trading signals with adaptive TP/SL levels - creating best possible trades as a result! Message me and get  Neuro Poseidon Assistant  as a gift to automize your trading process! What makes it stand out? 1. Proven profitability on all assets and timeframes 2. Only confirmed BUY and SELL signals present on the chart 3. Adaptive TP & SL levels generated by the software for each trade 4. Easy to understand - suitable for al
PrimeScalping
Temirlan Kdyrkhan
PrimeScalping 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 e
SuperScalp Pro
Van Minh Nguyen
4.65 (26)
SuperScalp Pro – Sistema avançado de scalping com múltiplos filtros SuperScalp Pro é um indicador avançado de scalping que combina o clássico Supertrend com múltiplos filtros inteligentes de confirmação para ajudar a identificar oportunidades de trading. Funciona de forma eficiente em vários timeframes de M1 até H4, com desempenho otimizado para XAUUSD, BTCUSD e principais pares Forex. O indicador fornece sinais claros de Buy e Sell, juntamente com níveis calculados automaticamente de entrada, S
Gold Entry Sniper
Tahir Mehmood
5 (12)
Gold Entry Sniper – Painel ATR Multi-Tempo Profissional para Scalping e Swing Trading em Ouro Gold Entry Sniper é um indicador avançado para MetaTrader 5 projetado para fornecer sinais de compra/venda precisos para XAUUSD e outros ativos, com base na lógica de Trailing Stop ATR e análise multi-tempo . Ideal tanto para scalpers quanto para swing traders. Principais Recursos e Vantagens Análise Multi-Tempo – Veja a tendência de M1, M5 e M15 em um único painel. Trailing Stop Baseado em ATR – Níveis
Divergence Bomber
Ihor Otkydach
4.9 (90)
Cada comprador deste indicador recebe adicionalmente, e de forma gratuita: A ferramenta exclusiva "Bomber Utility", que acompanha automaticamente cada operação, define os níveis de Stop Loss e Take Profit e fecha operações de acordo com as regras da estratégia; Arquivos de configuração (set files) para ajustar o indicador em diferentes ativos; Set files para configurar o Bomber Utility nos modos: "Risco Mínimo", "Risco Balanceado" e "Estratégia de Espera"; Um vídeo tutorial passo a passo que aju
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
Vamos ser honestos primeiro. Nenhum indicador sozinho vai te tornar lucrativo. Se alguém te disser o contrário, está te vendendo um sonho. Qualquer indicador que mostre setas perfeitas de compra/venda pode ser feito para parecer impecável — basta dar zoom na parte certa da história e tirar um print das operações vencedoras. Nós não fazemos isso.  SMC Intraday Formula é uma ferramenta. Ela lê a estrutura do mercado para você, identifica as zonas de maior probabilidade de preço e mostra exatament
ScalpPoint
Temirlan Kdyrkhan
ScalpPoint 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 emai
Este produto foi atualizado para o mercado de 2026 e otimizado para as versões mais recentes do MT5. AVISO DE ATUALIZAÇÃO DE PREÇO: Smart Trend Trading System está atualmente disponível por $99 . O preço aumentará para $199 após as próximas 30 compras . OFERTA ESPECIAL: Após comprar o Smart Trend Trading System, envie-me uma mensagem privada para receber o Smart Universal EA GRÁTIS e transformar seus sinais do Smart Trend em operações automatizadas. Smart Trend Trading System é um sistema de tr
SignalTech MT5 is an unique 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. 2026-05 4107 Pips (Until 05-29 NY Closed) 2026-04 2243 Pips 2026-03 2165 Pips 2026-02 2937 Pips 2026-01 2624 Pips 2025-12 1174 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 flag
MasterTrend
Temirlan Kdyrkhan
MasterTrend Indicator for MT5 A powerful trend-following and signal-evaluation tool MasterTrend   is a custom MT5 indicator that combines Moving Averages and ATR-based risk/reward logic to generate clear buy/sell signals. It visualizes dynamic SL/TP levels, evaluates past trade outcomes, and displays win/loss statistics in a clean on-chart panel. Key features include: Buy/Sell signals based on MA crossovers ATR-based SL/TP1/TP2/TP3 levels with visual lines and labels Signal outcome tracking wit
Quantum TrendPulse
Bogdan Ion Puscasu
5 (25)
Apresentando   Quantum TrendPulse   , a ferramenta de negociação definitiva que combina o poder do   SuperTrend   ,   RSI   e   Stochastic   em um indicador abrangente para maximizar seu potencial de negociação. Projetado para traders que buscam precisão e eficiência, este indicador ajuda você a identificar tendências de mercado, mudanças de momentum e pontos de entrada e saída ideais com confiança. Principais características: Integração SuperTrend:   siga facilmente a tendência predominante do
Power Candles MT5
Daniel Stein
5 (8)
Power Candles V3 - Indicador de força com auto-otimização O Power Candles V3 transforma a força da moeda e do instrumento num plano de negociação prático em todos os gráficos aos quais está associado. Em vez de se limitar a colorir as velas, executa uma otimização automática em tempo real em segundo plano e apresenta-lhe os melhores valores de Stop Loss, Take Profit e limiar de sinal para o símbolo em questão. Basta um clique para o adotar na negociação em tempo real — as linhas de entrada, Stop
Trend Catcher ind mt5
Ramil Minniakhmetov
5 (4)
INDICADOR TREND CATCHER O Indicador Trend Catcher analisa os movimentos de preços do mercado, utilizando uma combinação de indicadores de análise de tendências adaptativos, proprietários e personalizados pelo autor. Identifica a verdadeira direção do mercado, filtrando o ruído de curto prazo e focando a força do momentum subjacente, a expansão da volatilidade e o comportamento da estrutura de preços. Utiliza também uma combinação de indicadores personalizados de suavização e filtragem de tendê
Apresentando       Quantum Breakout PRO   , o inovador Indicador MQL5 que está transformando a maneira como você negocia Breakout Zones! Desenvolvido por uma equipe de traders experientes com experiência comercial de mais de 13 anos,       Quantum Breakout PRO       foi projetado para impulsionar sua jornada comercial a novos patamares com sua estratégia de zona de fuga inovadora e dinâmica. O Quantum Breakout Indicator lhe dará setas de sinal em zonas de breakout com 5 zonas-alvo de lucro e su
Gann Made Easy   é um sistema de negociação Forex profissional e fácil de usar, baseado nos melhores princípios de negociação usando a teoria do sr. W. D. Gann. O indicador fornece sinais precisos de COMPRA e VENDA, incluindo níveis de Stop Loss e Take Profit. Você pode negociar mesmo em movimento usando notificações PUSH. Entre em contato comigo após a compra para receber instruções de negociação e ótimos indicadores extras gratuitamente! Provavelmente você já ouviu muitas vezes sobre os método
Azimuth Pro
Ottaviano De Cicco
5 (7)
Azimuth Pro V2: Estrutura Fractal Sintética e Entradas Confirmadas para MT5 Visão geral Azimuth Pro é um indicador de estrutura swing multinível da Merkava Labs . Quatro camadas de swing aninhadas, VWAP ancorado em swings, detecção de padrões ABC, filtragem estrutural de três timeframes e entradas confirmadas em barra fechada — um gráfico, um fluxo de trabalho dos micro-swings aos macro-ciclos. Este não é um produto de sinais cegos. É um fluxo de trabalho baseado em estrutura para traders que v
GoldenX Entry MT5
Kareem Abbas
5 (9)
GoldenX Entry é um indicador para MT5 com um algoritmo adaptativo Smart Entry Trend, um sistema de pontuação de sinais, um detector de regime de mercado e um filtro de volatilidade. Cada sinal inclui um nível de entrada calculado, três níveis de Take-Profit (TP1, TP2, TP3) e um nível de Stop-Loss. Ele é construído sobre múltiplas camadas analíticas projetadas para se adaptar a diferentes condições de mercado, combinando um sistema analítico multicamadas com um otimizador integrado e um sistema d
FX Trend MT5 NG
Daniel Stein
5 (6)
FX Trend NG: A Nova Geração de Inteligência de Tendência Multi-Mercado Visão Geral FX Trend NG é uma ferramenta profissional de análise de tendências e monitoramento de mercado em múltiplos períodos de tempo. Permite compreender a estrutura completa do mercado em segundos. Em vez de alternar entre vários gráficos, você visualiza instantaneamente quais ativos estão em tendência, onde o momentum está enfraquecendo e onde existe alinhamento forte entre diferentes timeframes. Oferta de Lançamento
M1 Quantum MT5
Hamed Dehgani
5 (1)
M1 Quantum é um sistema profissional de negociação para M1 que fornece sinais de trading rápidos e precisos, com Stop Loss, Take Profit e gerenciamento inteligente de capital integrados. M1 Quantum inclui um sistema profissional de gerenciamento de capital projetado para aumentar a conta rapidamente, com foco em vitórias consecutivas . Principais recursos do Indicador M1 Quantum Projetado para o time frame M1 e todos os principais pares de moedas Todas as operações possuem Stop Loss e Take Profi
Reversion King Indicator
Eugen-alexandru Zibileanu
5 (4)
Um novo Rei chegou à cidade - Indicador + Gestão de Ordens (TP1 + TP2 + TP3) + Enviador opcional de sinais para Telegram INCLUÍDO (GRÁTIS) (SISTEMA COMPLETO DE TRADING e SINAIS) Nosso melhor EA para Ouro: Gold Slayer Este indicador inclui uma estratégia avançada, um sistema de trading com gestão de ordens personalizável e um sistema de reversão à média que combina extensões de envelopes, apoiado por múltiplos filtros inteligentes de confirmação, como o RSI, para capturar entradas de reversão de
Atomic Analyst MT5
Issam Kassas
4.26 (35)
Este produto foi atualizado para o mercado de 2026 e otimizado para as versões mais recentes do MT5. AVISO DE ATUALIZAÇÃO DE PREÇO: Atomic Analyst está atualmente disponível por $99 . O preço aumentará para $199 após as próximas 30 compras . OFERTA ESPECIAL: Após comprar o Atomic Analyst, envie-me uma mensagem privada para receber o Smart Universal EA GRÁTIS e transformar seus sinais do Atomic Analyst em operações automatizadas. Atomic Analyst é um indicador de trading de Price Action sem repa
Meridian Pro
Ottaviano De Cicco
5 (2)
Meridian Pro 2.00: Matriz profissional de tendência multi-timeframe para MT5 Meridian Pro 2.00 é uma matriz de tendência adaptativa profissional para MetaTrader 5. Combina o motor original de tendência Meridian, um ribbon limpo no gráfico, setas de sinal em barra fechada, um dashboard de 8 timeframes, Fuel momentum, consenso ponderado, processamento HTF sintético e linhas de contexto de timeframe superior diretamente no gráfico. O objetivo é simples: ler tendência atual, estrutura multi-timefram
SmartScalping
Temirlan Kdyrkhan
SmartScalping 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 e
ARIPoint
Temirlan Kdyrkhan
1 (1)
ARIPoint 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 Cu
Este produto foi atualizado para o mercado de 2026 e otimizado para as versões mais recentes do MT5. AVISO DE ATUALIZAÇÃO DE PREÇO: Smart Price Action Concepts está atualmente disponível por $200 . O preço aumentará para $299 após as próximas 30 compras . OFERTA ESPECIAL: Após comprar, envie-me uma mensagem privada para receber Bônus grátis + Presente . Antes de tudo, vale destacar que esta ferramenta de trading é um indicador sem repaint, sem redesenho e sem atraso, o que a torna ideal para tr
TrendProMaster
Temirlan Kdyrkhan
MasterTrend Indicator for MT5 A powerful trend-following and signal-evaluation tool MasterTrend   is a custom MT5 indicator that combines Moving Averages and ATR-based risk/reward logic to generate clear buy/sell signals. It visualizes dynamic SL/TP levels, evaluates past trade outcomes, and displays win/loss statistics in a clean on-chart panel. Key features include: Buy/Sell signals based on MA crossovers ATR-based SL/TP1/TP2/TP3 levels with visual lines and labels Signal outcome tracking wit
Versão Swing M30/H1/H4 disponível Quer pegar os grandes movimentos? Gold Signal Swing Pro (M30/H1/H4). Alvo: $20-$80+ por operação. https://www.mql5.com/en/market/product/177643 KURAMA GOLD SIGNAL PRO (MT5) — Sistema Completo de Trading XAUUSD com 7 Camadas de Filtros Sem repintura. Sem redesenho. Sem atraso. Cada sinal permanece fixo após confirmado. Bônus para compradores: Quem adquirir a licença de compra completa recebe o AI Zone Radar (valor $59
FX Power MT5 NG
Daniel Stein
5 (32)
FX Power: Analise a Força das Moedas para Decisões de Negociação Mais Inteligentes Visão Geral FX Power é a sua ferramenta essencial para compreender a força real das principais moedas e do ouro em quaisquer condições de mercado. Identificando moedas fortes para comprar e fracas para vender, FX Power simplifica as decisões de negociação e revela oportunidades de alta probabilidade. Quer você prefira seguir tendências ou antecipar reversões usando valores extremos de Delta, esta ferramenta adap
RelicusRoad Pro MT5
Relicus LLC
4.96 (24)
RelicusRoad Pro: Sistema Operacional Quantitativo de Mercado 70% DE DESCONTO ACESSO VITALÍCIO (TEMPO LIMITADO) - JUNTE-SE A 2.000+ TRADERS Por que a maioria dos traders falha mesmo com indicadores "perfeitos"? Porque eles operam Conceitos Únicos no vácuo. Um sinal sem contexto é uma aposta. Você precisa de CONFLUÊNCIA . RelicusRoad Pro não é um simples indicador de seta. É um Ecossistema Quantitativo de Mercado completo. Ele mapeia a "Estrada do Valor Justo", distinguindo ruído de rupturas estru
Mais do autor
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
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 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
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 Finder
Menaka Sachin Thorat
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
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:
Supertrend With CCI
Menaka Sachin Thorat
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
Candlestick pattern EA
Menaka Sachin Thorat
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
Menaka Sachin Thorat
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 AFX
Menaka Sachin Thorat
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
Filtro:
mura1975
124
mura1975 2026.02.24 05:20 
 

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

Benjamin Afedzie
3964
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
3200
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 
 

O usuário não deixou nenhum comentário para sua avaliação

Menaka Sachin Thorat
9586
Resposta do desenvolvedor 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!"
Responder ao comentário