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

Avis 5
Benjamin Afedzie
3943
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
3189
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!!!

Produits recommandés
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 Affiche la répartition du volume par niveau de prix, mettant en évidence les zones d’intérêt institutionnel. Contrairement au volume classique, il montre où le volume s’est réellement concentré. Principe : Barres horizontales = volume échangé à chaque prix Barre plus longue → volume plus élevé Zones rouges = supports et résistances majeurs Utilisation principale : Identifier les zones de support/résistance réelles Déterminer le POC (Point of Control) Définir la Value
FREE
Haven Volume Profile
Maksim Tarutin
4.55 (11)
Haven Volume Profile est un indicateur multifonctionnel pour l'analyse du profil de volume qui aide à identifier les niveaux de prix clés basés sur la répartition du volume de négociation. Il a été conçu pour les traders professionnels qui souhaitent mieux comprendre le marché et identifier les points d'entrée et de sortie importants pour leurs transactions. Autres produits ->  ICI Fonctionnalités principales : Calcul du Point of Control (POC) - le niveau d'activité commerciale maximal, ce qui a
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 + Panel Rolling VWAP + Panel est un indicateur professionnel pour MetaTrader 5 conçu pour analyser la structure du marché à l’aide d’une VWAP roulante (Volume Weighted Average Price) combinée à des bandes de volatilité basées sur l’ATR , un panneau d’analyse du marché en temps réel , ainsi qu’un timer intégré indiquant le temps restant sur la bougie . Cet indicateur fournit une vision claire et structurée du comportement du prix par rapport à sa valeur moyenne pondérée, tout en off
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)
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 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
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
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
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)
Si vous aimez ce projet, laissez un examen 5 étoiles. Cet indicateur tire les prix ouverts, élevés, bas et de fermeture pour les prix spécifiés période et il peut être ajusté pour un fuseau horaire spécifique. Il s ' agit là d ' un niveau important qui s ' intéresse à de nombreux domaines institutionnels et professionnels. traders et peut être utile pour vous de connaître les endroits où ils pourraient être plus active. Les périodes disponibles sont les suivantes : Jour précédent. Semaine pré
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)
Description générale Cet indicateur est une version améliorée du Canal Donchian classique, enrichie de fonctionnalités pratiques pour le trading réel. En plus des trois lignes standard (supérieure, inférieure et ligne médiane), le système détecte les cassures et les affiche visuellement avec des flèches sur le graphique, en montrant uniquement la ligne opposée à la direction actuelle de la tendance pour une lecture plus claire. L’indicateur comprend : Signaux visuels : flèches colorées lors des
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
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, 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
VWAP_PC_MQL5 — petit indicateur “fait maison” type VWAP affichant le prix moyen pondéré par le volume en temps réel sur MT5. TF : Fonctionne sur tous les timeframes. Paire : Compatible avec tous les marchés : Forex, indices, matières premières, actions. Paramètres : AppliedPrice – type de prix utilisé pour le calcul (Clôture, Typique, Pondéré, etc.) LineColor / Width / Style – personnalisation de la ligne VWAP SessionReset – remise à zéro quotidienne ou mode continu Fonctionnement (principe du
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 (Free Version) Flat Range Detector and Breakout Panel for MT5 — GBPUSD Only FlatBreakout MT5   is the free version of the professional FlatBreakoutPro MT5 indicator, specially designed for flat (range) detection and breakout signals on the   GBPUSD   pair only. Perfect for traders who want to experience the unique fractal logic of FlatBreakout MT5 and test breakout signals on a live market without limitations. Who Is This Product For? For traders who prefer to trade breakout of
FREE
Forex Chandilier
Ridhdi Patel
5 (2)
Voici la traduction professionnelle en français Forensic ATR Chandelier Exit Pro – Description pour MQL5 Market Prenez le contrôle total de vos sorties avec une précision basée sur la volatilité. Forensic ATR Chandelier Exit Pro est un indicateur haute performance de suivi de tendance et de gestion du stop-loss pour MetaTrader 5. Il est conçu pour les traders exigeant une analyse de volatilité de niveau professionnel, reproduisant fidèlement la logique des meilleures implémentations TradingVi
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
Les acheteurs de ce produit ont également acheté
Neuro Poseidon MT5
Daria Rezueva
5 (13)
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
SuperScalp Pro
Van Minh Nguyen
4.65 (26)
SuperScalp Pro – Système avancé d’indicateur de scalping multi-filtres SuperScalp Pro est un indicateur de scalping avancé qui combine le Supertrend classique avec plusieurs filtres de confirmation intelligents afin d’identifier les opportunités de trading. Il fonctionne efficacement sur plusieurs unités de temps, de M1 à H4, avec des performances optimisées sur XAUUSD, BTCUSD et les principales paires Forex. L’indicateur fournit des signaux d’achat et de vente clairs, ainsi que des niveaux d’en
Gold Entry Sniper
Tahir Mehmood
5 (11)
Gold Entry Sniper – Tableau de Bord ATR Multi-Unités de Temps pour Scalping et Swing Trading sur l'Or Gold Entry Sniper est un indicateur avancé pour MetaTrader 5 qui fournit des signaux d'achat/vente précis sur XAUUSD et autres actifs, basé sur la logique de Trailing Stop ATR et l' analyse multi-unités de temps . Caractéristiques et Avantages Clés Analyse Multi-Unités de Temps – Affiche les tendances en M1, M5, M15 sur un seul tableau. Trailing Stop Basé sur l'ATR – Ajuste automatiquement selon
Commençons par être honnêtes. Aucun indicateur ne vous rendra rentable à lui seul. Si quelqu’un vous dit le contraire, il vous vend un rêve. Tout indicateur qui affiche des flèches parfaites d’achat/vente peut être rendu impeccable — il suffit de zoomer sur la bonne partie de l’historique et de capturer uniquement les trades gagnants. Nous ne faisons pas cela.  SMC Intraday Formula est un outil. Il lit la structure du marché pour vous, identifie les zones de prix à la probabilité la plus élevée
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
Divergence Bomber
Ihor Otkydach
4.9 (89)
Chaque acheteur de cet indicateur reçoit également gratuitement : L’outil exclusif « Bomber Utility », qui accompagne automatiquement chaque opération de trading, fixe les niveaux de Stop Loss et de Take Profit, et clôture les positions selon les règles de la stratégie Des fichiers de configuration (set files) pour adapter l’indicateur à différents actifs Des set files pour configurer le Bomber Utility selon différents modes : « Risque Minimum », « Risque Équilibré » et « Stratégie d’Attente » U
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
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
Power Candles MT5
Daniel Stein
5 (8)
Power Candles V3 - Indicateur de force à optimisation automatique Power Candles V3 transforme la force des devises et des instruments en un plan de trading exploitable sur chaque graphique auquel il est associé. Au lieu de se contenter de colorer les bougies, il effectue une optimisation automatique en temps réel en arrière-plan et vous fournit les meilleurs niveaux de Stop Loss, Take Profit et seuils de signal pour le symbole que vous avez sous les yeux. Un simple clic suffit pour l'adopter en
Présentation       Quantum Breakout PRO   , l'indicateur révolutionnaire MQL5 qui transforme la façon dont vous négociez les zones d'évasion ! Développé par une équipe de traders expérimentés avec une expérience commerciale de plus de 13 ans,       Évasion quantique PRO       est conçu pour propulser votre parcours commercial vers de nouveaux sommets grâce à sa stratégie de zone de discussion innovante et dynamique. Quantum Breakout Indicator vous donnera des flèches de signalisation sur les z
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
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
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
Azimuth Pro
Ottaviano De Cicco
5 (7)
Azimuth Pro V2: Synthetic Fractal Structure and Confirmed Entries for MT5 Overview Azimuth Pro is a multi-level swing structure indicator by Merkava Labs . Four nested swing layers, swing-anchored VWAP, ABC pattern detection, three-timeframe structural filtering, and closed-bar confirmed entries — one chart, one workflow from micro-swings to macro-cycles. This is not a blind signal product. It is a structure-first workflow for traders who care about location, context, and timing. V2 Launch Offe
Quantum TrendPulse
Bogdan Ion Puscasu
5 (25)
Présentation de   Quantum TrendPulse   , l'outil de trading ultime qui combine la puissance de   SuperTrend   ,   RSI   et   Stochastic   dans un seul indicateur complet pour maximiser votre potentiel de trading. Conçu pour les traders qui recherchent précision et efficacité, cet indicateur vous aide à identifier les tendances du marché, les changements de dynamique et les points d'entrée et de sortie optimaux en toute confiance. Caractéristiques principales : Intégration SuperTrend :   suivez f
Ce produit a été mis à jour pour le marché 2026 et optimisé pour les dernières versions de MT5. AVIS DE MISE À JOUR DU PRIX : Smart Trend Trading System est actuellement disponible à $99 . Le prix passera à $199 après les 30 prochains achats . OFFRE SPÉCIALE : Après avoir acheté Smart Trend Trading System, envoyez-moi un message privé pour recevoir Smart Universal EA GRATUITEMENT et transformer vos signaux Smart Trend en trades automatisés. Smart Trend Trading System est un système de trading c
FX Trend MT5 NG
Daniel Stein
5 (6)
FX Trend NG : La Nouvelle Génération d’Intelligence de Tendance Multi-Marchés Vue d’ensemble FX Trend NG est un outil professionnel d’analyse de tendance multi-timeframe et de surveillance des marchés. Il vous permet de comprendre la structure complète du marché en quelques secondes. Au lieu de naviguer entre de nombreux graphiques, vous identifiez immédiatement quels instruments sont en tendance, où le momentum s’affaiblit et où plusieurs unités de temps sont alignées. Offre de Lancement – Ob
Gann Made Easy   est un système de trading Forex professionnel et facile à utiliser qui est basé sur les meilleurs principes de trading en utilisant la théorie de mr. WD Gann. L'indicateur fournit des signaux d'ACHAT et de VENTE précis, y compris les niveaux Stop Loss et Take Profit. Vous pouvez échanger même en déplacement en utilisant les notifications PUSH. VEUILLEZ ME CONTACTER APRÈS L'ACHAT POUR RECEVOIR GRATUITEMENT DES INSTRUCTIONS DE TRADING ET D'EXCELLENTS INDICATEURS SUPPLÉMENTAIRES! V
GoldenX Entry MT5
Kareem Abbas
5 (7)
GoldenX Entry est un indicateur MT5 doté d’un algorithme adaptatif Smart Entry Trend, d’un système de scoring des signaux, d’un détecteur de régime de marché et d’un filtre de volatilité. Chaque signal inclut un niveau d’entrée calculé, trois niveaux de Take-Profit (TP1, TP2, TP3) ainsi qu’un niveau de Stop-Loss. Il est construit sur plusieurs couches analytiques conçues pour s’adapter à différentes conditions de marché, combinant un système analytique multicouche avec un optimiseur intégré et u
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
Version Swing M30/H1/H4 disponible Attraper les grands mouvements ? Gold Signal Swing Pro (M30/H1/H4). Objectif : $20-$80+ par trade. https://www.mql5.com/en/market/product/177643 KURAMA GOLD SIGNAL PRO (MT5) — Système de Trading XAUUSD Complet à 7 Couches de Filtres Aucun repaint. Aucun redraw. Aucun délai. Chaque signal reste figé une fois confirmé. Bonus acheteur : Tout acheteur de la licence d'achat reçoit AI Zone Radar (valeur $59) + manuel PDF
Market Structure Order Block Dashboard MT5 est un indicateur MT5 conçu pour les traders qui veulent lire la structure de marché et les principales zones de réaction du prix directement sur le graphique. Il combine BOS, ChoCH, Order Blocks, Fair Value Gaps (FVG), Liquidité, Kill Zones, Volume Profile, et un dashboard compact pour une analyse rapide. Cet indicateur s'adresse aux traders qui utilisent la structure de marché, les concepts ICT et Smart Money comme cadre de décision. Il peut aider à r
Trend Catcher ind mt5
Ramil Minniakhmetov
5 (4)
INDICATEUR DE DÉTECTEUR DE TENDANCE L'indicateur de détecteur de tendance analyse les mouvements de prix du marché grâce à une combinaison d'indicateurs d'analyse de tendance adaptatifs, propriétaires et personnalisés. Il identifie la véritable direction du marché en filtrant les fluctuations à court terme et en se concentrant sur la force de la dynamique sous-jacente, l'expansion de la volatilité et la structure des prix. Il utilise également une combinaison d'indicateurs personnalisés de lis
Reversion King Indicator
Eugen-alexandru Zibileanu
5 (3)
Un nouveau Roi en ville - Indicateur + Gestion des ordres (TP1 + TP2 + TP3) + Envoi optionnel de signaux Telegram INCLUS (GRATUIT) (SYSTÈME COMPLET DE TRADING et DE SIGNAUX) Notre meilleur EA pour l’Or : Gold Slayer Cet indicateur inclut une stratégie avancée, un système de trading avec gestion des ordres personnalisable ainsi qu’un système de retour à la moyenne combinant des extensions d’enveloppes, soutenu par plusieurs filtres intelligents de confirmation comme le RSI afin de détecter des en
Atomic Analyst MT5
Issam Kassas
4.21 (33)
Ce produit a été mis à jour pour le marché 2026 et optimisé pour les dernières versions de MT5. AVIS DE MISE À JOUR DU PRIX : Atomic Analyst est actuellement disponible à $99 . Le prix passera à $199 après les 30 prochains achats . OFFRE SPÉCIALE : Après avoir acheté Atomic Analyst, envoyez-moi un message privé pour recevoir Smart Universal EA GRATUITEMENT et transformer vos signaux Atomic Analyst en trades automatisés. Atomic Analyst est un indicateur de trading Price Action sans repaint, san
Smart Structure Concepts MT5
Cristhian Alexander Gaibor Cuasquer
5 (1)
Ce n'est pas un énième indicateur de structure qui dessine des zones et vous laisse deviner. Smart Structure Concepts lit le marché pour vous — marquant la structure Smart Money Concepts (SMC / ICT) en temps réel sur XAUUSD (Or), Forex, Indices, Crypto et tout autre marché . Oubliez d'entrer dans les paramètres pour configurer chaque zone : avec son panneau de bord interactif sur le graphique , vous décidez quoi afficher, masquer ou ajuster en un seul clic — sans ouvrir les propriétés, sans redé
Crystal Heikin Ashi Signals
Muhammad Jawad Shabir
5 (2)
Crystal Heikin Ashi Signals - Professional Trend & Signal Detection Indicator Advanced Heikin Ashi Visualization with Intelligent Signal System for Manual & Automated Trading Final Price: $149 ---------> Price goes up $10 after every 10 sales . Limited slots available — act fast . Overview Crystal Heikin Ashi Signals is a professional-grade MetaTrader 5 indicator that combines pure Heikin Ashi candle visualization with an advanced momentum-shift detection system. Designed for both manual traders
Trend Screener Pro MT5
STE S.S.COMPANY
4.85 (104)
Indicateur de tendance, solution unique révolutionnaire pour le trading et le filtrage des tendances avec toutes les fonctionnalités de tendance importantes intégrées dans un seul outil ! Il s'agit d'un indicateur multi-période et multi-devises 100 % non repeint qui peut être utilisé sur tous les symboles/instruments : forex, matières premières, crypto-monnaies, indices et actions. Trend Screener est un indicateur de suivi de tendance efficace qui fournit des signaux de tendance fléchés avec des
Meridian Pro
Ottaviano De Cicco
5 (2)
Meridian Pro 2.00: Professional Multi-Timeframe Trend Matrix for MT5 Meridian Pro 2.00 is a professional adaptive trend matrix for MetaTrader 5. It combines the original Meridian trend engine, a clean chart ribbon, closed-bar signal arrows, an 8-timeframe dashboard, Fuel momentum, weighted consensus, synthetic HTF processing and chart-native higher-timeframe context lines. The goal is simple: read current trend, multi-timeframe structure, strength, momentum and EA-ready state from one discipline
FX Levels MT5
Daniel Stein
5 (14)
FX Levels : Des zones de Support et Résistance d’une Précision Exceptionnelle pour Tous les Marchés Présentation Rapide Vous recherchez un moyen fiable pour déterminer des niveaux de support et résistance dans n’importe quel marché—paires de devises, indices, actions ou matières premières ? FX Levels associe la méthode traditionnelle « Lighthouse » à une approche dynamique de pointe, offrant une précision quasi universelle. Grâce à notre expérience réelle avec des brokers et à des mises à jour
Plus de l'auteur
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
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
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 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
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
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:
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 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
Filtrer:
mura1975
124
mura1975 2026.02.24 05:20 
 

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

Benjamin Afedzie
3943
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
3189
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 
 

L'utilisateur n'a laissé aucun commentaire sur la note

Menaka Sachin Thorat
9491
Réponse du développeur 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!"
Répondre à l'avis