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());
           }
     }
  }
//+------------------------------------------------------------------+ 


Avis 1
sid07198
24
sid07198 2026.05.11 00:10 
 

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

Produits recommandés
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.26 (58)
Cet indicateur d'information sera utile pour ceux qui veulent toujours être au courant de la situation actuelle du compte. L'indicateur affiche des données telles que le profit en points, en pourcentage et en devise, ainsi que le spread pour la paire actuelle et le temps jusqu'à la fermeture de la barre sur la période actuelle. VERSIONMT5 -   Des indicateurs plus utiles Il existe plusieurs options pour placer la ligne d'information sur le graphique : À droite du prix (passe derrière le prix) ;
FREE
Forex Market Profile and Vwap
Lorentzos Roussos
4.86 (7)
Profil du marché Forex (FMP en abrégé) Ce que ce n'est pas : FMP n'est pas l'affichage TPO classique à code alphabétique, n'affiche pas le calcul global du profil de données du graphique et ne segmente pas le graphique en périodes et ne les calcule pas. Ce qu'il fait : Plus important encore, l'indicateur FMP traitera les données situées entre le bord gauche du spectre défini par l'utilisateur et le bord droit du spectre défini par l'utilisateur. L'utilisateur peut définir le spectre en tiran
FREE
Toby Strategy Indicator
Ahmd Sbhy Mhmd Ahmd ʿYshh
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
Jamal El Alama
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 MT4
Kestutis Balciunas
L’indicateur Shadow Flare est un outil de tendance et de liquidité non re‑dessinant pour MetaTrader 4. Il calcule une ligne de base configurable à partir d’une moyenne mobile (HMA, EMA, SMA ou RMA), l’entoure d’une enveloppe basée sur l’Average True Range et produit un état de tendance « collant » qui ne bascule que lorsque le prix de clôture franchit la bande supérieure ou inférieure. Le même moteur de tendance alimente un module automatique de zones d’offre/demande qui détecte les sommets et c
FREE
QualifiedEngulfing
Ashkan Hazegh Nikrou
QualifiedEngulfing est la version gratuite de l'indicateur ProEngulfing . ProEngulfing est la version payante de l'indicateur Advance Engulf. Téléchargez-le ici. Quelle est la différence entre la version gratuite et la version payante de ProEngulfing ? La version gratuite a une limitation d'un signal par jour. Présentation de QualifiedEngulfing - Votre indicateur de motif Engulf professionnel pour MT4 Libérez la puissance de la précision avec QualifiedEngulfing, un indicateur de pointe conçu p
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
Auto Fibonacci displays the 38.2, 61.8, and 78.6 Fib levels directly on the chart, helping traders who use these key retracement zones consistently for trade planning or confluence. Drawing Fibonacci levels manually over and over again can take time, especially when done with wick-to-wick precision. Auto Fibonacci removes that friction by detecting the latest trend leg and placing the main Fibonacci levels automatically. Key Benefits Shows only the major Fibonacci levels to keep the chart clean
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
Trendline indicator
David Muriithi
2 (1)
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
Colored Candle Time
Saeed Hatam Mahmoudi
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
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 est un indicateur qui trace les lignes de support et de résistance de la journée en utilisant les taux de Fibonacci. Cet indicateur spectaculaire crée jusqu'à 7 niveaux de support et de résistance via Pivot Point en utilisant les taux de Fibonacci. C'est fantastique de voir comment les prix respectent chaque niveau de ce support et de cette résistance, où il est possible de percevoir les points d'entrée/sortie possibles d'une opération. Caractéristiques Jusqu'à 7 niveaux
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, is in the marke
FREE
Smart FVG Indicator MT4 – Détection avancée des Fair Value Gaps pour MetaTrader 4 Smart FVG Indicator MT4 offre une détection, un suivi et des alertes professionnelles de Fair Value Gap (FVG) directement sur vos graphiques MetaTrader 4. Il combine un filtrage basé sur l’ATR avec une logique consciente de la structure du marché afin de réduire le bruit, de s’adapter à la liquidité et de ne conserver que les déséquilibres les plus pertinents pour des décisions de trading précises. Atouts princip
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
Free automatic Fibonacci is an indicator that automatically plots a Fibonacci retracement based on the number of bars you select on the BarsToScan setting in the indicator. The Fibonacci is automatically updated in real time as new highest and lowest values appears amongst the selected bars. You can select which level values to be displayed in the indicator settings. You can also select the color of the levels thus enabling the trader to be able to attach the indicator several times with differe
FREE
Pin Bars
Yury Emeliyanov
5 (4)
Objectif principal: "Pin Bars" est conçu pour détecter automatiquement les barres pin sur les graphiques des marchés financiers. Une barre d'épingle est une bougie avec un corps caractéristique et une longue queue, qui peut signaler un renversement ou une correction de tendance. Comment ça marche: L'indicateur analyse chaque bougie sur le graphique, déterminant la taille du corps, de la queue et du nez de la bougie. Lorsqu'une barre d'épingle correspondant à des paramètres prédéfinis est détec
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
Highlights trading sessions on the chart The demo version only works on the AUDNZD chart!!! The full version of the product is available at: (*** to be added ***) Trading Session Indicator displays the starts and ends of four trading sessions: Pacific, Asian, European and American. the ability to customize the start/end of sessions; the ability to display only selected sessions; works on M1-H2 timeframes; The following parameters can be configured in the indicator: TIME_CORRECTION = Correct
FREE
Cumulative Delta MT4
Evgeny Shevtsov
4.86 (29)
The indicator analyzes the volume scale and splits it into two components - seller volumes and buyer volumes, and also calculates the delta and cumulative delta. The indicator does not flicker or redraw, its calculation and plotting are performed fairly quickly, while using the data from the smaller (relative to the current) periods. The indicator operation modes can be switched using the Mode input variable: Buy - display only the buyer volumes. Sell - display only the seller volumes. BuySell -
FREE
Bienvenue dans notre   modèle de vague de prix   MT4 -- (modèle ABCD) --     Le modèle ABCD est un modèle de trading puissant et largement utilisé dans le monde de l'analyse technique. Il s'agit d'un modèle de prix harmonique que les commerçants utilisent pour identifier les opportunités potentielles d'achat et de vente sur le marché. Avec le modèle ABCD, les traders peuvent anticiper les mouvements de prix potentiels et prendre des décisions éclairées sur le moment d'entrer et de sortir des t
FREE
Follow The Line
Oliver Gideon Amofa Appiah
3.94 (16)
FOLLOW THE LINE GET THE FULL VERSION HERE: https://www.mql5.com/en/market/product/36024 This indicator obeys the popular maxim that: "THE TREND IS YOUR FRIEND" It paints a GREEN line for BUY and also paints a RED line for SELL.  It gives alarms and alerts of all kinds. IT DOES NOT REPAINT and can be used for all currency pairs and timeframes. Yes, as easy and simple as that. Even a newbie can use it to make great and reliable trades. NB: For best results, get my other premium indicators for more
FREE
Auto Supply and Demand Oscillator is an indicator for MetaTrader 4 and MetaTrader 5 that detects supply and demand zones automatically and displays them as a single oscillator value at the bottom of the chart, instead of drawing rectangles directly on price. Concept Supply zones are price areas where strong selling created a sharp downward move away from a balance area. Demand zones are price areas where strong buying created a sharp upward move. Traditional implementations draw boxes on the
FREE
Les acheteurs de ce produit ont également acheté
Genesis Matrix Pro is a professional multi-timeframe trend detection indicator designed to help traders identify high-quality market alignment with clarity and structure. It combines 12 different technical indicators into one visual alignment matrix, allowing traders to quickly see when market conditions are bullish, bearish, or neutral. A signal is generated only when the selected strategies are aligned, helping reduce noise and improve decision-making. PLEASE CONTACT ME AFTER PURCHASE TO GET
Gann Made Easy
Oleg Rodin
4.84 (164)
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! Vou
Scalper Inside PRO
Alexey Minkov
4.74 (68)
Scalper Inside PRO Scalper Inside PRO is an intraday trend and scalping indicator for MetaTrader 4 that uses an exclusive algorithm to quickly detect market direction and key target levels. It automatically calculates entry, exit and multiple profit targets, and shows detailed performance statistics so you can see how different instruments and strategies performed. This helps you choose the most suitable trading instruments for the current market conditions. Additionally, you can easily integrat
M1 Sniper
Oleg Rodin
5 (23)
M1 SNIPER est un système d'indicateurs de trading facile à utiliser. Il s'agit d'un indicateur à flèche conçu pour l'unité de temps M1. Cet indicateur peut être utilisé seul pour le scalping sur l'unité de temps M1 ou intégré à votre système de trading existant. Bien que conçu spécifiquement pour le trading sur l'unité de temps M1, ce système peut également être utilisé avec d'autres unités de temps. Initialement, j'avais conçu cette méthode pour le trading du XAUUSD et du BTCUSD. Cependant, je
Neuro Poseidon MT4
Daria Rezueva
5 (1)
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 all
NAM Order Blocks
NAM TECH GROUP, CORP.
3.67 (3)
MT4 Multi-timeframe Order Blocks detection indicator. Features - Fully customizable on chart control panel, provides complete interaction. - Hide and show control panel wherever you want. - Detect OBs on multiple timeframes. - Select OBs quantity to display. - Different OBs user interface. - Different filters on OBs. - OB proximity alert. - ADR High and Low lines. - Notification service (Screen alerts | Push notifications). Summary Order block is a market behavior that indicates order collection
Tout d'abord, il convient de souligner que cet outil de trading est un indicateur non repeint, non redessiné et non retardé, ce qui le rend idéal pour le trading professionnel. Cours en ligne, manuel utilisateur et démonstration. L'indicateur Smart Price Action Concepts est un outil très puissant à la fois pour les nouveaux et les traders expérimentés. Il regroupe plus de 20 indicateurs utiles en un seul, combinant des idées de trading avancées telles que l'analyse du trader Inner Circle et les
Le système PRO Renko est un système de trading très précis spécialement conçu pour le trading de graphiques RENKO. Il s'agit d'un système universel qui peut être appliqué à divers instruments de négociation. Le système neutralise efficacement ce qu'on appelle le bruit du marché en vous donnant accès à des signaux d'inversion précis. L'indicateur est très facile à utiliser et n'a qu'un seul paramètre responsable de la génération du signal. Vous pouvez facilement adapter l'outil à n'importe que
Dynamic Forex28 Navigator
Bernhard Schweigert
4.43 (7)
Dynamic Forex28 Navigator - L'outil de trading Forex de nouvelle génération. ACTUELLEMENT 49 % DE RÉDUCTION. Dynamic Forex28 Navigator est l'évolution de nos indicateurs populaires de longue date, combinant la puissance de trois en un : Advanced Currency Strength28 Indicator (695 avis) + Advanced Currency IMPULSE avec ALERT (520 avis) + CS28 Combo Signals (Bonus). Détails sur l'indicateur https://www.mql5.com/en/blogs/post/758844 Qu'offre l'indicateur de force de nouvelle génération ? Tout
RFI levels PRO
Roman Podpora
5 (1)
L'indicateur montre avec précision les points de retournement et les zones de retour des prix où le       Acteurs majeurs   . Vous repérez les nouvelles tendances et prenez des décisions avec une précision maximale, en gardant le contrôle de chaque transaction. VERSION MT5     -     Révèle son potentiel maximal lorsqu'il est combiné à l'indicateur   TREND LINES PRO Ce que l'indicateur montre : Structures et niveaux d'inversion avec activation au début d'une nouvelle tendance. Affichage des nive
Trend Catcher ind
Ramil Minniakhmetov
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
Grabber System
Ihor Otkydach
5 (2)
Je vous présente un excellent indicateur technique : Grabber, qui fonctionne comme une stratégie de trading "tout-en-un", prête à l'emploi. En un seul code sont intégrés des outils puissants d'analyse technique du marché, des signaux de trading (flèches), des fonctions d'alerte et des notifications push. Chaque acheteur de cet indicateur reçoit également gratuitement : L'utilitaire Grabber : pour la gestion automatique des ordres ouverts Un guide vidéo étape par étape : pour apprendre à installe
Advanced Supply Demand
Bernhard Schweigert
4.91 (300)
Offre spéciale : 40 % de réduction La solution idéale pour les traders débutants comme experts ! Cet indicateur est un outil de trading unique, performant et abordable grâce à l’intégration de nombreuses fonctionnalités exclusives et d’une nouvelle formule. Cette mise à jour vous permet d’afficher des zones sur deux unités de temps. Vous pourrez ainsi visualiser non seulement une unité de temps supérieure, mais aussi l’unité de temps du graphique, ainsi que l’unité de temps supérieure : des z
Auto Optimized Parabolic RSI : Moteur de Momentum 3D Avancé La plupart des indicateurs pour les particuliers échouent car ils s'appuient sur des paramètres statiques qui se brisent dès que la volatilité du marché change. L'Auto Optimized Parabolic RSI résout le problème de l'« obsolescence des indicateurs » en recalculant continuellement son propre avantage mathématique, apportant une adaptation quantitative de niveau institutionnel directement sur votre terminal MT5. L'Avantage Principal : Opti
Introduction to Fractal Pattern Scanner Fractal Indicator refers to the technical indicator that makes use of the fractal geometry found in the financial market. Fractal Pattern Scanner is the advanced Fractal Indicator that brings the latest trading technology after the extensive research and development work in the fractal geometry in the financial market. The most important feature in Fractal Pattern Scanner is the ability to measure the turning point probability as well as the trend probabi
Market Structure Patterns MT4
Samuel Manoel De Souza
5 (18)
Market Structure Patterns   est un indicateur basé sur les   Smart Money Concepts   qui affiche les   éléments SMC/ICT   pouvant améliorer vos décisions de trading. Profitez des   alertes ,   notifications push   et   emails   pour être informé lorsqu’un élément se forme sur le graphique, que le prix franchit un niveau et/ou entre dans une zone. Les développeurs peuvent accéder aux valeurs des éléments de l’indicateur via les   variables globales , permettant l’automatisation des décisions de tr
Currency Strength Wizard est un indicateur très puissant qui vous offre une solution tout-en-un pour un trading réussi. L'indicateur calcule la puissance de telle ou telle paire de devises en utilisant les données de toutes les devises sur plusieurs périodes. Ces données sont représentées sous la forme d'un indice de devise facile à utiliser et de lignes électriques de devise que vous pouvez utiliser pour voir la puissance de telle ou telle devise. Tout ce dont vous avez besoin est d'attacher l'
CRT Candle Range Theory HTF MT4.   Ultimate CRT Indicator: Advanced ICT Concepts and Malaysian SnR Trading System Discounted   Price   $50  !!     Secure your lifetime access   now   before it switches to   subscription-only ! 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 indic
Apollo SR Master est un indicateur de support/résistance doté de fonctionnalités spéciales qui simplifient et fiabilisent le trading basé sur les zones de support/résistance. Cet indicateur calcule ces zones en temps réel, sans aucun décalage, en détectant les sommets et les creux locaux des prix. Pour confirmer la nouvelle zone de support/résistance, il affiche un signal spécifique indiquant que cette zone peut être prise en compte et utilisée comme un véritable signal d'achat ou de vente. Dans
FX Power MT4 NG
Daniel Stein
4.95 (21)
FX Power : Analysez la force des devises pour des décisions de trading plus intelligentes Aperçu FX Power est l'outil essentiel pour comprendre la force réelle des principales devises et de l'or, quelles que soient les conditions du marché. En identifiant les devises fortes à acheter et les faibles à vendre, FX Power simplifie vos décisions de trading et révèle des opportunités à forte probabilité. Que vous suiviez les tendances ou anticipiez les retournements à l'aide de valeurs extrêmes de D
Contactez-moi après l'achat pour obtenir un EA en bonus basé sur cet indicateur. La Self Optimizing Double MA Strategy est un outil de trading de niveau professionnel conçu pour éliminer les approximations de paramètres. Propulsé par un moteur d'auto-optimisation intégré, il s'adapte continuellement aux conditions changeantes du marché en simulant des milliers de combinaisons de paramètres en arrière-plan afin de maintenir un avantage statistique. Au lieu de s'appuyer sur des paramètres statiqu
Day Trader Master est un système de trading complet pour les day traders. Le système se compose de deux indicateurs. Un indicateur est un signal fléché pour acheter et vendre. C'est l'indicateur de flèche que vous obtenez. Je vous fournirai le deuxième indicateur gratuitement. Le deuxième indicateur est un indicateur de tendance spécialement conçu pour être utilisé conjointement avec ces flèches. LES INDICATEURS NE RÉPÉTENT PAS ET NE TARDENT PAS! L'utilisation de ce système est très simple. Il v
Candle Power Pro
Thushara Dissanayake
4.5 (8)
Le       Candle Power Pro       est un outil de trading sophistiqué conçu pour décoder       pression réelle sur le volume, déséquilibres des données de ticks et dynamique du flux d'ordres institutionnels       en mesurant le       bataille entre les tics haussiers et les tics baissiers       en temps réel. Cet indicateur transforme les données brutes       données de volume en informations exploitables   , aidant les traders à identifier       Mouvements d'argent intelligent, chasses aux liqui
Si vous tradez sur le marché du Forex, disposer d'informations détaillées sur la force des devises et la corrélation entre les paires de devises peut élever votre trading à un niveau supérieur. La corrélation vous aidera à réduire votre risque de moitié, tandis que l'analyse de la force maximisera vos profits. Cet indicateur propose une approche hybride pour sélectionner les paires de devises les plus appropriées en combinant l'analyse de la force des devises et la corrélation des paires. Comme
Cycle Sniper
Elmira Memish
4.39 (36)
Please contact us after your purchase and we will send you the complimentary indicators to complete the system Cycle Sniper is not a holy grail but when you use it in a system which is explained in the videos, you will feel the difference. If you are not willing to focus on the charts designed with Cycle Sniper and other free tools we provide, we recommend not buying this indicator. We recommend watching the videos about the indiactor and system before purchasing. Videos, settings  and descri
Route Lines Prices - est un indicateur conçu pour identifier les directions des prix. Son interface simple intègre plusieurs algorithmes de calcul du comportement des prix et de leur direction future. Ces algorithmes incluent le calcul de la volatilité et le lissage des prix en fonction des unités de temps utilisées. L'indicateur possède un unique paramètre permettant de modifier la valeur « Calculating price values ». La valeur par défaut de 1 assure un calcul automatique équilibré, utilisabl
Signal GoldRush Trend Arrow L'indicateur GoldRush Trend Arrow Signal fournit une analyse précise et en temps réel des tendances, spécialement conçue pour les scalpers à haute vitesse et à court terme sur la paire XAU/USD. Conçu spécialement pour les intervalles de temps d'une minute, cet outil affiche des flèches directionnelles indiquant clairement les points d'entrée, ce qui permet aux scalpers de naviguer en toute confiance dans des conditions de marché volatiles. L'indicateur se compose
Master head and shoulders patterns for better trading decisions A head and shoulders pattern is a chart formation that resembles a baseline with three peaks, the outside two are close in height and the middle is highest. It predicts a bullish-to-bearish trend reversal and is believed to be one of the most reliable trend reversal patterns. It is one of several top patterns that signal, with varying degrees of accuracy, that a trend is nearing its end. [ Installation Guide | Update Guide | Trouble
CRYSTAL HEIKIN ASHI SIGNALS MT4 Professional Trend Detection Indicator with Smart Entry Signals See the Trend. Catch the Move. Trade with Confidence. The professional Heikin Ashi indicator built for traders who want clarity, precision, and EA-ready signal automation. WHAT IS CRYSTAL HEIKIN ASHI SIGNALS? Crystal Heikin Ashi Signals is a professional-grade MetaTrader 4 indicator that combines pure Heikin Ashi candle visualization with an advanced momentum-shift detection system. Designed for both
The Propfolio Master Suite is the ultimate all-in-one analytical workstation for professional traders. Combining the power of the Beat The Market Maker (BTMM) methodology, Smart Money Concepts (SND/Liquidity), and Advanced Volume Profile, this suite replaces multiple different indicators with one optimized engine. Monitor up to 14 pairs simultaneously from a single chart, instantly identify market cycles, and seamlessly map institutional footprints with the click of a button. The Command Center
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
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 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
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
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
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
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
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
Filtrer:
sid07198
24
sid07198 2026.05.11 00:10 
 

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

Répondre à l'avis