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


리뷰 1
sid07198
24
sid07198 2026.05.11 00:10 
 

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

추천 제품
Session High Low
Jerome Asiusin
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.27 (59)
이 정보 표시기는 계정의 현재 상황을 항상 알고 싶어하는 사람들에게 유용합니다. 표시기는 포인트, 백분율, 통화 단위의 이익뿐만 아니라 현재 쌍의 스프레드와 현재 기간에서 막대가 마감될 때까지의 시간과 같은 데이터를 표시합니다. 버전 MT5 -   더욱 유용한 지표 차트에 정보선을 배치하는 데는 여러 가지 옵션이 있습니다. 가격 오른쪽(가격보다 뒤에 있음) 코멘트로(차트의 왼쪽 상단에 있음) 화면의 선택된 모서리에 있습니다. 정보 구분 기호를 선택할 수도 있습니다. | / . \ # 표시기에는 다음과 같은 단축키가 내장되어 있습니다. 키 1 - 정보 표시 유형으로 뒤로 이동(가격, 설명 또는 코너 오른쪽) 키 2 - 정보 표시 유형에서 앞으로 나아갑니다. 키 3 - 정보 라인 표시 위치 변경 단축키는 설정에서 다시 할당할 수 있습니다. 이 표시기는 사용하기 쉽고 매우 유익합니다. 설정에서 불필요한 정보 항목을 비활성화할 수 있습니다. 설정 표시된 정보를 교체하기 위한 단축키(뒤로
FREE
Forex Market Profile and Vwap
Lorentzos Roussos
4.86 (7)
외환 시장 프로필(줄여서 FMP) 이것이 아닌 것 : FMP는 일반적인 문자 코드 TPO 표시가 아니며 전체 차트 데이터 프로필 계산을 표시하지 않으며 차트를 기간으로 분할하여 계산하지도 않습니다. 그것이 하는 일: 가장 중요한 것은 FMP 표시기가 사용자 정의 스펙트럼의 왼쪽 가장자리와 사용자 정의 스펙트럼의 오른쪽 가장자리 사이에 있는 데이터를 처리한다는 것입니다. 사용자는 마우스로 표시기의 양쪽 끝을 당기기만 하면 스펙트럼을 정의할 수 있습니다. 표시기 오른쪽 가장자리가 라이브 막대로 당겨지고 더 멀리(미래로) 표시되면 표시기가 "라이브"로 간주됩니다(새 막대로 업데이트됨). 표시기는 첨부된 차트에 "앵커" 개체를 놓은 다음 해당 앵커를 하드 드라이브의 파일과 연결합니다. 이렇게 하면 차트 또는 지표가 닫힐 때까지 다시 시작해도 설정이 유지되어 차트에서 계속 FMP를 실행할 수 있습니다. FMP 지표는 하나의 차트에서 여러 인스턴스를 실행할 수 있으며 이름을 지정할 수
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
Shadow Flare 인디케이터는 MetaTrader 4용 비리페인트형 추세 & 유동성 도구 입니다. 설정 가능한 이동평균 베이스라인(HMA, EMA, SMA 또는 RMA)을 계산하고, 그 주변에 평균진폭범위(ATR) 기반 밴드를 씌워 가격이 상단 또는 하단 밴드를 종가 기준으로 돌파할 때에만 방향이 전환되는 “점착형(Sticky)” 추세 상태를 생성합니다. 동일한 추세 엔진은 피벗 고점·저점을 감지하여 그 주위에 색상 박스를 그린 뒤, 가격이 종가 기준으로 해당 박스를 돌파하는 순간 자동으로 존을 소거(미티게이션)하는 공급/수요 존 모듈도 구동합니다. 매수·매도 신호는 추세 상태가 전환되는 시점에 발생하며, 선택적인 거래량 및 RSI 필터를 통해 약한 신호나 모멘텀에 역행하는 진입을 차단할 수 있습니다. 내장 대시보드는 실시간으로 Trend Bias(추세 바이어스), Momentum(RSI 기반), Volume(거래량)을 보여 줍니다. 팝업, 사운드, 모바일 푸시, 이메일로 구성
FREE
QualifiedEngulfing
Ashkan Hazegh Nikrou
QualifiedEngulfing - ProEngulfing 지표의 무료 버전입니다. ProEngulfing - Advance Engulf 지표의 유료 버전으로, 여기에서 다운로드할 수 있습니다. ProEngulfing 의 무료 버전과 유료 버전의 차이점은 무엇인가요? 무료 버전은 하루에 하나의 신호로 제한되어 있습니다. QualifiedEngulfing을 소개합니다 - MT4용 전문 Engulf 패턴 지표 QualifiedEngulfing을 사용하여 외환 시장에서 자격을 갖춘 Engulf 패턴을 식별하고 강조하는 혁신적인 지표로 정밀력의 힘을 발휘하세요. MetaTrader 4용으로 개발된 QualifiedEngulfing은 Engulf 패턴을 정확하게 인식하고 강조하기 위한 첨단 접근법을 제공하여 거래 결정에 대해 가장 신뢰할 수 있는 신호만을 제공합니다. QualifiedEngulfing 작동 방식: QualifiedEngulfing은 Engulf 패턴을 분석하기 위한 정교한
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
New Bar Alarm Free
Tomoyuki Nakazima
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
Super Auto Fibonacci
Muhammed Emin Ugur
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
SuperTrend MT4
KEENBASE SOFTWARE SOLUTIONS
KT SuperTrend is a modified version of the classic SuperTrend indicator with new useful features. Whether its Equities, Futures, and Forex, the beginners' traders widely use the Supertrend indicator.  Buy Signal: When price close above the supertrend line. Sell Signal: When price close below the supertrend line. Features A multi-featured SuperTrend coded from scratch. Equipped with a multi-timeframe scanner. The last signal direction and entry price showed on the chart. All kinds of MetaTrader
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
피봇 포인트 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
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
Ahmad Kazbar
4.8 (5)
Smart FVG 인디케이터 MT4 – MetaTrader 4를 위한 고급 Fair Value Gap 탐지 Smart FVG 인디케이터 MT4는 MetaTrader 4 차트에서 Fair Value Gap(FVG)을 전문적으로 탐지하고, 모니터링하며, 알림까지 제공하는 도구입니다. ATR 기반 필터링과 시장 구조를 인식하는 로직을 결합하여 노이즈를 줄이고, 유동성 환경에 맞게 자동으로 적응하며, 매매 의사결정에 중요한 불균형 구간만 남겨 줍니다. 주요 장점 정확한 FVG 탐지: 단순한 캔들 갭이 아닌 실제 시장 비효율 구간을 식별합니다. ATR 기반 정밀도: 다양한 상품과 시간 프레임에서 저품질 신호를 걸러내는 적응형 민감도. 실시간 유효성 추적: 가격이 해당 구간을 메우거나 돌파하면 존이 자동으로 연장·조정·삭제됩니다. 사용자 정의 가능한 시각화: 색상, 선 스타일, 채우기 옵션을 템플릿에 맞게 자유롭게 설정 가능. 실질적인 알림: 새로 생성된 FVG, 메워진 FVG, 무효화된
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
After purchasing the Tpx Dash Supply Demand indicator, you must download this indicator which will link and feed market data to the Tpx Dash Supply Demand indicator and will provide all Supply Demand price signals, ATR Stop, VAH and VAL, trend values ​​with the ADX, and POC prices and locations in the market. Just download it and Dash will locate the indicator to retrieve the information!
FREE
Pip Counter MT4
KEENBASE SOFTWARE SOLUTIONS
KT Pip Counter 는 실시간으로 핵심 데이터를 표시해 주는 간단하면서도 유용한 지표입니다. 수익·손실, 스프레드, 잔여 시간 같은 정보를 한눈에 파악할 수 있어, 급변하는 장세에서도 침착하게 대응하고 의사결정 속도를 높일 수 있습니다. 특징 현재 손익을 통화, 핍, 퍼센트로 동시에 표시. 실시간 스프레드를 표시.  현재 캔들이 마감될 때까지 남은 시간을 알려줌. 손익 상황에 따라 색상을 자동 변경. 텍스트 위치와 레이아웃을 자유롭게 설정 가능.  CPU 사용량이 매우 낮아 플랫폼이 느려지지 않음. 입력값 Account P&L:   true이면 계좌 전체 손익, false이면 현재 종목 손익만 표시. 색상 및 글꼴 크기 설정. Show After Current Bar: true이면 캔들 종료 후 정보 표시, 아니면 차트 구석에 고정. 나머지 입력값은 직관적으로 이해 가능.
FREE
Free automatic fibonacci
Tonny Obare
4.68 (50)
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
4.83 (6)
주요 목적:"핀 바"는 금융 시장 차트에서 핀 바를 자동으로 감지하도록 설계되었습니다. 핀 바는 특징적인 몸체와 긴 꼬리를 가진 촛불로,추세 반전 또는 교정을 신호 할 수 있습니다. 작동 원리:표시기는 차트의 각 촛불을 분석하여 촛불의 몸,꼬리 및 코의 크기를 결정합니다. 미리 정의 된 매개 변수에 해당하는 핀 막대가 감지되면 표시기는 핀 막대의 방향(강세 또는 약세)에 따라 위 또는 아래 화살표로 차트에 표시합니다. 매개 변수: 꼬리의 길이와 핀 바의 몸체 크기 사이의 최소 비율을 정의합니다. "코"와 핀 바의 꼬리 사이의 최대 허용 비율을 설정합니다. 화살표 크기-표시된 핀 막대와 차트에서 핀 막대를 가리키는 화살표 사이의 거리를 정의합니다. 신청:"핀 바"표시기는 잠재적 인 추세 반전 지점을 식별하고 시장 또는 가까운 위치에 진입하기 위해 신호를 생성하는 데 사용할 수 있습니다. 올바르게 사용하고 다른 기술 지표 및 분석 방법과 결합하면이 지표는 거래 결과를 향상시킬 수
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
WH Price Wave Pattern MT4
Wissam Hussein
4.4 (5)
Welcome to our   Price Wave Pattern   MT4 --(ABCD Pattern)-- The ABCD pattern is a powerful and widely used trading pattern in the world of technical analysis. It is a harmonic price pattern that traders use to identify potential buy and sell opportunities in the market. With the ABCD pattern, traders can anticipate potential price movements and make informed decisions on when to enter and exit trades. Send me a  Message and Get A Free Gift : ABCD  Symbol Scanner Dashboard! EA Version : Price
FREE
이 제품의 구매자들이 또한 구매함
Gann Made Easy
Oleg Rodin
4.84 (168)
Gann Made Easy 는 mr.의 이론을 사용하여 최고의 거래 원칙을 기반으로 하는 전문적이고 사용하기 쉬운 Forex 거래 시스템입니다. W.D. 간. 이 표시기는 Stop Loss 및 Take Profit Levels를 포함하여 정확한 BUY 및 SELL 신호를 제공합니다. PUSH 알림을 사용하여 이동 중에도 거래할 수 있습니다. 구매 후 거래 방법 안내 및 유용한 추가 지표를 무료로 받으시려면 저에게 연락주세요! 아마도 Gann 거래 방법에 대해 이미 여러 번 들었을 것입니다. 일반적으로 Gann의 이론은 초보자 거래자뿐만 아니라 이미 거래 경험이 있는 사람들에게도 매우 복잡한 것입니다. Gann의 거래 방식은 이론적으로 적용하기 쉽지 않기 때문입니다. 나는 그 지식을 연마하고 Forex 지표에 최고의 원칙을 적용하기 위해 몇 년을 보냈습니다. 표시기는 적용하기가 매우 쉽습니다. 차트에 첨부하고 간단한 거래 권장 사항을 따르기만 하면 됩니다. 지표는 지속적으로 시장 분석
Prop Firm Sniper
Mohamed Hassan
5 (5)
Prop Firm Sniper MT4  is a professional market structure indicator that automatically identifies high-probability BUY and SELL opportunities using BOS and CHoCH analysis. Recommended Timeframes: For backtesting, use the indicator on   M5 or M15   for Gold (XAUUSD), and   M15 or H1   for more volatile Forex pairs such as   GBPUSD, USDJPY, EURGBP , and similar markets. CONTACT ME AFTER PURCHASE TO CLAIM YOUR FREE BONUSES! Prop Firm Sniper  is a professional market structure indicator designed t
Super Signal – Skyblade Edition 전문가용 노리페인트 / 노래그 트렌드 신호 시스템, 뛰어난 승률 제공 | MT4 / MT5용 1분, 5분, 15분과 같은 낮은 타임프레임에서 가장 좋은 성능을 보입니다. 핵심 기능: Super Signal – Skyblade Edition은 추세 매매를 위해 설계된 스마트 신호 시스템입니다. 이 시스템은 다중 필터 로직을 활용하여, 명확한 방향성과 실질적인 모멘텀이 수반된 고품질 추세만을 감지합니다. 이 시스템은 고점 또는 저점을 예측하지 않으며 , 다음 세 가지 조건이 모두 충족될 때만 신호를 발생시킵니다: 명확한 추세 방향 강화되는 모멘텀 건전한 변동성 구조 또한, 시장 세션 기반의 유동성 분석을 통해 신호의 신뢰성과 타이밍을 더욱 향상시킵니다. 신호 특성: 모든 화살표 신호는 100% 리페인트 없음 / 지연 없음 신호가 한 번 발생하면 고정되며, 깜빡이거나 사라지지 않음 차트 상의 시각적 화살표, 정보 패널, 팝업 알
Neuro Poseidon MT4
Daria Rezueva
4.82 (44)
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
M1 Sniper
Oleg Rodin
5 (26)
M1 SNIPER 는 사용하기 쉬운 거래 지표 시스템입니다. M1 시간대에 맞춰 설계된 화살표 지표입니다. 이 지표는 M1 시간대 스캘핑을 위한 단독 시스템으로 사용할 수 있으며, 기존 거래 시스템의 일부로도 사용할 수 있습니다. 이 거래 시스템은 M1 시간대 거래용으로 특별히 설계되었지만, 다른 시간대에도 사용할 수 있습니다. 원래는 XAUUSD와 BTCUSD 거래를 위해 이 방법을 설계했지만, 다른 시장 거래에도 유용하다는 것을 알게 되었습니다. 이 지표의 신호는 추세 방향과 반대로 거래될 수 있습니다. 저는 지표의 신호를 활용하여 양방향으로 거래할 수 있도록 돕는 특별한 거래 기법을 알려드립니다. 이 방법은 특별한 동적 지지선과 저항선 가격 영역을 활용하는 것을 기반으로 합니다. 구매하시면 M1 SNIPER 화살표 지표를 바로 다운로드하실 수 있습니다. 또한, 아래 스크린샷에 표시된 Apollo Dynamic SR 지표는 M1 SNIPER 도구를 사용하는 모든 사용자에게 무료로
Trend Catcher ind
Ramil Minniakhmetov
5 (11)
트렌드 캐처 인디케이터 트렌드 캐처 인디케이터는 개발자가 자체 개발한 맞춤형 적응형 트렌드 분석 지표들을 조합하여 시장 가격 움직임을 분석합니다. 단기적인 노이즈를 제거하고 근본적인 모멘텀 강도, 변동성 확대, 가격 구조 움직임에 집중하여 진정한 시장 방향을 파악합니다. 또한 이동 평균, RSI, 변동성 필터와 같은 맞춤형 지표들을 활용하여 가격을 평활화하고 트렌드를 필터링합니다. 실제 운영 모니터링 및 기타 제품은 다음 링크에서 확인하실 수 있습니다: https://www.mql5.com/en/users/mechanic/seller 텔레그램에서는 EA나 설정 파일을 판매하지 않습니다. 사기이니 주의하세요. 모든 설정 파일은 블로그에서 무료로 제공됩니다. 중요! 구매 후 즉시 연락 주시면 사용 방법 및 보너스를 드립니다!
Smart Trend Trading System
Issam Kassas
4.71 (7)
이 제품은 2026년 시장에 맞게 업데이트되었으며 최신 MT5 빌드에 최적화되었습니다. 가격 업데이트 안내: Smart Trend Trading System은 현재 $99 에 제공됩니다. 다음 30회 구매 후 가격은 $199 로 인상됩니다. 특별 혜택: Smart Trend Trading System 구매 후 저에게 개인 메시지를 보내시면 Smart Universal EA를 무료 로 받을 수 있으며, Smart Trend 신호를 자동 거래로 전환할 수 있습니다. Smart Trend Trading System은 리페인트 없음, 재그리기 없음, 지연 없음의 완전한 트레이딩 시스템으로, 더 깨끗한 신호, 더 나은 추세 방향, 그리고 더 체계적인 시장 거래 방식을 원하는 트레이더를 위해 제작되었습니다. Online course , manual and [download presets] . 이 시스템은 추세 감지, 반전 구간, Smart Cloud, 트레일링 스톱 로직, 지지와 저항, 캔들
Atomic Analyst
Issam Kassas
5 (9)
이 제품은 2026년 시장에 맞게 업데이트되었으며 최신 MT5 빌드에 최적화되었습니다. 가격 업데이트 안내: Atomic Analyst는 현재 $99 에 제공됩니다. 다음 30회 구매 후 가격은 $199 로 인상됩니다. 특별 혜택: Atomic Analyst 구매 후 저에게 개인 메시지를 보내시면 Smart Universal EA를 무료 로 받을 수 있으며, Atomic Analyst 신호를 자동 거래로 전환할 수 있습니다. Atomic Analyst는 리페인트 없음, 재그리기 없음, 지연 없음의 Price Action 거래 인디케이터로, 수동 거래, 신호 명확성, EA 자동화를 위해 설계되었습니다. User manual: settings, inputs and strategy.     &   User Manual PDF . 가격 움직임, 강도, 모멘텀, 다중 시간대 방향 및 고급 필터를 분석하여 트레이더가 노이즈를 줄이고 약한 세팅을 피하며 더 체계적인 거래 결정을 내릴 수 있도
Currency Strength Wizard
Oleg Rodin
4.85 (60)
통화 강도 마법사는 성공적인 거래를 위한 올인원 솔루션을 제공하는 매우 강력한 지표입니다. 표시기는 여러 시간 프레임의 모든 통화 데이터를 사용하여 이 또는 해당 외환 쌍의 힘을 계산합니다. 이 데이터는 특정 통화의 힘을 확인하는 데 사용할 수 있는 사용하기 쉬운 통화 지수 및 통화 전력선의 형태로 표시됩니다. 필요한 것은 거래하려는 차트에 표시기를 부착하는 것뿐입니다. 표시기는 거래하는 통화의 실제 강세를 보여줍니다. 지표는 또한 추세와 거래할 때 유리하게 사용할 수 있는 구매 및 판매 거래량 압력의 극한값을 보여줍니다. 지표는 또한 피보나치에 기반한 가능한 대상을 보여줍니다. 표시기는 PUSH 알림을 포함한 모든 유형의 알림을 제공합니다. 구매 후 연락주세요. 나는 당신과 거래 팁을 공유하고 당신에게 무료로 훌륭한 보너스 지표를 줄 것입니다! 나는 당신에게 행복하고 유익한 거래를 기원합니다!
PZ Trend Trading
PZ TRADING SLU
4.8 (5)
Capture every opportunity: your go-to indicator for profitable trend trading Trend Trading is an indicator designed to profit as much as possible from trends taking place in the market, by timing pullbacks and breakouts. It finds trading opportunities by analyzing what the price is doing during established trends. [ Installation Guide | Update Guide | Troubleshooting | FAQ | All Products ] Trade financial markets with confidence and efficiency Profit from established trends without getting whips
Gold Signal Swing Pro XAUUSD with Auto TP SL (MT4) — XAUUSD 스윙 트레이딩을 위한 7층 필터 + RR 보증 시스템 리페인트 없음. 리드로 없음. 지연 없음. 모든 신호는 확정 후 고정됩니다. 구매자 보너스: 매수 라이선스 구매 시 AI Zone Radar ($59 상당) + PDF 매뉴얼 무료 제공. 구매 후 MQL5에서 메시지를 보내주세요. AI Zone Radar: https://www.mql5.com/en/market/product/175834 MT5 버전도 판매 중: https://www.mql5.com/en/market/product/170916?source=Site +Profile+Seller 활발한 트레이딩 커뮤니티의 골드 트레이더들이 사용하고 신뢰합니다. 정밀성과 사용 편의성을 위해 구축되었습니다. 이런 분에게 추천 업무나 일상으로 바빠 M5/M15 차트를 볼 수 없는 트레이더 엄선된 고품질 신호만으로 거래하고 싶은 분 야
MTF Supply Demand Zones
Georgios Kalomoiropoulos
4.82 (22)
자동화된 수요 및 공급 구역의 차세대. 모든 차트에서 작동하는 새롭고 혁신적인 알고리즘. 모든 구역은 시장의 가격 움직임에 따라 동적으로 생성됩니다. 두 가지 유형의 경고 --> 1)가격이 영역에 도달할 때 2)새로운 영역이 형성될 때 당신은 더 이상 쓸모없는 지표를 얻을 수 없습니다. 입증된 결과로 완벽한 거래 전략을 얻을 수 있습니다.     새로운 기능:     가격이 공급/수요 영역에 도달하면 경고     새로운 공급/수요 구역이 생성되면 알림     푸시 알림 알림     핍의 영역 너비 레이블     기동특무부대에 한 번 더 시간이 주어집니다. 따라서 현재보다 위의 2개의 시간 프레임 대신 현재보다 높은 3개의 시간 프레임을 볼 수 있습니다.     Alerts/Zones/MTF 기능을 활성화/비활성화하는 버튼 당신이 얻는 이점:     거래에서 감정을 제거하십시오.     거래 항목을 객관화하십시오.     높은 확률 설정을 사용하여 수익
Scalper Inside PRO
Alexey Minkov
4.68 (69)
Scalper Inside PRO Scalper Inside PRO is an intraday trend and scalping indicator that uses exclusive built-in algorithms to evaluate market direction and key target levels. The indicator automatically calculates entry and exit points and several profit target levels, and it shows detailed performance statistics, so you can see how different instruments and strategies behaved on historical data. This helps you select instruments that fit current market conditions. You can also connect your own a
Congestioni
Stefano Frisetti
5 (1)
This indicator is very usefull to TRADE Trading Ranges and helps identify the following TREND. Every Trader knows that any market stay 80% of the time in trading ranges and only 20% of the time in TREND; this indicator has been built to help traders trade trading ranges. Now instead of waiting for the next TREND, You can SWING TRADE on trading ranges with this simple yet very effective indicator. TRADING with CONGESTIONI INDICATOR: The CONGESTIONI Indicator identify a new trading range and ale
DayTrader PRO DayTrader PRO는 존 에러스(John Ehlers)의 Laguerre 필터와 강력한 자동 최적화 엔진을 결합한 고급 트레이딩 지표입니다. 고정된 파라미터를 사용하는 대신, 최근 시장 상황을 바탕으로 최적의 설정을 자동으로 검색하므로 지속적인 수동 조정 없이도 변화하는 시장 변동성에 대응할 수 있습니다. 이 지표는 명확한 매수(BUY) 및 매도(SELL) 신호를 생성하며, 현재 시장 변동성을 기준으로 계산된 적응형 손절매(Stop Loss) 및 익절(Take Profit) 레벨을 제공합니다. 내장된 추세, 효율성 지수(Efficiency Ratio), 변동성 및 캔들 필터 기능은 저품질의 진입 신호를 제거하여 신호의 정확도를 높여줍니다. 실시간 성능 대시보드에서는 현재 최적화된 설정값, 수익 요인(Profit Factor), 승률(Win Rate), 최대 낙폭(Drawdown) 및 기타 트레이딩 통계를 확인할 수 있습니다. 또한 DayTrader PR
Currency Strength Exotics
Bernhard Schweigert
4.88 (33)
현재 20% 할인! 초보자 또는 전문가 트레이더를 위한 최고의 솔루션! 이 표시기는 Exotic Pairs Commodities, Indexes 또는 Futures와 같은 기호에 대한 통화 강도를 표시하는 데 특화되어 있습니다. 금, 은, 석유, DAX, US30, MXN, TRY, CNH 등의 진정한 통화 강도를 보여주기 위해 9번째 줄에 모든 기호를 추가할 수 있습니다. 이것은 독특하고 고품질이며 저렴한 거래 도구입니다. 우리는 많은 독점 기능과 새로운 공식을 통합했습니다. 새로운 추세 또는 스캘핑 기회의 정확한 트리거 포인트를 정확히 찾아낼 수 있기 때문에 거래가 어떻게 개선될지 상상해 보십시오. 사용 설명서: 여기를 클릭 https://www.mql5.com/en/blogs/post/708876 모든 시간대에 작동합니다. TREND를 빠르게 확인할 수 있습니다! 새로운 기본 알고리즘을 기반으로 설계되어 잠재적인 거래를 더욱 쉽게 식별하고 확인할 수 있습니다. 8개의
Zoryk Gold mt4
Reda El Koutbane
ZORYK — MetaTrader 4용 XAUUSD 전문 신호 및 트레이드 플래닝 시스템 이런 경험이 있을 것입니다. 골드를 분석하고 진입을 기다린 뒤 마침내 포지션을 열었지만 가격이 곧바로 반대 방향으로 움직입니다. 너무 일찍 청산하거나 Stop Loss를 옮기거나 몇 초 동안 망설입니다. 그 후 시장은 내가 없이도 처음 예상했던 목표까지 정확히 움직입니다. 문제는 항상 방향이 아니었습니다. 진짜 문제는 불확실성이었습니다. 정확한 진입 위치를 몰랐습니다. 어느 지점에서 원래의 트레이드 아이디어가 무효가 되는지 몰랐습니다. 가까운 수익을 확보해야 할지 더 큰 움직임을 기다려야 할지 판단하기 어려웠습니다. 현재 setup이 정말 강한지 아니면 단지 새로운 거래를 억지로 찾고 있는지도 확신하기 어려웠습니다. 골드는 매우 빠르게 움직입니다. 명확한 계획이 없다면 좋은 분석도 몇 초 만에 나쁜 결정으로 바뀔 수 있습니다. ZORYK는 이 문제를 해결하기 위해 개발되었습니다.
KURAMA GOLD SIGNAL PRO (MT4) — 7중 필터 · 자동 TP/SL · 품질 점수 · 시그널 기록 저장 | XAUUSD 완전 트레이딩 시스템 실시간 리페인트 없음. 시그널이 나타나는 순간 화살표, 진입, TP, SL이 그 자리에 고정되어 이후 절대 움직이지 않습니다. 여러분이 거래하는 것은 바로 이 실시간 시그널입니다. 그리고 v7.20에서는 실제로 발신된 모든 시그널이 자동 저장되어 재시작 후에도 정확히 복원됩니다. 구매자 전용 보너스 평생 라이선스를 구매하시면 AI Zone Radar($59 상당) + 완전 PDF 매뉴얼을 무료로 드립니다. 제품 가격에 더해 $59 상당의 보너스가 따라옵니다. 구매 후 MQL5로 메시지를 보내주세요. AI Zone Radar: https://www.mql5.com/en/market/product/175834 골드 트레이더 커뮤니티에서 실제로 사용되며 정확성과
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
BlueDigitsFx Easy 1 2 3 System
Ziggy Janssen
4.87 (299)
BlueDigitsFx 공식 생태계 액세스 인프라 업데이트, 트레이딩 리소스, 제품 출시 정보 및 BlueDigitsFx 공식 생태계에 대한 액세스를 받아보세요. Telegram 생태계 웹사이트 MT5 버전 BlueDigitsFx Easy 123 System — MT4용 강력한 반전 및 돌파 감지 시스템 시장 반전과 돌파를 포착하기 위한 올인원 비재도색(Non-Repaint) 시스템 — 구조적 분석, 명확성 및 확인 기반 트레이딩을 중요하게 생각하는 트레이더를 위해 설계되었습니다. BlueDigitsFx Easy 123 System은 시장 구조 변화, 돌파 및 추세 반전을 쉽고 명확하게 식별할 수 있도록 도와주는 MT4용 시각적 지표 및 알림 시스템입니다. 이 지표는 구조화된 "123" 패턴을 기반으로 작동합니다. 1단계 : 잠재적인 추세 소진 구간에서 큰 화살표(Big Arrow)를 표시하여 새로운 고점 또는 저점을 식별합니다. 2단계 : 시장 구조 돌파를 감지하여 잠재적인
Supply and Demand Dashboard PRO
Bernhard Schweigert
4.81 (21)
현재 30% 할인! 이 대시보드는 여러 기호와 최대 9개의 타임프레임에서 작동하는 매우 강력한 소프트웨어입니다. 주요 지표(최상의 리뷰: 고급 공급 수요)를 기반으로 합니다.   Advanced Supply Demand 대시보드는 훌륭한 개요를 제공합니다. 다음과 같이 표시됩니다.  영역 강도 등급을 포함하여 필터링된 공급 및 수요 값, 영역에 대한/및 영역 내 Pips 거리, 중첩된 영역을 강조 표시하고 모든 (9) 시간 프레임에서 선택한 기호에 대해 4가지 종류의 경고를 제공합니다. 그것은 당신의 개인적인 필요에 맞게 고도로 구성 가능합니다! 당신의 혜택! 모든 트레이더에게 가장 중요한 질문: 시장에 진입하기에 가장 좋은 수준은 무엇입니까? 최고의 성공 기회와 위험/보상을 얻으려면 강력한 공급/수요 영역 내 또는 그 근처에서 거래를 시작하십시오. 손절매를 위한 최적의 장소는 어디입니까? 가장 안전하려면 강력한 수요/공급 구역 아래/위에 정류장을 두십시오.
ORB Seeker
Marcela Goncalves De Oliveira
특별 출시 가격! 단돈 79달러! 10개 판매 후 가격이 인상되어 최종 가격은 199달러가 됩니다. 구매 후 연락 주시면 완전 자동화되고 최적화된 설정 파일을 사용하여 돌파 신호를 거래할 수 있는 무료 보너스 EA를 드립니다. 깔끔한 세션 브레이크아웃을 자신감 있게 활용하세요! ORB Seeker는 정확성, 단순성, 유연성 및 명확한 차트 구조를 원하는 트레이더를 위해 개발된 전문적인 시가 범위 돌파(ORB) 지표입니다. 이 프로그램은 모든 금융 상품에 대해 장전 거래 또는 사용자 지정 세션 범위를 자동으로 표시하고, 진입, 손절매, 목표 수익 및 선택적으로 50% 부분 목표 수익 수준을 포함한 명확한 돌파 신호를 제공합니다. 모든 계산은 실시간으로 차트에 직접 표시됩니다. 런던 개장, 뉴욕 세션, 아시아 세션 또는 사용자 지정 시장 시간대를 선택하여 거래하세요. ORB Seeker는 사용자가 선택한 세션 시간에 맞춰 작동하므로 시장 범위, 돌파 수준 및 거래 레벨을 정확하게 확
CRT Candle Range Theory HTF MT4.   Ultimate CRT Indicator: Advanced ICT Concepts and Malaysian SnR Trading System 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 indicator automates the highly effective  Candle Range Theory (CRT) , a core pillar of  ICT Concepts (Inner Circle Trader
Gold Pro Scalper
Aleksandr Makarov
4.8 (5)
Gold Pro Scalper Precise entry points for currencies, crypto, metals, stocks, indices! Indicator 100% does not repaint!!! If a signal appeared, it does not disappear! Unlike indicators with redrawing, which lead to loss of deposit, because they can show a signal, and then remove it. Trading with this indicator is very easy. Wait for a signal from the indicator and enter the deal, according to the arrow  (Blue arrow - Buy, Red - Sell). I recommend using it with the Trend Filter (download
Day Trader Master
Oleg Rodin
5 (15)
Day Trader Master 는 데이 트레이더를 위한 완벽한 거래 시스템입니다. 시스템은 두 개의 지표로 구성됩니다. 하나의 지표는 매수 및 매도를 위한 화살표 신호입니다. 얻을 수 있는 화살표 표시기입니다. 2차 지표를 무료로 드립니다. 두 번째 지표는 이러한 화살표와 함께 사용하도록 특별히 설계된 추세 지표입니다. 표시기는 반복하지 않고 늦지 않습니다! 이 시스템을 사용하는 것은 매우 간단합니다. 2색 선으로 표시되는 현재 추세 방향의 화살표 신호를 따라가기만 하면 됩니다. 파란색은 구매 추세입니다. 빨간색은 판매 추세입니다. 파란색 화살표는 매수 신호입니다. 빨간색 화살표는 매도 신호입니다. 추세선의 색상과 일치하려면 화살표의 색상과 신호의 방향이 필요합니다. 화살표 표시기는 주로 시간 간격 M5 및 M15에서 일중 거래를 위해 만들어졌습니다. 그러나 기술적으로 시스템은 다른 시간 간격으로 사용할 수 있습니다. 표시기에는 PUSH 메시지 기능이 있는 팝업 경고가 장착되어 있
Smart Phase Box (SPB) — Indicator Description Smart Phase Box automatically locates consolidation zones (bases, flats) on the chart and analyzes the candle microstructure inside each zone — wicks, tick volume, body-to-range ratio, and where price closes relative to the zone — to estimate whether the zone looks more like accumulation (buyers absorbing supply) or distribution (sellers absorbing demand), based on classic Wyckoff / Smart Money concepts. MT5-version:  https://www.mql5.com/en/market/p
Special offer : ALL TOOLS , just $35 each! New tools   will be   $30   for the   first week   or the   first 3 purchases !  Trading Tools Channel on MQL5 : Join my MQL5 channel to update the latest news from me 다중 시간 프레임의 체적 주문 블록 지표는 주요 시장 참가자들이 주문을 축적하는 중요한 가격 영역을 식별하여 시장 행동에 대한 더 깊은 통찰을 원하는 트레이더들을 위해 설계된 강력한 도구입니다. 이 영역들은 체적 주문 블록으로 알려져 있으며, 잠재적 지지 및 저항 구역으로 작용해 정보에 입각한 거래 결정에 중요한 이점을 제공합니다. MT5 버전 보기:   Volumetric Order Blocks MT5 Multi Timeframe See more products at:   https://www.mql5.com
Advanced Supply Demand
Bernhard Schweigert
4.91 (302)
현재 30% 할인! 초보자나 전문 트레이더를 위한 최고의 솔루션! 이 보조지표는 우리가 다수의 독창적 기능과 새로운 공식을 통합한 독특하고 고품질이며 저렴한 거래 도구입니다. 이 업데이트를 통해 이중 시간대를 표시할 수 있습니다. 더 높은 TF를 표시할 수 있을 뿐만 아니라 차트 TF와 더 높은 TF 모두를 표시할 수 있습니다: 중첩 영역 표시. 모든 Supply Demand 트레이더들이 좋아할 것입니다. :) 중요한 정보 공개 Advanced Supply Demand의 잠재력을 극대화하려면 다음을 방문하십시오. https://www.mql5.com/ko/blogs/post/720245   진입 또는 목표의 명확한 트리거 포인트를 정확히 찾아냄으로 해서 거래가 어떻게 개선될지 상상해 보십시오. 새로운 알고리즘을 기반으로 매수자와 매도자 간의 잠재적인 불균형을 훨씬 더 쉽게 분간할 수 있습니다. 왜냐하면 가장 강한 공급영역과 가장 강한 수요 영역과 과거에 어떻게 진행 되었는지를(이전
Market Structure Break Out
Ashkan Hazegh Nikrou
5 (8)
가격이 내일 119달러 로 인상됩니다. **Market Structure Break Out (MSB)**는 MT4 및 MT5 용으로 설계된 고급 도구로, 트레이더가 시장 움직임을 구조적으로 이해하고, 화살표와 알림 을 통해 추세 방향 또는 반대 방향의 훌륭한 거래 신호를 찾을 수 있도록 도와줍니다. 이 제품의 또 다른 핵심 기능은 지속되는 공급 및 수요 영역을 그리는 기능 입니다. 또한, 실시간 백테스트 기능 을 통해 과거의 성능을 차트에서 직접 확인할 수 있어 트레이더에게 신뢰와 투명성을 제공합니다. 무료 EA 받기: 무료 Market Structure Breakout EA 를 받아보세요. 이 EA는 돌파 화살표를 기반으로 고정 로트 크기와 사용자 지정 가능한 손절매 및 이익 실현 수준으로 자동으로 거래를 엽니다. 수령 방법: 여기를 클릭하여 EA를 다운로드하세요. 이 EA 는 Market Structure Break Out 인디케이터 를 이미 구매한 경우에만 작동합니다. 이
Winshots Massive FX Profits
Pawel Michalowski
5 (1)
Stop searching for and trying new indicators! Get Winshots Massive FX Profits indicator and set yourself apart from the crowd.  Years of trading experience led us to the building of this all in one indicator! Trade like the pro with Winshots Massive FX Profits! This indicator uses the following methodologies to help you become a more consistent profitable trader: - MARKET VOLUME PROFILE - DAILY CANDLE OUTLINE  - ATR LEVELS - DAILY PIVOTS LEVELS - PRICE CYCLES ANALYSIS What is VOLUME PROFILE?
제작자의 제품 더 보기
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
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
Time Range Breakout Strategy The Time Range Breakout strategy is designed to identify and capitalize on market volatility during specific time intervals. This strategy focuses on defining a time range, calculating the high and low within that range, and executing trades when price breaks out of the defined boundaries. It is particularly effective in markets with high liquidity and strong directional movement. Key Features : Customizable Time Range : Users can specify a start time and end time t
Time Range breakout AFX
Menaka Sachin Thorat
Time Range Breakout EA AFX – Precision Trading with ORB Strategy Capture strong market trends with high-precision breakouts using the proven Opening Range Breakout (ORB) strategy! Time Range Breakout EA AFX is a fully automated Expert Advisor that identifies breakout levels within a user-defined trading window and executes trades with precision and safety. No martingale, no grid—just controlled, professional risk management. Why Choose Time Range Breakout EA AFX? Proven ORB Strategy
필터:
sid07198
24
sid07198 2026.05.11 00:10 
 

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

리뷰 답변