UT Bot Alerts for MT4

UT Bot Alerts — ATR Trailing Stop System

Faithful MQL5 & MQL4 conversion of the legendary "UT Bot Alerts" indicator by QuantNomad from TradingView.

Originally developed by Yo_adriiiiaan with the core idea by HPotter, and refined into Pine Script v4 with alerts by QuantNomad (Vadim Cissa) — one of the most followed quant developers on TradingView with over 100K followers. The original script has accumulated 1.1 million+ views and 35,500+ favorites on TradingView, making it one of the most popular open-source trading indicators ever published.

This conversion replicates the original algorithm with 100% logical fidelity: same 4-branch recursive trailing stop, same crossover detection, same signal generation. Non-repainting on closed bars.

What is UT Bot Alerts?

UT Bot Alerts is a trend-following signal system built on a single, elegant concept: an adaptive trailing stop that uses the Average True Range (ATR) to dynamically adjust its distance from price.

When price is trending up, the trailing stop ratchets upward and never moves down — protecting gains. When price is trending down, the stop ratchets downward and never moves up. When price crosses the trailing stop, the system flips direction and generates a Buy or Sell signal.

The result is a clean, responsive indicator that:

  • Identifies trend direction with a color-coded trailing stop line
  • Generates precise entry signals at trend reversals
  • Adapts automatically to market volatility via ATR
  • Works on any instrument (Forex, Crypto, Stocks, Commodities, Indices)
  • Works on any timeframe (M1 to Monthly)

Think of it as a smarter, ATR-adaptive version of a Supertrend indicator that uses closing price instead of the midpoint (High+Low)/2.

How the Algorithm Works

The indicator calculates three things on every bar: (1) an adaptive trailing stop, (2) the current trend state, and (3) buy/sell crossover signals.

Step 1 — ATR and Loss Distance

The Average True Range (ATR) is calculated using Wilder's smoothing method (RMA) over the configured period. The trailing stop distance is defined as:

nLoss = Key Value × ATR

A higher Key Value places the stop farther from price (fewer signals, less noise). A lower Key Value places it closer (more signals, faster reaction).

Step 2 — The 4-Branch Recursive Trailing Stop

This is the core of the algorithm. On every bar, the trailing stop is updated using four mutually exclusive conditions:

Branch 1 — Uptrend Continuation: If the current price AND the previous price are both above the previous trailing stop, the stop can only move upward. It is set to the maximum of the previous stop and (current price - nLoss). This "ratchet" mechanism locks in gains as price rises.

Branch 2 — Downtrend Continuation: If the current price AND the previous price are both below the previous trailing stop, the stop can only move downward. It is set to the minimum of the previous stop and (current price + nLoss). The stop follows price down, tightening on rallies.

Branch 3 — Bullish Reversal: If the current price crosses above the previous trailing stop (but the previous price was below), the stop resets to (current price - nLoss), initiating a new upward trailing sequence.

Branch 4 — Bearish Reversal: If the current price crosses below the previous trailing stop (but the previous price was above), the stop resets to (current price + nLoss), initiating a new downward trailing sequence.

Step 3 — Signal Detection

Buy and Sell signals are generated using crossover detection between the source price and the trailing stop:

  • Buy Signal = Price crosses above the trailing stop (price was below on the previous bar, now it is above)
  • Sell Signal = Price crosses below the trailing stop (price was above on the previous bar, now it is below)

Signals fire exactly once per crossover event. They do not repaint on closed/confirmed bars.

Step 4 — Visualization

The indicator displays:

  • Trailing Stop Line — Color-coded by trend direction: green during uptrend (long), red during downtrend (short), blue during neutral/undefined state
  • Buy Arrows — Green upward arrows below the signal bar
  • Sell Arrows — Red downward arrows above the signal bar
  • Bar Coloring (MQL5 only) — Candles are colored green when price is above the trailing stop and red when below
  • Position State Buffer — Available for EA access via iCustom (value: +1 for long, -1 for short, 0 for neutral)

Input Parameters

UT Bot Core

Parameter Type Default Description
Key Value double 1.0 ATR Multiplier / Sensitivity. Controls the distance of the trailing stop from price. Higher values = wider stop, fewer signals, better noise filtering. Lower values = tighter stop, more signals, faster reaction. Original HPotter defaults were 3.5; QuantNomad changed to 1.0.
ATR Period int 10 Period for the Average True Range calculation using Wilder's smoothing (RMA). Higher values produce a smoother, slower-reacting ATR. Original HPotter default was 5; QuantNomad changed to 10.
Use Heikin Ashi Candles as Source bool false When enabled, the indicator uses Heikin Ashi closing prices instead of regular closing prices as the source for all calculations. Heikin Ashi smooths price action and can reduce false signals in choppy markets, at the cost of slightly delayed entries.

Visuals

Parameter Type Default Description
Show Trailing Stop Line bool true Toggle the visibility of the ATR trailing stop line on the chart. The line changes color based on the current trend state (green/red/blue).
Show Buy/Sell Arrows bool true Toggle the visibility of buy and sell signal arrows on the chart.
Color Price Bars bool true (MQL5 only) When enabled, candles are colored green when price is above the trailing stop and red when below. Not available in MQL4 due to platform limitations.
Arrow Distance from Bar int 10 Distance in points between the signal arrow and the bar's high/low. Increase this value if arrows overlap with candles on your chart.

Alerts

Parameter Type Default Description
Popup Alert bool true Show a popup alert dialog when a buy or sell signal is generated.
Sound Alert bool true Play a sound when a signal is generated (alert.wav for buy, alert2.wav for sell).
Push Notification bool false Send a push notification to your mobile device. Requires MetaTrader mobile app configured in Tools → Options → Notifications.
Email Notification bool false Send an email notification. Requires SMTP email configured in Tools → Options → Email.

Recommended Settings by Market

These are community-tested parameter guidelines. Always backtest on your specific instrument and timeframe before trading live.

Forex

  • Stable pairs (EURUSD, USDJPY, USDCHF): Key Value 1.0–1.5, ATR Period 10–14
  • Moderate pairs (AUDUSD, USDCAD, EURJPY): Key Value 1.5–2.0, ATR Period 10–14
  • Volatile pairs (GBPJPY, GBPNZD): Key Value 2.0–3.0, ATR Period 10–14

Crypto

  • BTC, ETH: Key Value 2.0–3.5, ATR Period 10–14
  • Altcoins: Key Value 3.0–5.0, ATR Period 10–20

Commodities

  • Gold (XAUUSD): Key Value 2.5–3.5, ATR Period 10–14
  • Oil (USOIL): Key Value 2.0–3.0, ATR Period 10–14

Indices

  • NASDAQ, S&P 500: Key Value 3.0–4.0, ATR Period 10–14
  • DAX, FTSE: Key Value 2.5–3.5, ATR Period 10–14

Timeframe Guidelines

  • Scalping (M1–M5): Lower Key Value (0.5–1.0) for faster reaction. More signals, more noise.
  • Intraday (M15–H1): Key Value 1.0–2.0. Good balance between signal frequency and reliability.
  • Swing (H4–D1): Key Value 2.0–3.5. Fewer but higher-quality signals.
  • Position (W1–MN): Key Value 3.0–5.0. Long-term trend following.

How to Trade with UT Bot Alerts

Basic Strategy

The simplest approach:

  • Buy when a green Buy arrow appears (price crosses above the trailing stop)
  • Sell/Close when a red Sell arrow appears (price crosses below the trailing stop)
  • Use the trailing stop line itself as a dynamic stop-loss level

With Trend Filter (Recommended)

Add a 200-period EMA as a trend filter to significantly reduce false signals:

  • Only take Buy signals when price is above the 200 EMA (bullish macro trend)
  • Only take Sell signals when price is below the 200 EMA (bearish macro trend)

With Additional Confirmation

Combine UT Bot with other indicators for higher-probability setups:

  • RSI: Only take Buy signals when RSI is below 70 (not overbought), Sell signals when RSI is above 30 (not oversold)
  • VWAP: Use VWAP as an institutional bias filter — Buy above VWAP, Sell below VWAP
  • Volume: Require above-average volume on signal bars for confirmation
  • Support/Resistance: Only take signals near key S/R levels for better risk/reward

Risk Management

  • Use the trailing stop line as your initial stop-loss
  • The distance between entry price and the trailing stop line = your risk per trade
  • Size your position accordingly (e.g., risk 1–2% of account per trade)
  • Consider using the trailing stop as a dynamic exit: close when the bar color changes from green to red (or vice versa)

Using with Expert Advisors (EAs)

The indicator exposes its data through buffers accessible via iCustom() . Here is the buffer mapping for both platforms:

MQL5 Buffer Index Map

Buffer Content Values
0 ATR Trailing Stop value Price level
1 Trail line color index 0=Green, 1=Red, 2=Blue
2 Buy signal Price level or EMPTY_VALUE
3 Sell signal Price level or EMPTY_VALUE
4–7 Bar coloring OHLC Price levels
8 Bar color index 0=Green, 1=Red, 2=None
9 Position state +1 (long), -1 (short), 0 (neutral)

MQL5 Example:

int ut_handle = iCustom(_Symbol, PERIOD_CURRENT, "UTBotAlerts", 1.0, 10, false);

double buy_signal[];
double sell_signal[];
CopyBuffer(ut_handle, 2, 1, 1, buy_signal);  // Buy buffer, bar 1
CopyBuffer(ut_handle, 3, 1, 1, sell_signal);  // Sell buffer, bar 1

if(buy_signal[0] != EMPTY_VALUE)
{
   // Buy signal on last closed bar
}
if(sell_signal[0] != EMPTY_VALUE)
{
   // Sell signal on last closed bar
}

MQL4 Buffer Index Map

Buffer Content Values
0 Trail line (green/long segments) Price level or EMPTY_VALUE
1 Trail line (red/short segments) Price level or EMPTY_VALUE
2 Trail line (blue/neutral segments) Price level or EMPTY_VALUE
3 Buy signal Price level or EMPTY_VALUE
4 Sell signal Price level or EMPTY_VALUE
5 Full trail stop value (continuous) Price level
6 Position state +1 (long), -1 (short), 0 (neutral)
7 Source price used Close or HA Close

MQL4 Example:

double buy = iCustom(_Symbol, 0, "UTBotAlerts", 1.0, 10, false, 3, 1); // Buffer 3, bar 1 double sell = iCustom(_Symbol, 0, "UTBotAlerts", 1.0, 10, false, 4, 1); // Buffer 4, bar 1 if(buy != EMPTY_VALUE) { // Buy signal on last closed bar } if(sell != EMPTY_VALUE) { // Sell signal on last closed bar }

Installation

MQL5 (MetaTrader 5)

  1. Copy UTBotAlerts.mq5 to your MQL5/Indicators/ folder
  2. Open MetaEditor (F4 from MetaTrader) and compile the file (F7)
  3. In MetaTrader, open the Navigator panel (Ctrl+N)
  4. Drag "UTBotAlerts" from Indicators onto your chart
  5. Configure the input parameters and click OK

MQL4 (MetaTrader 4)

  1. Copy UTBotAlerts.mq4 to your MQL4/Indicators/ folder
  2. Open MetaEditor (F4 from MetaTrader) and compile the file (F7)
  3. In MetaTrader, open the Navigator panel (Ctrl+N)
  4. Drag "UTBotAlerts" from Custom Indicators onto your chart
  5. Configure the input parameters and click OK

Platform Differences (MQL5 vs MQL4)

Feature MQL5 MQL4
Trailing stop line Single color-changing line (DRAW_COLOR_LINE) Three overlapping colored lines (green/red/blue)
Bar coloring Supported (DRAW_COLOR_CANDLES) Not available (platform limitation)
ATR calculation Handle-based (iATR with CopyBuffer) Direct value return (iATR per bar)
Input groups Supported (organized sections) Not available (flat list with separators)
Algorithm & signals Identical Identical
Alerts Identical Identical

Both versions produce the same signals on the same data. Any visual differences are purely cosmetic due to platform rendering.

Comparison with TradingView Original

This conversion achieves 95%+ signal match with the TradingView original when tested on the same instrument and timeframe with the same broker data. The remaining ~5% difference is attributed to:

  • Data feed differences: Even the same broker may deliver slightly different OHLC values on TradingView vs MetaTrader due to aggregation methods and timestamp handling
  • ATR initialization: The first few bars may differ slightly due to how each platform seeds the initial RMA/Wilder's smoothing calculation
  • Floating point precision: Minor rounding differences between Pine Script and MQL runtime environments

These differences are negligible and do not affect the overall trading behavior of the indicator.

Comparison with Supertrend

UT Bot Alerts is functionally similar to the Supertrend indicator, but with key differences:

Aspect UT Bot Alerts Supertrend
Source price Close (or HA Close) Midpoint (High+Low)/2
Band calculation Price ± ATR×Multiplier Midpoint ± ATR×Multiplier
Trend detection 4-branch recursive logic 2-branch flip logic
Signal type Crossover-based arrows Line flip / color change
Sensitivity Generally more responsive Generally smoother

UT Bot's use of Close price makes it more responsive to actual price action, while Supertrend's use of the midpoint provides slightly more stability. Choose based on your trading style and the specific market conditions.

Credits & Original Source

  • Original concept: HPotter (TradingView)
  • Initial development: Yo_adriiiiaan (TradingView) — UT Bot
  • Pine Script v4 with Alerts: QuantNomad / Vadim Cissa (TradingView) — UT Bot Alerts
  • Strategy version: QuantNomad — UT Bot Strategy
  • MQL5/MQL4 conversion: Exobeacon — exobeacon.com

The original Pine Script is open-source and published under TradingView's House Rules. This MQL conversion is an independent reimplementation of the publicly documented algorithm.

Changelog

v1.20

  • Fixed trail line color alignment — color change now coincides exactly with signal arrows
  • Fixed visibility toggles — disabling trail line or bar coloring no longer affects signal arrows
  • Separated core algorithm into internal arrays independent of display buffers

v1.10

  • Fixed buffer mapping issue when toggling visual elements off

v1.00

  • Initial release
  • Full algorithm conversion from Pine Script v4
  • Color-coded trailing stop line
  • Buy/Sell signal arrows with configurable offset
  • Bar coloring (MQL5)
  • Heikin Ashi source option
  • Configurable alerts (Popup, Sound, Push, Email)
  • Position state buffer for EA integration

Recommended products
Forex Market Profile and Vwap
Lorentzos Roussos
4.86 (7)
Volume Profile Indicator / Market Profile Indicator What this is not : FMP is not the classic letter-coded TPO display , does not display the overall chart data profile calculation , and , it does not segment the chart into periods and calculate them. What it does :  Most importantly ,the FMP indicator will process data that resides between the left edge of the user defined spectrum and the right edge of the user defined spectrum. User can define the spectrum by just pulling each end of the indi
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
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
Smart FVG Indicator MT4   delivers professional Fair Value Gap (FVG) detection, monitoring, and alerting directly on your charts. It combines   ATR-based filtering   with structure-aware logic to remove noise, adapt to liquidity, and keep only the most relevant imbalances for precise decisions. Key Advantages Accurate FVG detection:   Identifies genuine inefficiencies, not just simple candle gaps. ATR-based precision:   Adaptive sensitivity filters out low-quality signals across markets and time
FREE
Discover the power of precision and efficiency in your trading with the " Super Auto Fibonacci " MT4 indicator. This cutting-edge tool is meticulously designed to enhance your technical analysis, providing you with invaluable insights to make informed trading decisions. Key Features: Automated Fibonacci Analysis: Say goodbye to the hassle of manual Fibonacci retracement and extension drawing. "Super Auto Fibonacci" instantly identifies and plots Fibonacci levels on your MT4 chart, saving you tim
FREE
QuantumAlert RSI Navigator is a free indicator available for MT4/MT5 platforms, its work is to provide "alerts" when the market is inside "overbought and oversold" regions in the form of "buy or sell" signals. This indicator comes with many customization options mentioned in the parameter section below, user can customise these parameters as needful. Join our   MQL5 group , where we share important news and updates. You are also welcome to join our private channel as well, contact me for the pri
FREE
Email Drawdown Alert
Roman Starostin
5 (12)
Free informative Indicator-helper. It'll be usefull for traders who trade many symbols or using grid systems (Averaging or Martingale). Indicator counts drawdown as percent and currency separate. It has a number of settings: Count deposite drawdown according equity value and send e-mail or notifications to user if DD more than set; Sending e-mail when max open orders reached; Shows price and remaining pips amount before MarginCall on current chart and Account generally; Display summary trade lot
FREE
Free automatic Fibonacci is an indicator that automatically plots a Fibonacci retracement based on the number of bars you select on the BarsToScan setting in the indicator. The Fibonacci is automatically updated in real time as new highest and lowest values appears amongst the selected bars. You can select which level values to be displayed in the indicator settings. You can also select the color of the levels thus enabling the trader to be able to attach the indicator several times with differe
FREE
Ava Dragon Pro Signal
Nirundorn Promphao
1 (1)
The principle of this indicator is very simple: detecting the candlestick pattern in D1 timeframe, then monitoring the return point of graph by using the pullback of High-Low of D1 Candlestick and finally predicting BUY and SELL signal with arrows, alerts and notifications. The parameters are fixed and automatically calculated on each time frame. Example: If you install indicator on XAUUSD, timeframe D1: the indicator will detect the reversal, pullback, price action on this timeframe (for exam
FREE
SMA Indicator
Nitu Brijesh Yadav
Arrow Indicator (Buy/Sell Alerts) – Simple Yet Powerful Tool!             Product Version: 1.01           Indicator Type: Trend Reversal Signals           Timeframes Supported: All (Recommended: H1, H4, D1)           Key Features: Buy Signal: Green upward arrow () appears below the candle  Sell Signal : Red downward arrow () appears above the candle Accurate Trend Reversal Detection – Based on tried and tested SMA strategy. ️ Clean Chart View – Minimalist, non-i
FREE
Features: 1- Get OB/OS Levels from Golden MA Levels 2- Wait for Buy/Sell Start Level Cross 3- Optional: Should price cross Mid Level in earlier bars 4- Optional: Crossing bar High/Medium Volume 5- Optional: MA Stacked to check up/down trend for current TF 6- Optional: NRTR higher timeframes aligned Check Detailed blog post explained: https://www.mql5.com/en/blogs/post/758457 Levels with Buffers available here: Golden MA Levels Indicator: https://www.mql5.com/en/market/product/119515 Note: Arr
FREE
SC MTF Rsi MT4
Krisztian Kenedi
5 (1)
Relative Strength Index (RSI) indicator with multi-timeframe support, customizable visual signals, and configurable alert system. Freelance programming services, updates, and other TrueTL products are available on my MQL5 profile . Feedback and reviews are highly appreciated! What is RSI? Relative Strength Index (RSI) is a momentum oscillator that measures the speed and magnitude of price changes. The indicator oscillates between 0 and 100, comparing the magnitude of recent gains to recent lo
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
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
About: Get Free Scanner and example Strategies And understand detailed description here: https://www.mql5.com/en/blogs/post/759237 And also get example wrappers from above post. You can make your own wrappers if your indicators have complex conditions or for In-Built MT4 indicators. Features: - Specify your own Custom Indicator - Specify Buffer values and create Variables - Use those Variables to create your own Buy/Sell Conditions - Get Arrows Up/Down Signals - See Arrows Signals in Scanners
Follow The Line
Oliver Gideon Amofa Appiah
3.94 (16)
FOLLOW THE LINE GET THE FULL VERSION HERE: https://www.mql5.com/en/market/product/36024 This indicator obeys the popular maxim that: "THE TREND IS YOUR FRIEND" It paints a GREEN line for BUY and also paints a RED line for SELL.  It gives alarms and alerts of all kinds. IT DOES NOT REPAINT and can be used for all currency pairs and timeframes. Yes, as easy and simple as that. Even a newbie can use it to make great and reliable trades. NB: For best results, get my other premium indicators for more
FREE
Renko bars builder
Navdeep Singh
4.2 (5)
The indicator builds a Renko chart in the sub window for the current symbol. The bars are formed from live data and the desired bar size can be set in the inputs tab. Most importantly, because the Renko chart only uses price to construct bars and ignores time, the indicator can be applied to any time frame and same results can be achieved. Recommended usage As Renko charts are famous for eliminating noise so traders can use this tool to see clear picture of the trend to help their analysis, entr
FREE
Flat Reminder Overview Flat Reminder is a powerful technical analysis tool that identifies and highlights price consolidation zones on your chart. It detects when price action slows down and moves sideways, indicating potential reversal points, continuation setups, or key decision zones in the market. Key Features Consolidation Detection : Automatically identifies flat price zones where market momentum decreases Range Measurement : Calculates and displays the exact range of each consolidation in
FREE
Renko Chart with Moving Average. Classic Renko charts idea. It is protted on main chart and Moving Average can be applied. Prices for bars are used from a lower timeframe. Parameters: BarsBack - how many bars of lower timeframe to use. If value is zero than it will use all available bars. LTF - lower timeframe. BrickSize - Renko bar in points. BullishColor - color for bull candle. BearishColor - color for bear candle. HideLineChart - if this value is true the line chart when be hidden when sele
FREE
Lisek Weis Wave
Darius Hans Lischka
5 (3)
This Weis Wave Volume indicator is a tool to help traders identify the current price trend.  Understanding volume can provide insight into a market's behavior to help you determine its overall health. The most important rule is this: volume precedes price. Typically, before a market price moves, volume comes into play. It has 2 main colors histogram which are green and red. – Green indicates an upward wave. The more the price increases, the bigger the green volume gets. – The red color shows a d
FREE
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. EA Version : Price Wave EA MT4 MT5 version : Price Wave Pattern MT5 Features :  Automatic
FREE
High Low Open Close MT4
Alexandre Borela
4.81 (21)
If you like this project, leave a 5 star review. This indicator draws the open, high, low and closing prices for the specified period and it can be adjusted for a specific timezone. These are important levels looked by many institutional and professional traders and can be useful for you to know the places where they might be more active. The available periods are: Previous Day. Previous Week. Previous Month. Previous Quarter. Previous year. Or: Current Day. Current Week. Current Month. Current
FREE
Trend Reversal pro is a histogram type indicator that give long and short signals, the indicator can be traded on its own with following entry rules . Buy Rule, histogram gives green bar. Sell Rule, histogram gives red bar. This indicator doesn't repaint or back paint, this indicator signals are not delayed. -------------------------------------------------------
FREE
Multi Timeframe ZigZag Indicator
Salman A A A T Bakhash
5 (2)
Description: This indicator draw ZigZag Line in multiple time frame also search for Harmonic patterns before completion of the pattern. Features: Five instances of ZigZag indicators can be configured to any desired timeframe and inputs. Draw Harmonic pattern before pattern completion. Display Fibonacci retracement ratios. Configurable Fibonacci retracement ratios. Draw AB=CD based on Fibonacci retracement you define. You can define margin of error allowed in Harmonic or Fibonacci calculations
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
Scalping Edge Pro
Saqr Mohammad Yousef Almasarweh
Scalping Edge Pro Indicator Unleash the Power of Precision Trading: Introducing Scalping Edge Pro Tired of market noise and conflicting signals that cloud your judgment? Are you searching for a tool that delivers the clarity and confidence needed to seize rapid opportunities in volatile markets? Scalping Edge Pro is the engineered solution designed for traders who demand precision and professionalism in every trade. It is meticulously calibrated for peak performance on the 15-minute (M15) timef
FREE
MASi Three Screens
Aleksey Terentev
5 (2)
MASi Three Screens is based on the trading strategy by Dr. Alexander Elder. This indicator is a collection of algorithms. Algorithms are based on the analysis of charts of several timeframes. You can apply any of the provided algorithms. List of versions of algorithms:     ThreeScreens v1.0 - A simple implementation, with analysis of the MACD line;     ThreeScreens v1.1 - A simple implementation, with analysis of the MACD histogram;     ThreeScreens v1.2 - Combines the first two algorithms in
FREE
Hurst Buy and Sell Mt4
Victor Alfonso Molina Botello
Hurst Buy and Sell  This innovative indicator, inspired by xAI Grok intelligence, uses the Hurst exponent to identify the nature of the market and generate buy/sell signals. The EA for this indicator (Hurst Razer PRO EA MT5) is now available, you can see it by clicking here!  https://www.mql5.com/es/market/product/153441?source=Site+Profile+Seller  If you want more signals from the indicator, change the minimum number of bars between consecutive signals. The lower the value, the more signals it
FREE
**Squeeze Box Indicator**   Squeeze Box  is a powerful technical analysis indicator developed for the MetaTrader 4 platform, designed to support day trading strategies. This indicator analyzes market movements to detect bullish and bearish breakout signals, enabling traders to capture trends early. With its customizable features and user-friendly interface, it is ideal for both novice and experienced traders. ### Features and Functions - **Bullish and Bearish Signals**: Identifies market break
FREE
MTF High Low indicator displays key price levels across multiple timeframes directly on your chart,  so you always know where the market has been and what levels matter most. The   NY Session High/Low Levels    automatically plot the highest and lowest prices of the New York trading session on your chart. It provides clear horizontal lines for the   Today (TDY) ,   Yesterday (YTD) ,   Week (7D) , and   Month (30D)   sessions, with customizable display options.           Inspired by MTF.HighLow
FREE
Buyers of this product also purchase
Gann Made Easy
Oleg Rodin
4.83 (156)
Gann Made Easy is a professional and easy to use Forex trading system which is based on the best principles of trading using the theory of W.D. Gann. The indicator provides accurate BUY and SELL signals including Stop Loss and Take Profit levels. You can trade even on the go using PUSH notifications. PLEASE CONTACT ME AFTER PURCHASE TO GET TRADING  INSTRUCTIONS AND GREAT EXTRA INDICATORS   FOR FREE! Probably you already heard about the Gann trading methods before. Usually the Gann theory is a ve
Scalper Inside PRO
Alexey Minkov
4.74 (69)
An exclusive indicator that utilizes an innovative algorithm to swiftly and accurately determine the market trend. The indicator automatically calculates opening, closing, and profit levels, providing detailed trading statistics. With these features, you can choose the most appropriate trading instrument for the current market conditions. Additionally, you can easily integrate your own arrow indicators into Scalper Inside Pro to quickly evaluate their statistics and profitability. Scalper Inside
M1 Sniper
Oleg Rodin
5 (20)
M1 SNIPER is an easy to use trading indicator system. It is an arrow indicator which is designed for M1 time frame. The indicator can be used as a standalone system for scalping on M1 time frame and it can be used as a part of your existing trading system. Though this trading system was designed specifically for trading on M1, it still can be used with other time frames too. Originally I designed this method for trading XAUUSD and BTCUSD. But I find this method helpful in trading other markets a
Atomic Analyst
Issam Kassas
5 (4)
First of all Its worth emphasizing here that this Trading Indicator is   Non-Repainting , Non Redrawing and Non Lagging Indicator   Indicator, Which makes it ideal from both manual and robot trading.  User manual: settings, inputs and strategy . The Atomic Analyst  is a PA Price Action Indicator that uses Strength and Momentum of the price to find a better edge in the market. Equipped with Advanced filters which help remove noises and false signals, and Increase Trading Potential. Using Multiple
Linear Trend Predictor - A trend indicator that combines entry points and direction support lines. It works on the principle of breaking through the High/Low price channel. The indicator algorithm filters market noise, takes into account volatility and market dynamics. Indicator capabilities Using smoothing methods, it shows the market trend and entry points for opening BUY or SELL orders. Suitable for determining short-term and long-term market movements by analyzing charts on any timeframes.
The " Dynamic Scalper System " indicator is designed for the scalping method of trading within trend waves. Tested on major currency pairs and gold, compatibility with other trading instruments is possible. Provides signals for short-term opening of positions along the trend with additional price movement support. The principle of the indicator. Large arrows determine the trend direction. An algorithm for generating signals for scalping in the form of small arrows operates within trend waves.
Trend Screener
STE S.S.COMPANY
4.79 (95)
Trend Screener Indicator --Professional Trend Trading & Market Scanning System for MetaTrader Unlock the true power of trend trading with Trend Screener Indicator — a complete multi-currency, multi-timeframe trend analysis solution   powered by Fuzzy Logic,Trend Pulse Technology  and advanced market structure algorithms.   Trend Screener transforms your MetaTrader platform into a professional-grade Trend Analyzer and Market Scanner, helping you identify high-probability trend opportunities, ear
Trend Lines PRO
Roman Podpora
5 (1)
TREND LINES PRO    helps understand where the market is truly changing direction. The indicator shows real trend reversals and points where major players re-enter. You see   BOS lines   Trend changes and key levels on higher timeframes — without complex settings or unnecessary noise. Signals don't repaint and remain on the chart after the bar closes. VERSION MT 5     -     Reveals its maximum potential when paired with the   RFI LEVELS PRO  indicator What the indicator shows: Real shifts   tren
NAM Order Blocks
NAM TECH GROUP, CORP.
3.67 (3)
MT4 Multi-timeframe Order Blocks detection indicator. Features - Fully customizable on chart control panel, provides complete interaction. - Hide and show control panel wherever you want. - Detect OBs on multiple timeframes. - Select OBs quantity to display. - Different OBs user interface. - Different filters on OBs. - OB proximity alert. - ADR High and Low lines. - Notification service (Screen alerts | Push notifications). Summary Order block is a market behavior that indicates order collection
GOLD Impulse with Alert
Bernhard Schweigert
4.67 (12)
This indicator is a super combination of our 2 products  Advanced Currency IMPULSE with ALERT  and  Currency Strength Exotics . It works for all time frames and shows graphically impulse of strength or weakness for the 8 main currencies plus one Symbol! This Indicator is specialized to show currency strength acceleration for any symbols like Gold, Exotic Pairs, Commodities, Indexes or Futures. Is first of its kind, any symbol can be added to the 9th line to show  true currency strength accelerat
MTF Supply Demand Zones
Georgios Kalomoiropoulos
4.82 (22)
Next Generation Of Automated Supply And Demand Zones. New and Innovative Algorithm that Works At Any Chart. All Zones Are Being Created Dynamically According To Price Action Of The Market. AMAZING OFFER --> Activations from 5 to 20 for "MTF Supply Demand Zones" and "Automated Trendlines" If you get the MTF Supply Demand Zones you can join the " Trade Like Me " Video Series. It contains 14 Live Sessions where  i am placing trades on Forex, Stocks, Indices and Metals. You will be able to see ho
MetaForecast M4
Vahidreza Heidar Gholami
5 (2)
MetaForecast predicts and visualizes the future of any market based on the harmonics in price data. While the market is not always predictable, if there is a pattern in the price, MetaForecast can predict the future as accurately as possible. Compared to other similar products, Metaforecast can generate more accurate results by analyzing market trends. Input Parameters Past size Specifies the number of bars that MetaForecast uses to create a model for generating future predictions. The model is
Introducing the Delta Volume Profile Indicator - Unleash the Power of Institutional Precision!  Technical Indicator: Are you ready to trade like the pros? The Delta Volume Profile Indicator is no ordinary tool. It’s a high-precision, cutting-edge indicator that puts the power of institutional-grade trading in your hands. This unique indicator analyses delta volume distribution in real-time, revealing the market's hidden buy/sell imbalances that the biggest financial institutions rely on to antic
RFI levels PRO
Roman Podpora
5 (1)
The indicator accurately shows the reversal points and price return zones where the   Major players . You see where new trends are forming and make decisions with maximum precision, maintaining control over every trade. VERSION MT5     -     Reveals its maximum potential when combined with the   TREND LINES PRO   indicator What the indicator shows: Reversal structures and reversal levels with activation at the beginning of a new trend. Display of   TAKE PROFIT   and   STOP LOSS   levels with mi
TPSpro RFI Levels
Roman Podpora
4.86 (28)
INSTRUCTIONS RUS   /   INSTRUCTIONS   ENG   -   VERSION  MT5 Main functions: Displays active zones of sellers and buyers! The indicator displays all the correct first impulse levels/zones for purchases and sales. When these levels/zones are activated, where the search for entry points begins, the levels change color and are filled with certain colors. Arrows also appear for a more intuitive perception of the situation. LOGIC AI - Display of zones (circles) for searching entry points when activa
Adaptive Volatility Range [AVR] is a powerful tool for identifying key trend reversal points. AVR accurately reflects the Average True Range (ATR) of volatility, taking into account the Volume-Weighted Average Price (VWAP). The indicator adapts to any market volatility by calculating the average volatility over a specific period, ensuring a stable rate of profitable trades. You receive not just an indicator but a professional automated trading system , AVR-EA . Advantages: Automated Trading Sys
Dynamic Forex28 Navigator
Bernhard Schweigert
4.43 (7)
Specials Discount now. The Next Generation Forex Trading Tool. Dynamic Forex28 Navigator is the evolution of our long-time, popular indicators, combining the power of three into one: Advanced Currency Strength28 Indicator (695 reviews) + Advanced Currency IMPULSE with ALERT (520 reviews) + CS28 Combo Signals (recent Bonus) Details about the indicator  https://www.mql5.com/en/blogs/post/758844 What Does The Next-Generation Strength Indicator Offer? Everything you loved about the originals, now
Super Reversal Indicator with Alert Overview Super Reversal Indicator with Alert is a multi timeframe trading tool designed to identify high probability market reversal opportunities using a combination of stochastic momentum, supply and demand zones, and price rejection signals. The indicator helps traders detect potential turning points in the market with clear visual signals and real time alerts. Key Features Multi Timeframe Stochastic Analysis Uses stochastic oscillator from a higher timefra
Free Test Drive Available (EURUSD & AUDUSD) Access via the official BlueDigitsFx Discord Server Test the indicator before upgrading to the full version BlueDigitsFx Easy 123 System — Powerful Reversal and Breakout Detection for MT4 All-In-One Non-Repaint System for Spotting Market Reversals and Breakouts – Built for Newbie and Expert Traders The BlueDigitsFx Easy 123 System is a visual and alert-based MT4 indicator that helps you detect market structure shifts, breakouts, and trend reversals w
Advanced Supply Demand
Bernhard Schweigert
4.91 (299)
Trading Special – 40% OFF Best Solution for any Newbie or Expert Trader! This indicator is a unique, high quality and affordable trading tool because we have incorporated a number of proprietary features and a new formula. With this update, you will be able to show double timeframe zones. You will not only be able to show a higher TF but to show both, the chart TF, PLUS the higher TF: SHOWING NESTED ZONES. All Supply Demand traders will love it. :) Important Information Revealed Maximize the pot
LIMITED TIME SALE - 30% OFF! WAS $50 - NOW JUST $35! Profit from market structure changes as price reverses and pulls back. The market structure reversal alert indicator identifies when a trend or price move is approaching exhaustion and ready to reverse. It alerts you to changes in market structure which typically occur when a reversal or major pullback are about to happen. The indicator identifies breakouts and price momentum initially, every time a new high or low is formed near a po
Currency Strength Wizard is a very powerful indicator that provides you with all-in-one solution for successful trading. The indicator calculates the power of this or that forex pair using the data of all currencies on multiple time frames. This data is represented in a form of easy to use currency index and currency power lines which you can use to see the power of this or that currency. All you need is attach the indicator to the chart you want to trade and the indicator will show you real str
Volatility Trend System - a trading system that gives signals for entries. The volatility system gives linear and point signals in the direction of the trend, as well as signals to exit it, without redrawing and delays. The trend indicator monitors the direction of the medium-term trend, shows the direction and its change. The signal indicator is based on changes in volatility and shows market entries. The indicator is equipped with several types of alerts. Can be applied to various trading ins
Super Signal Market Slayer No Repaint | High Accuracy | Multi-Market Intelligent Trend Indicator In trading, the real challenge is not placing an order, but clearly seeing when a trend has truly begun amid market noise. Market Slayer was created for this purpose. It is a no-repaint intelligent indicator designed specifically for intraday trading. Through multi-layer confirmation and trend-filtering logic, it delivers clear and reliable Buy / Sell signals only at key moments. Key Advantages No r
TrendLine PRO MT4
Evgenii Aksenov
4.83 (167)
The Trend Line PRO indicator is an independent trading strategy. It shows the trend change, the entry point to the transaction, as well as automatically calculates three levels of Take Profit and Stop Loss protection. Trend Line PRO is perfect for all Meta Trader symbols: currencies, metals, cryptocurrencies, stocks and indices. The indicator is used in trading on real accounts, which confirms the reliability of the strategy. Robots using   Trend Line PRO   and real Signals can be found here:   
Stratos Pali
Michela Russo
4.43 (7)
Stratos Pali Indicator   is a revolutionary tool designed to enhance your trading strategy by accurately identifying market trends. This sophisticated indicator uses a unique algorithm to generate a complete histogram, which records when the trend is Long or Short. When a trend reversal occurs, an arrow appears, indicating the new direction of the trend. Important Information Revealed Leave a review and contact me via mql5 message to receive My Top 5 set files for Stratos Pali at no cost! Dow
FX Power MT4 NG
Daniel Stein
4.95 (21)
FX Power: Analyze Currency Strength for Smarter Trading Decisions Overview FX Power is your go-to tool for understanding the real strength of currencies and Gold in any market condition. By identifying strong currencies to buy and weak ones to sell, FX Power simplifies trading decisions and uncovers high-probability opportunities. Whether you’re looking to follow trends or anticipate reversals using extreme delta values, this tool adapts seamlessly to your trading style. Don’t just trade—trade
Matrix Arrow Indicator MT4
Juvenille Emperor Limited
5 (3)
Matrix Arrow Indicator MT4  is a unique 10 in 1 trend following 100% non-repainting  multi-timeframe indicator that can be used on all symbols/instruments: forex, commodities, cryptocurrencies, indices, stocks.  Matrix Arrow Indicator MT4 will determine the current trend at its early stages, gathering information and data from up to 10 standard indicators, which are: Average Directional Movement Index (ADX) Commodity Channel Index (CCI) Classic Heiken Ashi candles Moving Average Moving Avera
Scalper Vault
Oleg Rodin
5 (36)
Scalper Vault is a professional scalping system which provides you with everything you need for successful scalping. This indicator is a complete trading system which can be used by forex and binary options traders. The recommended time frame is M5. The system provides you with accurate arrow signals in the direction of the trend. It also provides you with top and bottom signals and Gann market levels. The indicator provides all types of alerts including PUSH notifications. PLEASE CONTACT ME AFT
After purchase, contact me privately to receive 7 days of free testing with EA Forex Proton. This advanced MT4 trading robot automatically executes signals from any MT4 indicator, including Market Makers. The latest version also includes AI integration, allowing each trade signal to be analyzed using Artificial Intelligence. Market Makers is a powerful price action trading system designed to identify high-probability Buy and Sell opportunities based on market momentum, volatility, and price po
More from author
SuperTrend for MT5
Ulises Calderon Bautista
4.83 (6)
The popular "SuperTrend" indicator is a technical analysis tool that helps identify the direction of a trend and potential entry or exit points in financial markets. The indicator is based on the Average True Range (ATR), which measures market volatility based on price ranges. It's free on other platforms and there's no reason it shouldn't be here as well! It's commonly used in three ways: To Identify the Current Trend: When the price is above this line, it's considered an uptrend, and when the
FREE
UTBot Alerts
Ulises Calderon Bautista
5 (1)
UT Bot Alerts — ATR Trailing Stop System Faithful MQL5 & MQL4 conversion of the legendary "UT Bot Alerts" indicator by QuantNomad from TradingView. Originally developed by Yo_adriiiiaan with the core idea by HPotter, and refined into Pine Script v4 with alerts by QuantNomad (Vadim Cissa) — one of the most followed quant developers on TradingView with over 100K followers. The original script has accumulated 1.1 million+ views and 35,500+ favorites on TradingView, making it one of the most popular
FREE
BollingerRSI Strategy
Ulises Calderon Bautista
5 (1)
### Bollinger + RSI, Double Strategy v1.1 Faithful MQL4/MQL5 port of ChartArt's popular TradingView strategy (41,800+ users, 990+ favorites). Generates buy and sell signals only when **both indicators confirm simultaneously** — RSI momentum shift + Bollinger Band breakout on the same candle. **How it works** The strategy uses an unconventional configuration: a fast RSI(6) with its crossover level set at 50 (acting as a momentum direction filter, not an overbought/oversold detector), combined
FREE
Impulse MACD mt5
Ulises Calderon Bautista
### Impulse MACD [ LazyBear ] v1.0 Port of LazyBear's open-source TradingView indicator, which has accumulated over 8,700 favorites since its publication in 2015. It filters out false MACD signals by measuring momentum only when price breaks outside a smoothed moving average channel. #### How it works The indicator builds a channel using two Smoothed Moving Averages (SMMA) applied to the High and Low. A Zero-Lag EMA (mathematically equivalent to DEMA) is computed on the typical price (HLC3).
FREE
BollingerRSI Strategy MT4
Ulises Calderon Bautista
### Bollinger + RSI, Double Strategy v1.1 Faithful MQL4/MQL5 port of ChartArt's popular TradingView strategy (41,800+ users, 990+ favorites). Generates buy and sell signals only when **both indicators confirm simultaneously** — RSI momentum shift + Bollinger Band breakout on the same candle. **How it works** The strategy uses an unconventional configuration: a fast RSI(6) with its crossover level set at 50 (acting as a momentum direction filter, not an overbought/oversold detector), combined
FREE
Heikin Ashi Trend mt5
Ulises Calderon Bautista
Heikin Ashi Trend Indicator v2.1 MQL5/MQL4 port of the Heikin Ashi Trend Indicator originally published on TradingView by dman103 (2,300+ likes, 80,000+ views). It combines Heikin Ashi candle smoothing with the Tilson T3 moving average to produce clean, noise-reduced trend signals directly on the price chart. #### How it works The indicator processes price data in two stages. First, it computes Heikin Ashi OHLC values from the regular candlestick data. Then, it applies the Tilson T3 moving a
FREE
ADX and DI mt5
Ulises Calderon Bautista
### ADX and DI v1.00 Faithful MQL4/MQL5 port of BeikabuOyaji's "ADX and DI" indicator from TradingView, one of the most widely used ADX implementations on the platform with over 43,000 users. It displays +DI, −DI, and ADX in a single subwindow, using a hybrid smoothing approach — Wilder's method for the Directional Indexes and a simple moving average for the ADX line. #### How it works The indicator implements Welles Wilder's Directional Movement System with one notable variation in the fina
FREE
SuperTrend for MT4
Ulises Calderon Bautista
The popular "SuperTrend" indicator is a technical analysis tool designed to help identify trend direction and potential entry or exit points in financial markets. This indicator is built upon the Average True Range (ATR) , which gauges market volatility based on price ranges. It is available for free on other platforms, and this should be no exception! Common Use Cases The SuperTrend is typically utilized in three primary ways: Trend Identification: When the price is trading above the indicator
FREE
ADX and DI mt4
Ulises Calderon Bautista
### ADX and DI v1.00 Faithful MQL4/MQL5 port of BeikabuOyaji's "ADX and DI" indicator from TradingView, one of the most widely used ADX implementations on the platform with over 43,000 users. It displays +DI, −DI, and ADX in a single subwindow, using a hybrid smoothing approach — Wilder's method for the Directional Indexes and a simple moving average for the ADX line. #### How it works The indicator implements Welles Wilder's Directional Movement System with one notable variation in the fina
FREE
Impulse MACD mt4
Ulises Calderon Bautista
### Impulse MACD [ LazyBear ] v1.0 Port of LazyBear's open-source TradingView indicator, which has accumulated over 8,700 favorites since its publication in 2015. It filters out false MACD signals by measuring momentum only when price breaks outside a smoothed moving average channel. #### How it works The indicator builds a channel using two Smoothed Moving Averages (SMMA) applied to the High and Low. A Zero-Lag EMA (mathematically equivalent to DEMA) is computed on the typical price (HLC3).
FREE
Double or Triple EMA Envelope
Ulises Calderon Bautista
5 (1)
The Exponential Moving Averages (Double or Triple) Envelopes Indicator is a technical analysis tool designed to assist you in identifying trends and potential reversal points in the financial market. This indicator offers traders the flexibility to choose between two types of exponential moving averages: the Double Exponential Moving Average (DEMA) or the Triple Exponential Moving Average (TEMA). Key Features: Double or Triple Exponential: Switch between DEMA and TEMA based on your analysis pre
FREE
Heikin Ashi Trend mt4
Ulises Calderon Bautista
### Heikin Ashi Trend Indicator v2.1 MQL5/MQL4 port of the Heikin Ashi Trend Indicator originally published on TradingView by dman103 (2,300+ likes, 80,000+ views). It combines Heikin Ashi candle smoothing with the Tilson T3 moving average to produce clean, noise-reduced trend signals directly on the price chart. #### How it works The indicator processes price data in two stages. First, it computes Heikin Ashi OHLC values from the regular candlestick data. Then, it applies the Tilson T3
FREE
The "Envelope of Adaptive Moving Average" indicator is a tool to assist you in making informed decisions in the financial market. It is designed to provide you with a clear view of the trend direction and potential entry and exit points in your trades. This indicator is based on an adaptive moving average, which means it automatically adjusts to changes in market volatility. This makes it especially useful in markets that can be both calm and volatile. The indicator displays two lines that enve
FREE
Filter:
v9137397540
122
v9137397540 2026.04.04 14:12 
 

User didn't leave any comment to the rating

Reply to review