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

İncelemeler 5
Benjamin Afedzie
3708
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
3071
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!!!

Önerilen ürünler
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 Fiyat seviyelerine göre işlem hacmini gösterir ve kurumsal ilgiyi çeken bölgeleri ortaya çıkarır. Klasik hacim göstergelerinden farklı olarak, hacmin gerçekte nerede yoğunlaştığını gösterir. Temel ilkeler: Yatay çubuklar = her fiyat seviyesindeki işlem hacmi Daha uzun çubuk → daha yüksek hacim Kırmızı bölgeler = güçlü destek / direnç alanları Ana kullanımlar: Gerçek destek ve direnç bölgelerini belirleme POC (Point of Control) tespiti Değer Alanı (toplam hacmin %70’i
FREE
Haven Volume Profile
Maksim Tarutin
4.63 (8)
Haven Volume Profile, ticaret hacminin dağılımına dayalı olarak önemli fiyat seviyelerini belirlemeye yardımcı olan çok fonksiyonlu bir hacim profili analiz göstergesidir. Piyasayı daha iyi anlamak ve önemli giriş ve çıkış noktalarını belirlemek isteyen profesyonel yatırımcılar için tasarlanmıştır. Diğer Ürünler ->  BURADAN Temel Özellikler: Point of Control (POC) Hesaplama - en yüksek ticaret aktivitesinin gerçekleştiği seviye, en likit seviyeleri belirlemeye yardımcı olur Value Area (yüksek ak
FREE
Value Chart Candlesticks
Flavio Javier Jarabeck
4.69 (13)
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
(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   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
High Low Open Close
Alexandre Borela
4.98 (43)
Bu projeyi seviyorsanız, 5 yıldız incelemesi bırakın. Bu gösterge açık, yüksek, düşük ve belirtilen fiyatlar için çizer Dönem ve belirli bir zaman bölgesi için ayarlanabilir. Bunlar birçok kurumsal ve profesyonel tarafından görünen önemli seviyelerdir. tüccarlar ve daha fazla olabileceği yerleri bilmeniz için yararlı olabilir Aktif. Mevcut dönemler şunlardır: Önceki gün. Önceki Hafta. Önceki Ay. Previous Quarter. Önceki yıl. Veya: Mevcut gün. Hafta. Şimdi Ay. Şimdiki Mahallesi. Bugün yıl.
FREE
Donchian Breakout And Rsi
Mattia Impicciatore
5 (1)
Genel Açıklama Bu gösterge, klasik Donchian Kanalı ’nın geliştirilmiş bir versiyonudur ve gerçek işlem için pratik işlevlerle zenginleştirilmiştir. Standart üç çizgiye (üst, alt ve orta çizgi) ek olarak sistem breakout (fiyat kırılımı) noktalarını tespit eder ve bunları grafikte oklarla görsel olarak gösterir. Ayrıca grafiği sadeleştirmek için mevcut trend yönünün tersindeki çizgi yalnızca görüntülenir. Gösterge şunları içerir: Görsel sinyaller : Kırılım sırasında renkli oklar Otomatik bildiriml
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
5 (1)
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 — MT5 üzerinde hacim ağırlıklı ortalama fiyatı (VWAP) gösteren basit, el yapımı bir gösterge. TF: Tüm zaman dilimlerinde çalışır. Parite: Forex, endeks, emtia ve hisse senetleriyle uyumlu. Ayarlar: AppliedPrice – hesaplama için kullanılan fiyat türü LineColor / Width / Style – çizgi görünümü SessionReset – günlük sıfırlama veya sürekli mod Çalışma prensibi (VWAP): VWAP (Volume Weighted Average Price) = (Fiyat × Hacim toplamı) / (Hacim toplamı) Fiyat VWAP’ın üzerindeyse alıcılar b
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
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
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
Cumulative Delta MT5
Evgeny Shevtsov
4.56 (61)
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
Pivot Point Fibo RSJ, Fibonacci oranlarını kullanarak günün destek ve direnç çizgilerini izleyen bir göstergedir. Bu muhteşem gösterge, Fibonacci oranlarını kullanarak Pivot Point üzerinden 7 seviyeye kadar destek ve direnç oluşturur. Fiyatların, bir operasyonun olası giriş/çıkış noktalarını algılamanın mümkün olduğu bu destek ve direncin her bir düzeyine uyması harika. Özellikleri 7 seviyeye kadar destek ve 7 seviye direnç Seviyelerin renklerini ayrı ayrı ayarlayın Girişler Pivot Tipi Pivo
FREE
Weis Waves
Flavio Javier Jarabeck
2.83 (18)
The original author is David Weis, an expert in the Wyckoff Method. The Weis Wave is a modern adaptation of the 1930's Wyckoff Method, another expert in Tape Reading techniques and Chart Analysis. Weis Waves takes market volume and stacks it into waves according to price conditions giving the trader valuable insights about the market conditions. If you want to learn more about this subject you can find tons of videos in YouTube. Just look for "The Wickoff Method", "Weis Wave" and "Volume Spread
FREE
https://www.mql5.com/en/users/gedeegi/seller    The GEN indicator is a multifunctional technical analysis tool for the MetaTrader 5 (MT5) platform. It is designed to automatically identify and display key Support and Resistance (S&R) levels and detect False Breakout signals, providing clear and visual trading cues directly on your chart. Its primary goal is to help traders identify potential price reversal points and avoid market traps when the price fails to decisively break through key levels
FREE
Time and Sales Tick
Pablo Filipe Soares De Almeida
Time & Sales Tick Indicator, MetaTrader 5 için geliştirilen bir göstergedir ve gerçek zamanlı tick verilerini gösterir. Fiyat, tick hacmi ve zamanı doğrudan grafikte görüntüler. Özellikler Fiyat, hacim ve zaman bilgilerini içeren tick verilerini grafik üzerindeki bir panelde gösterir. Tick verilerini kullanıcı tarafından belirlenen aralıklara göre gruplandırır, yükselişler yeşil, düşüşler kırmızı renkle gösterilir. Panel, grafiğin istenilen köşesine yerleştirilebilir.
TimeFrameLow milliseconds
Israel Goncalves Moraes De Souza
O indicador mostra o preço ou volume em milissegundos, ótimo para identificar padrões de entrada por agressão de preço ou volume e escalpelamento rápido. Características Período de tempo do WPR em milissegundos Oscilador de agressão de preço Tela personalizável O indicador pode indicar movimentos de entrada, como: Cruzamento da linha 0.0 Identificando padrões de onda A velocidade de exibição do gráfico dependerá do seu hardware, quanto menores os milissegundos, mais serão necessários do hardwar
FREE
This robot sends Telegram notifications based on the coloring rules of PLATINUM Candle indicator. Example message for selling assets: [SPX][M15] PLATINUM TO SELL 11:45. Example message for buying assets : [EURUSD][M15] PLATINUM TO BUY 11:45 AM. Before enable Telegram notifications  you need to create a Telegram bot, get the bot API Key and also get your personal Telegram chatId. It's not possible to send messages to groups or channels. You can only send messages to your user chatId. You should
FREE
Bu ürünün alıcıları ayrıca şunları da satın alıyor
SuperScalp Pro
Van Minh Nguyen
5 (7)
SuperScalp Pro – Gelişmiş Çoklu Filtreli Scalping Gösterge Sistemi SuperScalp Pro, klasik Supertrend ile çok sayıda akıllı onay filtresini birleştiren gelişmiş bir scalping gösterge sistemidir. Gösterge M1’den H4’e kadar tüm zaman dilimlerinde verimli çalışır ve özellikle XAUUSD, BTCUSD ve ana Forex pariteleri için uygundur. Bağımsız bir sistem olarak kullanılabilir veya mevcut ticaret stratejilerine esnek şekilde entegre edilebilir. Gösterge, hız ve yavaş EMA’lar, trend belirleyen üç EMA, EMA e
FX Trend MT5 NG
Daniel Stein
5 (4)
FX Trend NG: Yeni Nesil Çoklu Piyasa Trend Zekâsı Genel Bakış FX Trend NG , çoklu zaman dilimlerinde çalışan profesyonel bir trend analiz ve piyasa izleme aracıdır. Piyasanın yapısını saniyeler içinde anlamanızı sağlar. Birden fazla grafik arasında geçiş yapmak yerine, hangi enstrümanların trendde olduğunu, momentumun nerede zayıfladığını ve hangi zaman dilimlerinin uyumlu olduğunu anında görebilirsiniz. Lansman Teklifi – FX Trend NG sadece $30 (6 Ay) veya $80 Ömür Boyu Lisans ile edinin. Zate
Bu indikatörü satın alırsanız, Profesyonel Trade Manager’ımı  + EA ÜCRETSİZ olarak alacaksınız. Öncelikle, bu Ticaret Sistemi'nin Non-Repainting, Non-Redrawing ve Non-Lagging Göstergesi olduğunu vurgulamak önemlidir, bu da hem manuel hem de robot ticareti için ideal hale getirir. Online kurs, kılavuz ve ön ayarları indir. "Smart Trend Trading System MT5", yeni ve deneyimli tüccarlar için özelleştirilmiş kapsamlı bir ticaret çözümüdür. 10'dan fazla premium göstergeyi birleştiriyor ve 7'den fazla
Entry In The Zone and SMC Multi Timeframe is a real-time market analysis tool developed based on Smart Money Concepts (SMC). It is designed to analyze market structure, price direction, reversal points, and key zones across multiple timeframes in a systematic way. The system displays Points of Interest (POI) and real-time No Repaint signals, with instant alerts when price reaches key zones or when signals occur within those zones. It functions as both an Indicator and a Signal System (2-in-1), c
Divergence Bomber
Ihor Otkydach
4.89 (83)
Bu göstergeyi satın alan herkese aşağıdaki ekstra içerikler ücretsiz olarak sunulmaktadır: Her işlemi otomatik olarak yöneten, Stop Loss ve Take Profit seviyelerini ayarlayan ve işlemleri strateji kurallarına göre kapatan özel yardımcı araç: "Bomber Utility" Göstergenin farklı varlıklar üzerinde kullanılmasına yönelik ayar dosyaları (set dosyaları) Bomber Utility için 3 farklı modda kullanım sunan ayar dosyaları: "Minimum Risk", "Dengeli Risk" ve "Bekle-Gör Stratejisi" Bu ticaret stratejisini hı
Game Changer è un indicatore di tendenza rivoluzionario, progettato per essere utilizzato su qualsiasi strumento finanziario, per trasformare il tuo MetaTrader in un potente analizzatore di trend. Funziona su qualsiasi intervallo temporale e aiuta a identificare i trend, segnala potenziali inversioni, funge da meccanismo di trailing stop e fornisce avvisi in tempo reale per risposte tempestive del mercato. Che tu sia un professionista esperto o un principiante in cerca di un vantaggio, questo st
Power Candles – Tüm Piyasalar İçin Güce Dayalı Giriş Sinyalleri Power Candles , Stein Investments’ın kanıtlanmış güç analizini doğrudan fiyat grafiğinize taşır. Sadece fiyata tepki vermek yerine, her mum gerçek piyasa gücüne göre renklendirilir. Bu sayede momentum birikimleri, güç hızlanmaları ve net trend geçişleri anında görülebilir. Tüm Piyasalar İçin Tek Mantık Power Candles tüm işlem sembollerinde otomatik olarak çalışır. Gösterge, mevcut sembolün Forex mi yoksa Forex dışı bir piyasa mı old
FX Power MT5 NG
Daniel Stein
5 (31)
FX Power: Daha Akıllı Ticaret Kararları için Para Birimlerinin Gücünü Analiz Edin Genel Bakış FX Power , her piyasa koşulunda başlıca para birimlerinin ve altının gerçek gücünü anlamak için vazgeçilmez bir araçtır. Güçlü para birimlerini alıp zayıf olanları satarak, FX Power ticaret kararlarınızı basitleştirir ve yüksek olasılıklı fırsatları ortaya çıkarır. İster trendlere sadık kalın ister Delta'nın aşırı değerlerini kullanarak tersine dönüşleri öngörün, bu araç ticaret tarzınıza mükemmel bir
RFI levels PRO MT5
Roman Podpora
3.67 (3)
Bu gösterge, fiyat dönüş noktalarını ve fiyat geri dönüş bölgelerini doğru bir şekilde gösterir.       Başlıca oyuncular   . Yeni trendlerin nerede oluştuğunu görüyorsunuz ve her işlem üzerinde kontrolü elinizde tutarak, azami hassasiyetle kararlar alıyorsunuz. TREND LINES PRO   göstergesiyle birlikte kullanıldığında maksimum potansiyelini ortaya koyar.  VERSION MT4 Göstergenin gösterdiği şey: Yeni bir trendin başlangıcında aktivasyonla birlikte tersine dönüş yapıları ve tersine dönüş seviyeler
Gold Entry Sniper
Tahir Mehmood
5 (4)
Gold Entry Sniper – Altın Scalping & Swing Trading için Profesyonel Çoklu Zaman Çerçeveli ATR Paneli Gold Entry Sniper , XAUUSD ve diğer enstrümanlar için doğru al/sat sinyalleri veren, ATR Trailing Stop mantığı ve çoklu zaman çerçevesi analizi ile geliştirilmiş gelişmiş bir MetaTrader 5 göstergesidir. Temel Özellikler ve Avantajlar Çoklu Zaman Çerçevesi Analizi – M1, M5, M15 trendlerini tek panelde gösterir. ATR Tabanlı Trailing Stop – Volatiliteye göre dinamik olarak ayarlanır. Profesyonel Gra
Smart Stop Indicator – Stop-loss düzeylerini doğrudan grafikte akıllı ve hassas şekilde belirleyin Genel Bakış Smart Stop Indicator, stop-loss seviyesini tahmin ederek veya sezgilere güvenerek değil, net ve sistematik bir şekilde belirlemek isteyen traderlar için özel olarak geliştirilmiştir. Bu araç, klasik price-action mantığını (yükselen tepeler, düşen dipler) modern breakout algılama ile birleştirerek bir sonraki mantıklı stop seviyesini belirler. Trendlerde, yatay piyasalarda veya hızlı k
Azimuth Pro
Ottaviano De Cicco
5 (4)
LAUNCH PROMO Azimuth Pro price is initially set at 299$ for the first 100 buyers. Final price will be 499$ . THE DIFFERENCE BETWEEN RETAIL AND INSTITUTIONAL ENTRIES ISN'T THE INDICATOR — IT'S THE LOCATION. Most traders enter at arbitrary price levels, chasing momentum or reacting to lagging signals. Institutions wait for price to reach structured levels where supply and demand actually shift. Azimuth Pro maps these levels automatically: swing-anchored VWAP, multi-timeframe structure lines, an
TREND ÇİZGİLERİ PRO       Piyasanın gerçek yön değiştirdiği noktayı anlamaya yardımcı olur. Gösterge, gerçek trend dönüşlerini ve büyük oyuncuların piyasaya yeniden girdiği noktaları gösterir. Anlıyorsun   BOS hatları   Daha yüksek zaman dilimlerindeki trend değişiklikleri ve önemli seviyeler, karmaşık ayarlar veya gereksiz gürültü olmadan gösterilir. Sinyaller yeniden çizilmez ve çubuk kapandıktan sonra grafikte kalır. MT4 SÜRÜMÜ   -   RFI LEVELS PRO   göstergesiyle   birlikte kullanıldığında m
Atomic Analyst MT5
Issam Kassas
4.1 (29)
Öncelikle belirtmek gerekir ki bu Ticaret Göstergesi Yeniden Çizim Yapmaz, Gecikmez ve Gecikme Göstermez, bu da hem manuel hem de robot ticareti için ideal hale getirir. Kullanıcı kılavuzu: ayarlar, girişler ve strateji. Atom Analisti, Piyasada Daha İyi Bir Avantaj Bulmak İçin Fiyatın Gücünü ve Momentumunu Kullanan PA Fiyat Hareketi Göstergesidir. Gürültüleri ve Yanlış Sinyalleri Kaldırmaya ve Ticaret Potansiyelini Artırmaya Yardımcı Olan Gelişmiş Filtrelerle Donatılmıştır. Birden fazla katmanl
FX Levels MT5
Daniel Stein
5 (13)
FX Levels: Tüm Piyasalar İçin Son Derece Hassas Destek ve Direnç Hızlı Bakış Döviz kurları, endeksler, hisseler veya emtialar gibi herhangi bir piyasada güvenilir destek ve direnç seviyeleri belirlemek mi istiyorsunuz? FX Levels geleneksel “Lighthouse” yöntemini ileri düzey bir dinamik yaklaşımla birleştirerek neredeyse evrensel bir doğruluk sağlar. Gerçek broker deneyimimize ve otomatik günlük güncellemeler ile gerçek zamanlı güncellemelerin birleşimine dayalı olarak, FX Levels size dönüş nok
Trend Screener Pro MT5
STE S.S.COMPANY
4.84 (101)
Trend Göstergesi, Trend Alım Satım ve Filtreleme için Çığır Açan Benzersiz Çözüm, Tüm Önemli Trend Özellikleriyle Tek Bir Araç İçinde Yerleştirildi! Forex, emtialar, kripto para birimleri, endeksler ve hisse senetleri gibi tüm sembollerde/araçlarda kullanılabilen %100 yeniden boyamayan çoklu zaman çerçevesi ve Çoklu para birimi göstergesidir. Trend Screener, grafikte noktalarla ok trend sinyalleri sağlayan etkili bir trend trend göstergesidir. Trend analizörü göstergesinde bulunan özellikler: 1.
ARIPoint
Temirlan Kdyrkhan
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
Grabber System MT5
Ihor Otkydach
4.82 (22)
Size mükemmel bir teknik gösterge olan Grabber’ı tanıtıyorum. Bu araç, kullanıma hazır bir “her şey dahil” işlem stratejisi olarak çalışır. Tek bir yazılım kodu içinde güçlü piyasa teknik analiz araçları, işlem sinyalleri (oklar), uyarı işlevleri ve push bildirimleri entegre edilmiştir. Bu göstergeyi satın alan herkes aşağıdaki hediyeleri ücretsiz olarak alır: Açık emirleri otomatik yönetmek için Grabber Yardımcı Aracı Kurulum, yapılandırma ve nasıl işlem yapılacağını adım adım anlatan video kıl
Quantum TrendPulse
Bogdan Ion Puscasu
5 (20)
SuperTrend   ,   RSI   ve   Stochastic'in   gücünü tek bir kapsamlı göstergede birleştirerek işlem potansiyelinizi en üst düzeye çıkaran nihai işlem aracı olan   Quantum TrendPulse'u   tanıtıyoruz. Hassasiyet ve verimlilik arayan yatırımcılar için tasarlanan bu gösterge, piyasa trendlerini, momentum değişimlerini ve en uygun giriş ve çıkış noktalarını güvenle belirlemenize yardımcı olur. Temel Özellikler: SuperTrend Entegrasyonu:   Güncel piyasa trendlerini kolayca takip edin ve karlılık dalgası
IX Power MT5
Daniel Stein
4.92 (13)
IX Power: Endeksler, Emtialar, Kripto Paralar ve Forex Piyasaları için İçgörüler Genel Bakış IX Power , endeksler, emtialar, kripto paralar ve forex sembollerinin gücünü analiz etmek için tasarlanmış çok yönlü bir araçtır. FX Power , tüm kullanılabilir döviz çiftlerinin verilerini kullanarak döviz çiftleri için maksimum doğruluk sağlarken, IX Power yalnızca temel sembolün piyasa verilerine odaklanır. Bu, IX Power 'ı forex dışındaki piyasalar için ideal ve daha basit forex analizleri için güven
Öncelikle, bu Ticaret Aracının Non-Repainting, Non-Redrawing ve Non-Lagging Gösterge olduğunu vurgulamakta fayda var, bu da onu profesyonel ticaret için ideal hale getiriyor. Çevrimiçi kurs, kullanıcı kılavuzu ve demo. Akıllı Fiyat Hareketi Kavramları Göstergesi, hem yeni hem de deneyimli tüccarlar için çok güçlü bir araçtır. İleri ticaret fikirlerini, Inner Circle Trader Analizi ve Smart Money Concepts Ticaret Stratejileri gibi 20'den fazla kullanışlı göstergeyi bir araya getirerek bir araya
FX Dynamic MT5
Daniel Stein
5 (5)
FX Dynamic: Özelleştirilebilir ATR Analiziyle Volatilite ve Trendleri Takip Edin Genel Bakış FX Dynamic , ortalama gerçek aralık (ATR) hesaplamalarını kullanarak günlük ve gün içi volatilite hakkında rakipsiz bilgiler sağlayan güçlü bir araçtır. 80%, 100%, 130% gibi net volatilite eşikleri ayarlayarak, piyasa olağan hareketlerinin ötesine geçtiğinde hızlı şekilde uyarı alabilir ve potansiyel kazanç fırsatlarını süratle tespit edebilirsiniz. FX Dynamic , brokerınızın zaman dilimine uyum sağlaya
Tanıtım       Quantum Breakout PRO   , Breakout Bölgeleri ile ticaret yapma şeklinizi değiştiren çığır açan MQL5 Göstergesi! 13 yılı aşkın ticaret tecrübesine sahip deneyimli tüccarlardan oluşan bir ekip tarafından geliştirilmiştir.       Kuantum Breakout PRO       yenilikçi ve dinamik koparma bölgesi stratejisiyle ticaret yolculuğunuzu yeni zirvelere taşımak için tasarlanmıştır. Kuantum Breakout Göstergesi, size 5 kar hedefi bölgesi ile kırılma bölgelerinde sinyal okları ve kırılma kutusuna da
" Dynamic Scalper System MT5 " göstergesi, trend dalgaları içinde işlem yapmak için scalping yöntemi için tasarlanmıştır. Başlıca döviz çiftleri ve altın üzerinde test edilmiştir, diğer işlem araçlarıyla uyumluluğu mümkündür. Ek fiyat hareketi desteğiyle trend boyunca pozisyonların kısa vadeli açılması için sinyaller sağlar. Göstergenin prensibi. Büyük oklar trend yönünü belirler. Küçük oklar şeklinde scalping için sinyaller üreten bir algoritma trend dalgaları içinde çalışır. Kırmızı oklar yü
Top indicator for MT5   providing accurate signals to enter a trade without repainting! It can be applied to any financial assets:   forex, cryptocurrencies, metals, stocks, indices .  Watch  the video  (6:22) with an example of processing only one signal that paid off the indicator! MT4 version is here It will provide pretty accurate trading signals and tell you when it's best to open a trade and close it. Most traders improve their trading results during the first trading week with the help of
Her gün birçok trader ortak bir zorlukla karşılaşır: fiyat önemli bir seviyeyi kırıyor gibi görünür, işleme girerler ve ardından piyasa tersine dönerek stop loss'larını tetikler. Bu, sahte kırılım (false breakout) olarak bilinir — fiyatın bir destek veya direnç seviyesini kısa süreliğine aşması ve ardından yön değiştirmesi hareketidir. Bu hareketler, gerçek fiyat yönü netleşmeden önce stop loss'ların tetiklenmesine neden olabilir. Teknik analizde bu olgu yaygın olarak "likidite taraması" (liquid
Trend indicator AI mt5
Ramil Minniakhmetov
5 (15)
Trend Ai göstergesi, trend tanımlamasını işlem yapılabilir giriş noktaları ve geri dönüş uyarılarıyla birleştirerek bir yatırımcının piyasa analizini geliştirecek harika bir araçtır. Bu gösterge, kullanıcıların forex piyasasının karmaşıklıklarında güvenle ve hassasiyetle yol almalarını sağlar. Birincil sinyallerin ötesinde, Trend Ai göstergesi geri çekilmeler veya düzeltmeler sırasında ortaya çıkan ikincil giriş noktalarını belirleyerek, yatırımcıların belirlenen trend içindeki fiyat düzeltmele
Trend Forecaster
Alexey Minkov
5 (7)
The Trend Forecaster indicator utilizes a unique proprietary algorithm to determine entry points for a breakout trading strategy. The indicator identifies price clusters, analyzes price movement near levels, and provides a signal when the price breaks through a level. The Trend Forecaster indicator is suitable for all financial assets, including currencies (Forex), metals, stocks, indices, and cryptocurrencies. You can also adjust the indicator to work on any time frames, although it is recommen
Berma Bands
Muhammad Elbermawi
5 (8)
Berma Bantları (BB'ler) göstergesi, piyasa trendlerini belirlemeyi ve bunlardan yararlanmayı amaçlayan yatırımcılar için değerli bir araçtır. Fiyat ile BB'ler arasındaki ilişkiyi analiz ederek, yatırımcılar bir piyasanın trend veya aralıklı fazda olup olmadığını ayırt edebilir. Daha fazla bilgi edinmek için [ Berma Home Blog ] adresini ziyaret edin. Berma Bantları üç belirgin çizgiden oluşur: Üst Berma Bandı, Orta Berma Bandı ve Alt Berma Bandı. Bu çizgiler fiyatın etrafına çizilir ve genel tren
Gold Sniper Scalper Pro
Ich Khiem Nguyen
3.63 (8)
Gold Sniper Scalper Pro, trader'ların giriş noktalarını belirlemesine ve riski etkili bir şekilde yönetmesine destek olmak için tasarlanmış MetaTrader 5 için profesyonel bir göstergedir. Gösterge, sinyal tespit sistemi, otomatik Entry/SL/TP yönetimi, hacim analizi ve gerçek zamanlı performans istatistikleri içeren kapsamlı bir analiz araçları seti sunar. Sistemi anlamak için kullanım kılavuzu   |   Diğer diller için kullanım kılavuzu ANA ÖZELLİKLER Sinyal tespit sistemi Gösterge, price action a
Yazarın diğer ürünleri
Breakout Master EA
Menaka Sachin Thorat
5 (3)
"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
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
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
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
Ut Bot Indicator
Menaka Sachin Thorat
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
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
Certainly! A candlestick pattern EA is an Expert Advisor that automates the process of identifying specific candlestick patterns on a price chart and making trading decisions based on those patterns. Candlestick patterns are formed by one or more candles on a chart and are used by traders to analyze price movements and make trading decisions.  EA likely scans the price chart for predefined candlestick patterns such as the Hammer, Inverted Hammer, Three White Soldiers, and Evening Star. When it
FREE
Trendline Expert MT5
Menaka Sachin Thorat
4 (1)
Trendline EA – Semi & Fully Automatic Trading System Trendline EA is a professional Expert Advisor designed for trading trendlines, support & resistance levels, breakouts, and retests with complete automation or trader control. The EA supports Semi-Automatic and Fully Automatic modes : Semi-Auto: Manually draw trendlines — EA executes trades automatically Full-Auto: EA automatically draws trendlines and support/resistance levels and trades them Limited-Time Offer Launch Discount Price:
Master Breakout EA Description The Master Breakout EA is a fully automatic Expert Advisor that operates based on breakout strategies involving support and resistance lines or trendlines. The EA manages trades automatically after identifying and responding to breakout scenarios. Features: Trade Management: The EA offers the flexibility to specify the number of trades to open upon a breakout. Each trade is configured with stop loss and target options. An optional breakeven function helps secure p
Filtrele:
mura1975
54
mura1975 2026.02.24 05:20 
 

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

Benjamin Afedzie
3708
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
3071
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
401
7099266 2025.01.19 09:54 
 

Kullanıcı incelemeye herhangi bir yorum bırakmadı

Menaka Sachin Thorat
7778
Geliştiriciden yanıt 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!"
İncelemeye yanıt