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

리뷰 5
Benjamin Afedzie
3723
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!!!

추천 제품
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
VisualVol EURUSD
Maxim Kuznetsov
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
Vincent Jose Proenca
Volume Profile Density V2.40 가격 수준별 거래량 분포를 표시하여 기관 투자자의 관심 구간을 보여줍니다. 시간 기반 거래량과 달리, 실제 거래가 집중된 위치를 보여줍니다. 기본 원리: 수평 막대 = 가격별 거래량 막대가 길수록 거래량이 많음 빨간 구간 = 주요 지지 / 저항 구간 주요 사용 목적: 실제 지지선과 저항선 식별 POC (Point of Control) 확인 가치 영역 (총 거래량의 70%) 설정 낮은 거래량 구간을 손절 / 목표 지점으로 활용 색상 코드: 파란색 = 낮은 거래량 (빠른 이동 구간) 노란색 = 중간 거래량 (균형 구간) 빨간색 = 높은 거래량 (기관 매매 구간) 트레이딩 전략: 빨간 구간 반등 시 매수 VAH 또는 빨간 구간 저항 시 매도 거래량 동반 POC 돌파 시 진입 POC 회귀 시 재진입 파란 구간을 목표로 설정 설정: 초보자: 1.0 / 100% / 1.0 스캘핑: 0.5 / 200% / 0.5 스윙: 2.0 / 50% / 1
FREE
Haven Volume Profile
Maksim Tarutin
4.63 (8)
Haven Volume Profile은 거래량 분포를 기반으로 중요한 가격 수준을 식별하는 데 도움이 되는 다기능 볼륨 프로파일 분석 지표입니다. 시장을 더 잘 이해하고 중요한 진입 및 퇴장 지점을 식별하려는 전문 트레이더를 위해 설계되었습니다. 기타 제품 ->  여기 주요 기능: Point of Control (POC) 계산 - 최대 거래 활동 수준으로, 가장 유동성이 높은 수준을 식별하는 데 도움이 됩니다 Value Area 정의 (높은 활동 영역) 및 사용자 지정 가능한 거래량 비율로 거래 범위를 보다 정확하게 평가할 수 있습니다 틱 거래량과 실제 거래량 모두 지원, 다양한 시장 유형과 거래 전략에 적합 계산 기간(일 수)의 유연한 설정으로 모든 시간 프레임에 도구를 적용할 수 있습니다 터미널의 밝은 테마와 어두운 테마에 자동 적응하여 사용자 인터페이스의 시각적 경험을 향상시킵니다 레벨 시각화가 명확하고 스타일과 색상을 사용자 지정할 수 있어 빠른 의사 결정을 돕습니다 이 지표
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 MT5
Suvashish Halder
5 (2)
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
Aggression Wave RSJ
JETINVEST
4.83 (6)
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)
이 프로젝트를 좋아한다면 5 스타 리뷰를 남겨주세요. 이 지표는 열리고, 높은, 낮은 및 마감 가격을 지정합니다. 기간과 그것은 특정한 시간대를 위해 조정될 수 있습니다. 이들은 많은 기관 및 전문가에 의해 보는 중요한 수준입니다 상인은 당신이 더 많은 것일 수있는 장소를 알고 도움이 될 수 있습니다 이름 * 사용 가능한 기간: 이전 날. 이전 주. 지난 달. 이전 분기. 이전 연도. 또는: 현재 날. 현재 주. 현재 달. 현재 분기. 현재 년.
FREE
Donchian Breakout And Rsi
Mattia Impicciatore
5 (1)
개요 이 지표는 클래식 돈치안 채널(Donchian Channel) 의 향상된 버전으로, 실전 트레이딩을 위한 다양한 기능이 추가되었습니다. 표준 세 개의 선(상단, 하단, 중앙선) 외에도 브레이크아웃 을 감지하여 차트에 화살표로 시각적으로 표시하며, 차트를 깔끔하게 보기 위해 현재 추세 방향의 반대 라인만 표시 합니다. 지표 기능: 시각적 신호 : 브레이크아웃 시 컬러 화살표 표시 자동 알림 : 팝업, 푸시 알림, 이메일 RSI 필터 : 시장의 상대 강도를 기반으로 신호 검증 사용자 맞춤 설정 : 색상, 선 두께, 화살표 코드, RSI 임계값 등 동작 원리 돈치안 채널은 다음을 계산합니다: 상단선 : 최근 N개의 종가 완료 캔들에서 가장 높은 고가 하단선 : 최근 N개의 종가 완료 캔들에서 가장 낮은 저가 중앙선 : 고가와 저가의 평균값 상방 브레이크아웃 은 종가가 상단선을 돌파할 때 발생하며, 하방 브레이크아웃 은 종가가 하단선 아래로 내려갈 때 발생합니다. 이 지표는: 세 개의
FREE
MA Color Candles
Vladimir Kuzmin
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 Personnal Custom
Vincent Jose Proenca
VWAP_PC_MQL5 — a simple home-built VWAP indicator showing real-time volume-weighted price levels directly on your MT5 chart. TF: Works on all timeframes. Pair: Compatible with all symbols — Forex, indices, commodities, and stocks. Settings: Applied Price – price type used for VWAP calculation (Close, Typical, Weighted, etc.) Line Color / Width / Style – customize VWAP line appearance Session Reset – optional reset per day or continuous mode How it works (VWAP principle): VWAP (Volume Weighted
FREE
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
Aleksei Vorontsov
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
JETINVEST
4.38 (21)
피봇 포인트 Fibo RSJ는 피보나치 비율을 사용하여 당일의 지지선과 저항선을 추적하는 지표입니다. 이 멋진 지표는 피보나치 비율을 사용하여 피벗 포인트를 통해 최대 7단계의 지지와 저항을 생성합니다. 가격이 작업의 가능한 진입/종료 지점을 인식할 수 있는 이 지원 및 저항의 각 수준을 어떻게 존중하는지 환상적입니다. 특징 최대 7단계 지원 및 7단계 저항 레벨의 색상을 개별적으로 설정 입력 피벗 유형 피벗 피보 RSJ1 = 피보 비율 1 계산 피벗 피보 RSJ2 = 피보 비율 2 계산 피벗 Fibo RSJ3 = Fibo 비율 3 계산 피벗 피보 클래식 = 클래식 피벗 계산 최소 피벗 수준 피벗 3 레벨 피벗 4 레벨 피벗 5 레벨 6단계 피벗 피벗 7 레벨 여전히 질문이 있는 경우 다이렉트 메시지로 저에게 연락하십시오: https://www.mql5.com/ko/users/robsjunqueira/
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 차트에서 실시간 거래 틱 정보를 표시하는 지표입니다. 가격, 틱 거래량 및 시간을 시각적으로 보여주며, 사용자가 시장 미세 구조를 분석할 수 있도록 도와줍니다. 기능 설명 가격, 거래량 및 시간을 포함한 틱 데이터를 차트 내 패널에 실시간으로 표시합니다. 틱 데이터를 사용자가 지정한 시간 또는 수량 간격으로 그룹화하고, 상승 틱은 녹색, 하락 틱은 빨간색으로 구분하여 표시합니다. 패널은 차트의 네 모서리 중 원하는 위치로 자유롭게 이동할 수 있으며, 표시 크기와 글꼴도 사용자 설정이 가능합니다. 모든 통화쌍 및 상품에 대응하며 MetaTrader 5 플랫폼 내에서 안정적으로 작동합니다. 이 인디케이터는 스캘핑 및 틱 기반 전략을 사용하는 트레이더에게 유용합니다.
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
이 제품의 구매자들이 또한 구매함
ARICoins
Temirlan Kdyrkhan
ARICoin 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 Cust
SuperScalp Pro
Van Minh Nguyen
5 (8)
SuperScalp Pro – 고급 다중 필터 스캘핑 인디케이터 시스템 SuperScalp Pro는 클래식 Supertrend와 여러 지능형 확인 필터를 결합한 고급 스캘핑 인디케이터 시스템입니다. 해당 인디케이터는 M1부터 H4까지 모든 타임프레임에서 효율적으로 작동하며, 특히 XAUUSD, BTCUSD 및 주요 외환 통화쌍에 적합합니다. 독립형 시스템으로 사용하거나 기존 거래 전략에 유연하게 통합할 수 있습니다. 이 인디케이터는 11개 이상의 필터를 통합하며, 빠른/느린 EMA, 추세 판별용 3개의 EMA, EMA 기울기(EMA slope), RSI, ADX, 거래량(Volume), VWAP, 볼린저 밴드 돌파(Bollinger Bands Breakout) 및 MACD 다이버전스 필터 등을 포함합니다. 스마트 캔들 필터는 캔들 종가를 확인하여 약한 신호를 제거하고, 3 EMA와 MACD 다이버전스 필터를 결합한 추세 인식 메커니즘은 더 높은 승률의 신호를 선별하는 데 도움을 줍니
AriX
Temirlan Kdyrkhan
1 (4)
AriX Indicator for MT5 A powerful trend-following and signal-evaluation tool AriX 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 with real-time stat
이 지표를 구매하면 제 프로페셔널 트레이드 매니저를 무료로 드립니다. 우선 이 거래 시스템이 리페인팅, 리드로잉 및 레이그 인디케이터가 아니라는 점을 강조하는 것이 중요합니다. 이는 수동 및 로봇 거래 모두에 이상적인 것으로 만듭니다. 온라인 강좌, 설명서 및 프리셋 다운로드. "스마트 트렌드 트레이딩 시스템 MT5"은 새로운 및 경험이 풍부한 트레이더를 위해 맞춤형으로 제작된 종합적인 거래 솔루션입니다. 10개 이상의 프리미엄 인디케이터를 결합하고 7개 이상의 견고한 거래 전략을 특징으로 하여 다양한 시장 조건에 대한 다목적 선택이 가능합니다. 트렌드 추종 전략: 효과적인 트렌드 추이를 타기 위한 정확한 진입 및 손절 관리를 제공합니다. 반전 전략: 잠재적인 트렌드 반전을 식별하여 트레이더가 범위 시장을 활용할 수 있게 합니다. 스캘핑 전략: 빠르고 정확한 데이 트레이딩 및 단기 거래를 위해 설계되었습니다. 안정성: 모든 인디케이터가 리페인팅, 리드로잉 및 레이그가 아니므로 신뢰
Divergence Bomber
Ihor Otkydach
4.89 (83)
이 지표를 구매하신 분께는 다음과 같은 혜택이 무료로 제공됩니다: 각 거래를 자동으로 관리하고, 손절/익절 수준을 설정하며, 전략 규칙에 따라 거래를 종료하는 전용 도우미 툴 "Bomber Utility" 다양한 자산에 맞게 지표를 설정할 수 있는 셋업 파일(Set Files) "최소 위험", "균형 잡힌 위험", "관망 전략" 모드로 설정 가능한 Bomber Utility의 셋업 파일 이 전략을 빠르게 설치, 설정, 시작할 수 있도록 돕는 단계별 영상 매뉴얼 주의: 위의 모든 보너스를 받기 위해서는 MQL5 개인 메시지 시스템을 통해 판매자에게 연락해 주세요. 독창적인 커스텀 지표인 “Divergence Bomber(다이버전스 봄버)”를 소개합니다. 이 지표는 MACD 다이버전스(괴리) 전략을 기반으로 한 올인원(All-in-One) 거래 시스템입니다. 이 기술 지표의 주요 목적은 가격과 MACD 지표 간의 다이버전스를 감지하고, **향후 가격이 어느 방향으로 움직일지를 알려주는
FX Trend MT5 NG
Daniel Stein
5 (4)
FX Trend NG: 차세대 멀티 마켓 트렌드 인텔리전스 개요 FX Trend NG 는 다중 시간 프레임 기반의 전문 트렌드 분석 및 시장 모니터링 도구입니다. 몇 초 만에 전체 시장 구조를 파악할 수 있도록 설계되었습니다. 여러 차트를 일일이 전환할 필요 없이, 어떤 종목이 추세에 있는지, 어디에서 모멘텀이 약화되고 있는지, 그리고 어떤 시간 프레임이 서로 정렬되어 있는지 즉시 확인할 수 있습니다. 출시 기념 특별 혜택 – FX Trend NG 를 $30 (6개월) 또는 $80 평생 라이선스 로 이용할 수 있습니다. 이미 Stein Investments 고객이신가요? -> 메시지를 보내 전용 고객 그룹에 참여하세요. 설정이나 사용 방법이 필요하신가요? -> Stein Investments 공식 페이지 를 방문하세요. 1. FX Trend NG가 특별한 이유 3단계 추세 로직 – 단순한 Buy / Sell이 아닙니다 • 대부분의 지표는 Buy 또는 Sell 두 가지 상태만 제
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
Game Changer Indicator mt5
Vasiliy Strukov
4.8 (20)
Game Changer는 모든 금융 상품에 적용 가능한 혁신적인 추세 지표로, MetaTrader를 강력한 추세 분석 도구로 탈바꿈시켜 줍니다. 모든 시간대에서 작동하며 추세 식별, 잠재적 반전 신호 제공, 트레일링 스톱 기능, 그리고 신속한 시장 대응을 위한 실시간 알림 기능을 제공합니다. 숙련된 전문가든 이제 막 시작하는 초보자든, Game Changer는 추세의 역학을 명확하게 이해하고 자신감 있고 규율 있는 거래를 할 수 있도록 도와줍니다. 이 지표는 차트 재구성 기능을 지원합니다. 구매 후 즉시 연락 주시면 특별 보너스를 드립니다. Strong Support 및 Trend Scanner 지표를 무료로 제공해 드립니다. [email protected]으로 메시지를 보내주세요. 참고로, 저는 텔레그램에서 EA나 특별 세트를 판매하지 않습니다. 모든 EA는 MQL5에서만 사용 가능하며, 세트 파일은 제 블로그(여기)에서만 다운로드하실 수 있습니다. 사기꾼을 조심하시고 다른 사
RFI levels PRO MT5
Roman Podpora
3.67 (3)
이 지표는 추세 반전 지점과 가격 반등 영역을 정확하게 보여줍니다.       주요 투자자들   . 새로운 트렌드가 형성되는 곳을 파악하고 최대한 정확하게 의사결정을 내리며 모든 거래를 완벽하게 통제합니다. TREND LINES PRO   지표와 함께 사용할 때 최대의 잠재력을 발휘합니다.  VERSION MT4 지표가 보여주는 내용: 새로운 추세의 시작 시 활성화되는 반전 구조 및 반전 수준. 최소한의 위험 대비 수익률을 갖는 이익 실현   (TAKE PROFIT)   및   손절매(STOP LOSS)   레벨 표시       RR 1:2   . 지능형 손실 감소 로직이 적용된 손절매 기능. 지정된 지표에서 두 가지 추세 유형에 대한 반전 패턴을 표시합니다. 지표: 트렌드를 따라   트렌드 라인 프로   (글로벌 트렌드 변화) 트렌드 프로   (빠른 트렌드 변화) 간단하고 효과적입니다       스캐너       실시간 추세 (신규). 다중 시간 프레임 도구 필터링. 표시하다  
Gold Entry Sniper
Tahir Mehmood
5 (5)
Gold Entry Sniper – 골드 스캘핑 & 스윙 트레이딩을 위한 전문 다중 시간 프레임 ATR 대시보드 Gold Entry Sniper 는 XAUUSD 및 기타 종목에 대해 정확한 매수/매도 신호 를 제공하는 고급 MetaTrader 5 지표입니다. ATR 트레일링 스톱 로직 과 다중 시간 프레임 분석 을 기반으로 설계되어 스캘핑과 스윙 트레이딩 모두에 적합합니다. 주요 기능 및 장점 다중 시간 프레임 분석 – M1, M5, M15 추세를 한눈에 확인. ATR 기반 트레일링 스톱 – 변동성에 따라 자동 조정. 전문 차트 대시보드 – 신호 상태, ATR 레벨, 회귀선, 매매 방향 표시. 명확한 매수/매도 마커 – 자동 화살표와 텍스트 라벨. 종료 알림 & 거래 관리 – 수익 보호를 위한 자동 종료 감지. 완전 사용자 설정 가능 – 대시보드 위치, 색상, ATR/회귀선 파라미터 조정. 골드(XAUUSD) 최적화 – M1~M15 스캘핑에 완벽, 외환/지수/암호화폐에도 적용 가능.
Power Candles MT5
Daniel Stein
5 (6)
Power Candles – 모든 시장을 위한 강도 기반 진입 신호 Power Candles 는 Stein Investments의 검증된 강도 분석을 가격 차트에 직접 제공합니다. 가격 움직임에만 반응하는 대신, 각 캔들은 실제 시장 강도를 기준으로 색상화되어 모멘텀 형성, 강도 가속, 명확한 추세 전환을 즉시 파악할 수 있습니다. 모든 시장을 위한 단일 로직 Power Candles는 모든 거래 심볼 에서 자동으로 작동합니다. 현재 심볼이 Forex인지 비-Forex 시장인지 자동으로 감지하여 내부적으로 적절한 강도 모델을 적용합니다. Forex 및 Gold 는 FX Power Delta 값을 사용합니다 (절대값 범위 최대 100) 지수, 크립토 및 CFD 는 IX Power Strength 값을 사용합니다 (절대값 범위 최대 50) 필요한 강도 계산은 Power Candles에 완전히 내장되어 있습니다. 캔들 색상이나 신호 로직을 위해 추가 인디케이터는 필요하지 않습니다. 가격
FX Power MT5 NG
Daniel Stein
5 (31)
FX Power: 통화 강세 분석으로 더 스마트한 거래 결정을 개요 FX Power 는 어떤 시장 상황에서도 주요 통화와 금의 실제 강세를 이해하기 위한 필수 도구입니다. 강한 통화를 매수하고 약한 통화를 매도함으로써 FX Power 는 거래 결정을 단순화하고 높은 확률의 기회를 발견합니다. 트렌드를 따르거나 극단적인 델타 값을 사용해 반전을 예측하고자 한다면, 이 도구는 귀하의 거래 스타일에 완벽히 적응합니다. 단순히 거래하지 말고, FX Power 로 더 스마트하게 거래하세요. 1. FX Power가 거래자에게 매우 유용한 이유 통화와 금의 실시간 강세 분석 • FX Power 는 주요 통화와 금의 상대적 강세를 계산하고 표시하여 시장 역학에 대한 명확한 통찰력을 제공합니다. • 어떤 자산이 앞서고 있고 어떤 자산이 뒤처지는지 모니터링하여 보다 현명한 거래 결정을 내릴 수 있습니다. 포괄적인 멀티 타임프레임 뷰 • 단기, 중기 및 장기 타임프레임에서 통화와 금의 강세를
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 Lines PRO MT5
Roman Podpora
5 (1)
트렌드 라인즈 프로       이 지표는 시장이 실제로 어떤 방향으로 전환되는지 파악하는 데 도움이 됩니다. 실제 추세 반전 지점과 주요 시장 참여자들이 다시 진입하는 지점을 보여줍니다. 보시다시피       BOS 라인       복잡한 설정이나 불필요한 노이즈 없이 더 높은 시간대의 추세 변화와 주요 레벨을 확인할 수 있습니다. 신호는 차트에 다시 그려지지 않고 캔들이 마감된 후에도 계속 표시됩니다. MT4 버전   -   RFI LEVELS PRO   표시기   와 결합 시 최대 잠재력을 발휘합니다. 지표가 보여주는 내용: 실제 변화       추세(BOS 라인) 한 번 신호가 나타나면 그 신호는 계속 유효합니다! 이는 신호를 발생시킨 후 변경될 수 있는 리페인팅 방식의 지표와 중요한 차이점입니다. 리페인팅 방식의 지표는 잠재적으로 자금 손실로 이어질 수 있습니다. 이제 더욱 높은 확률과 정확도로 시장에 진입할 수 있습니다. 또한 화살표가 나타난 후 목표가(익절)에 도달하거나
Smart Stop Indicator – 차트 위에서 직접 작동하는 지능형 스톱로스 시스템 개요 Smart Stop Indicator는 감이나 추측이 아닌 명확하고 체계적인 방식으로 스톱로스를 설정하고 싶은 트레이더를 위한 맞춤형 솔루션입니다. 이 도구는 클래식 프라이스 액션 논리(고점, 저점 구조)와 현대적인 브레이크아웃 인식을 결합하여 실제로 가장 논리적인 다음 스톱 레벨을 정확히 식별합니다. 추세, 박스권, 빠른 브레이크아웃 상황 등 어떤 시장에서도 인디케이터는 최적의 SL 구역과 상태(“new”, “broken”, “valid”)를 차트에 직접 표시합니다. 새로운 기능으로 SL 거리의 %ADR 표시가 추가되었습니다. 핵심 기능 자동 시장구조 기반 스톱 설정 • 시장 구조와 실시간 가격 움직임을 기반으로 의미 있는 스톱로스 레벨을 자동으로 탐지합니다. 스마트 브레이크아웃 감지 • 빠른 방향 변화나 돌파 상황에서도 불필요한 조기 스톱 조정을 강요하지 않으며 유연하게 반응합
Atomic Analyst MT5
Issam Kassas
4.1 (29)
우선적으로 언급할 점은이 거래 지표가 다시 그리지 않고 지연되지 않으며 이를 통해 수동 및 로봇 거래 모두에 이상적이라는 점입니다. 사용자 매뉴얼: 설정, 입력 및 전략. Atomic Analyst는 가격의 강도와 모멘텀을 활용하여 시장에서 더 나은 이점을 찾는 PA Price Action Indicator입니다. 고급 필터를 장착하여 잡음과 거짓 신호를 제거하고 거래 잠재력을 높이는 데 도움이 됩니다. 복잡한 지표의 다중 레이어를 사용하여 Atomic Analyst는 차트를 스캔하고 복잡한 수학적 계산을 간단한 신호와 색상으로 변환하여 초보 트레이더가 이해하고 일관된 거래 결정을 내릴 수 있도록합니다. "Atomic Analyst"는 새로운 및 경험이 풍부한 트레이더를위한 종합적인 거래 솔루션입니다. 프리미엄 지표와 최고 수준의 기능을 하나의 거래 전략에 결합하여 모든 종류의 트레이더에 대한 다재다능한 선택지가되었습니다. 인트라데이 거래 및 스캘핑 전략 : 빠르고 정확한 일일
Trend Screener Pro MT5
STE S.S.COMPANY
4.84 (101)
트렌드 표시기, 트렌드 트레이딩 및 필터링을 위한 획기적인 고유 솔루션, 하나의 도구 안에 내장된 모든 중요한 트렌드 기능! Forex, 상품, 암호 화폐, 지수 및 주식과 같은 모든 기호/도구에 사용할 수 있는 100% 다시 칠하지 않는 다중 시간 프레임 및 다중 통화 표시기입니다. Trend Screener는 차트에 점이 있는 화살표 추세 신호를 제공하는 효율적인 지표 추세 추종 지표입니다. 추세 분석기 표시기에서 사용할 수 있는 기능: 1. 트렌드 스캐너. 2. 최대 이익 분석이 있는 추세선. 3. 추세 통화 강도 측정기. 4. 경고가 있는 추세 반전 점. 5. 경고가 있는 강력한 추세 점. 6. 추세 화살표 Trend Screener Indicator가 있는 일일 분석 예, 일일 신호 성능...등은 여기에서 찾을 수 있습니다. 여기를 클릭하십시오. LIMITED TIME OFFER : Trend Screener Indicator는 50$ 및 평생 동안만 사용할 수 있습니다.
Quantum TrendPulse
Bogdan Ion Puscasu
5 (20)
SuperTrend   ,   RSI   ,   Stochastic   의 힘을 하나의 포괄적인 지표로 결합하여 트레이딩 잠재력을 극대화하는 궁극의 트레이딩 도구   인 Quantum TrendPulse를   소개합니다. 정밀성과 효율성을 추구하는 트레이더를 위해 설계된 이 지표는 시장 추세, 모멘텀 변화, 최적의 진입 및 종료 지점을 자신 있게 식별하는 데 도움이 됩니다. 주요 특징: SuperTrend 통합:   주요 시장 추세를 쉽게 따라가고 수익성의 물결을 타세요. RSI 정밀도:   매수 과다 및 매도 과다 수준을 감지하여 시장 반전 시점을 파악하는 데 적합하며 SuperTrend 필터로 사용 가능 확률적 정확도:   변동성이 큰 시장에서 숨겨진 기회를 찾기 위해 확률적 진동   을 활용하고 SuperTrend의 필터로 사용 다중 시간대 분석:   M5부터 H1 또는 H4까지 다양한 시간대에 걸쳐 시장을 최신 상태로 유지하세요. 맞춤형 알림:   맞춤형 거래 조건이 충족되면
FX Levels MT5
Daniel Stein
5 (13)
FX Levels: 모든 시장을 위한 뛰어난 정확도의 지지와 저항 간단 요약 통화쌍, 지수, 주식, 원자재 등 어떤 시장이든 믿을 만한 지지·저항 레벨을 찾고 싶나요? FX Levels 는 전통적인 “Lighthouse” 기법과 첨단 동적 접근을 결합해, 거의 보편적인 정확성을 제공합니다. 실제 브로커 경험을 반영하고, 자동화된 일별 업데이트와 실시간 업데이트를 결합함으로써 FX Levels 는 가격 반전 포인트를 파악하고, 수익 목표를 설정하며, 자신 있게 트레이드를 관리할 수 있게 돕습니다. 지금 바로 시도해 보세요—정교한 지지/저항 분석이 어떻게 여러분의 트레이딩을 한 단계 끌어올릴 수 있는지 직접 확인하세요! 1. FX Levels가 트레이더에게 매우 유용한 이유 뛰어난 정확도의 지지·저항 존 • FX Levels 는 다양한 브로커 환경에서도 거의 동일한 존을 생성하도록 설계되어, 데이터 피드나 시간 설정 차이로 인한 불일치를 해소합니다. • 즉, 어떤 브로커를 사용하
Trend indicator AI mt5
Ramil Minniakhmetov
5 (15)
트렌드 인공 지능 지표는 실행 가능한 진입 점 및 반전 경고와 추세 식별을 결합하여 상인의 시장 분석을 향상시킬 훌륭한 도구입니다. 이 표시기는 사용자가 자신감과 정밀도로 외환 시장의 복잡성을 탐색 할 수 있도록 지원합니다 기본 신호 외에도 트렌드 인공 지능 지표는 풀백 또는 되돌림 중에 발생하는 2 차 진입 점을 식별하여 거래자가 기존 트렌드 내에서 가격 수정을 활용할 수 있도록합니다. 중요한 장점: ·작동 4 및 5 *명확한 구매 또는 판매 신호 *다시 칠하지 않습니다 *모든 자산에서 작동 나는 전보 사기에 개 또는 세트를 판매하지 않도록주의. 모든 설정은 블로그에 여기에 무료.  중요! 지침 및 보너스를 얻기 위해 구입 후 즉시 저에게 연락! 진짜 가동 감시는 뿐 아니라 나의 다른 제품 여기에서 찾아낼 수 있습니다: https://www.mql5.com/en/users/mechanic/seller&nbsp ; 설정 및 입력: 모든 자산에 대해 기본 설정을 권
Grabber System MT5
Ihor Otkydach
4.82 (22)
탁월한 기술적 지표인 Grabber를 소개합니다. 이 도구는 즉시 사용 가능한 “올인원(All-Inclusive)” 트레이딩 전략으로 작동합니다. 하나의 코드 안에 강력한 시장 기술 분석 도구, 매매 신호(화살표), 알림 기능, 푸시 알림이 통합되어 있습니다. 이 인디케이터를 구매하신 모든 분들께는 다음의 항목이 무료로 제공됩니다: Grabber 유틸리티: 오픈 포지션을 자동으로 관리하는 도구 단계별 영상 매뉴얼: 설치, 설정, 그리고 실제 거래 방법을 안내 맞춤형 세트 파일: 인디케이터를 빠르게 자동 설정하여 최고의 성과를 낼 수 있도록 도와줍니다 다른 전략은 이제 잊어버리세요! Grabber만이 여러분을 새로운 트레이딩의 정점으로 이끌어 줄 수 있습니다. Grabber 전략의 주요 특징: 거래 시간 프레임: M5부터 H4까지 거래 가능한 자산: 어떤 자산이든 사용 가능하지만, 제가 직접 테스트한 종목들을 추천드립니다 (GBPUSD, GBPCAD, GBPCHF, AUDCAD, AU
RelicusRoad Pro MT5
Relicus LLC
5 (24)
RelicusRoad Pro: 퀀트 시장 운영 체제 70% 할인 평생 이용권 (한정 시간) - 2,000명 이상의 트레이더와 함께하세요 왜 대부분의 트레이더는 "완벽한" 지표를 가지고도 실패할까요? 진공 상태에서 단일 개념 만으로 거래하기 때문입니다. 문맥 없는 신호는 도박입니다. 지속적인 승리를 위해서는 컨플루언스(중첩) 가 필요합니다. RelicusRoad Pro는 단순한 화살표 지표가 아닙니다. 완전한 퀀트 시장 생태계 입니다. 독점적인 변동성 모델링을 사용하여 가격이 이동하는 "공정 가치 로드"를 매핑하고, 단순 노이즈와 실제 구조적 돌파를 구분합니다. 추측은 그만두세요. 기관급 로드 로직으로 거래를 시작하세요. 핵심 엔진: "Road" 알고리즘 시스템의 중심에는 시장 상황에 실시간으로 적응하는 동적 변동성 채널인 Road Algo 가 있습니다. 세이프 라인(평형) 과 가격이 수학적으로 반전될 가능성이 높은 확장 레벨 을 투영합니다. Simple Road: 일반적인 시장을 위
Entry Points Pro for MT5
Yury Orlov
4.48 (138)
다시 색을 칠하지 않고 거래에 진입할 수 있는 정확한 신호를 제공하는 MT5용 지표입니다. 외환, 암호화폐, 금속, 주식, 지수 등 모든 금융 자산에 적용할 수 있습니다. 매우 정확한 추정값을 제공하고 매수와 매도의 가장 좋은 시점을 알려줍니다. 하나의 시그널로 수익을 내는 지표의 예와 함께 비디오 (6:22)시청하십시오! 대부분의 거래자는 Entry Points Pro 지표의 도움으로 첫 거래 주 동안 트레이딩 결과를 개선합니다. 저희의   Telegram Group 을 구독하세요! Entry Points Pro 지표의 좋은점. 재도색이 없는 진입 신호 신호가 나타나고 확인되면(시그널 캔들이 완성된 경우) 신호는 더 이상 사라지지 않습니다. 여타 보조지표의 경우 신호를 표시한 다음 제거되기 때문에 큰 재정적 손실로 이어집니다. 오류 없는 거래 게시 알고리즘을 통해 트레이드(진입 또는 청산)를 할 이상적인 순간을 찾을 수 있으며, 이를 통해 이를 사용하는 모든 거래자의 성공률이
IX Power MT5
Daniel Stein
4.92 (13)
IX Power: 지수, 원자재, 암호화폐 및 외환 시장 통찰력을 발견하세요 개요 IX Power 는 지수, 원자재, 암호화폐 및 외환 시장의 강도를 분석할 수 있는 다목적 도구입니다. FX Power 는 모든 가용 통화 쌍 데이터를 사용하여 외환 쌍에 대해 가장 높은 정확도를 제공하는 반면, IX Power 는 기초 자산 시장 데이터에만 초점을 맞춥니다. 이로 인해 IX Power 는 비외환 시장에 이상적이며, 다중 쌍 분석이 필요하지 않은 간단한 외환 분석에도 신뢰할 수 있는 도구입니다. 모든 차트에서 매끄럽게 작동하며, 거래 결정을 향상시키기 위한 명확하고 실행 가능한 통찰력을 제공합니다. 1. IX Power가 트레이더에게 유용한 이유 다양한 시장 강도 분석 • IX Power 는 지수, 원자재, 암호화폐 및 외환 심볼의 강도를 계산하여 각 시장에 맞는 통찰력을 제공합니다. • US30, WTI, 금, 비트코인 또는 통화 쌍과 같은 자산을 모니터링하여 거래 기회를 발견
FX Dynamic MT5
Daniel Stein
5 (5)
FX Dynamic: 맞춤형 ATR 분석으로 변동성과 트렌드를 파악하세요 개요 FX Dynamic 는 Average True Range(ATR) 계산을 활용하여 트레이더에게 일간 및 일중 변동성에 대한 뛰어난 인사이트를 제공하는 강력한 도구입니다. 80%, 100%, 130%와 같은 명확한 변동성 임계값을 설정함으로써 시장이 평소 범위를 초과할 때 빠르게 경고를 받고, 유망한 수익 기회를 재빨리 식별할 수 있습니다. FX Dynamic 는 브로커의 시간대를 인식하거나 수동으로 조정할 수 있으며, 변동성 측정 기준을 일관되게 유지하며, MetaTrader 플랫폼과 완벽하게 연동되어 실시간 분석을 지원합니다. 1. FX Dynamic이 트레이더에게 매우 유용한 이유 실시간 ATR 인사이트 • 하루 및 일중 변동성을 한눈에 모니터링하세요. ATR의 80%, 100%, 130% 임계값이 도달 또는 초과되면, 시장의 중요한 지점에 있음을 알 수 있습니다. • 변동성이 완전히 폭발하기
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
Candle Smart Range
Gianny Alexander Lugo Sanchez
MetaTrader 5용 Candle Smart Range (CSR) Candle Smart Range는 여러 타임프레임에서 가격 범위를 자동으로 식별하도록 설계된 기술 지표입니다. 이 도구는 캔들 형성 및 이전 고점/저점과의 상호작용을 바탕으로 시장 구조를 분석합니다. 주요 기능: 범위 감지: 급격한 변동 전의 횡보 구간을 자동으로 식별합니다. 거짓 돌파 식별: 가격이 이전 수준을 넘어섰으나 캔들 종가 기준으로 범위 내에서 마감된 경우를 표시합니다. 멀티 타임프레임 분석: 사용자 정의 주기를 포함하여 최대 19개의 타임프레임 데이터를 한 차트에 표시합니다. 내부 시각화 (줌): 차트 변경 없이 상위 타임프레임 캔들 내부의 가격 움직임을 확인할 수 있습니다. 시간 필터: 주요 시장 세션 등 특정 시간대에만 작동하도록 설정 가능합니다. 과거 데이터 복기 모드: 과거 데이터를 단계별로 탐색하며 지표의 작동을 분석할 수 있습니다. 알림 시스템: 캔들 마감 및 새로운 범위 감지에 대한 사용
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
Mirage Trading System — False Breakout Reversal Indicator for MT5 False breakouts occur when price moves beyond a key level and then reverses back inside. The Mirage Trading System scans for this formation — the Fakey pattern — and identifies the point where the breakout fails and price returns to the prior range. Every detected pattern is evaluated by a 17-factor quality scoring system and classified through a 4-layer Signal Engine before it appears on the chart. USER MANUAL ,  Elite Trading S
" Dynamic Scalper System MT5 " 지표는 추세 파동 내에서 스캘핑 방식으로 거래하도록 설계되었습니다. 주요 통화쌍 및 금에서 테스트되었으며, 다른 거래 상품과의 호환성이 가능합니다. 추가적인 가격 변동 지원을 통해 추세에 따라 단기 포지션 진입 신호를 제공합니다. 지표의 원리 큰 화살표는 추세 방향을 결정합니다. 작은 화살표 형태의 스캘핑 신호를 생성하는 알고리즘은 추세 파동 내에서 작동합니다. 빨간색 화살표는 상승 방향을, 파란색 화살표는 하락 방향을 나타냅니다. 민감한 가격 변동선은 추세 방향으로 그려지며, 작은 화살표의 신호와 함께 작용합니다. 신호는 다음과 같이 작동합니다. 적절한 시점에 선이 나타나면 진입 신호가 형성되고, 선이 있는 동안 미결제 포지션을 유지하며, 완료되면 거래를 종료합니다. 권장되는 작업 시간대는 M1~H4입니다. 화살표는 현재 캔들에 형성되며, 다음 캔들이 이미 시작되었더라도 이전 캔들의 화살표는 다시 그려지지 않습니다. 입
제작자의 제품 더 보기
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
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
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 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
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
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
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
필터:
mura1975
54
mura1975 2026.02.24 05:20 
 

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

Benjamin Afedzie
3723
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 
 

사용자가 평가에 대한 코멘트를 남기지 않았습니다

Menaka Sachin Thorat
7827
개발자의 답변 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!"
리뷰 답변