UT Bot Alerts for MT4

5
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

Reviews 2
sarmat68
34
sarmat68 2026.05.19 07:18 
 

Отлично .С доп фильтром 100% сигнал.

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
Auto Supply and Demand Oscillator is an indicator for MetaTrader 4 and MetaTrader 5 that detects supply and demand zones automatically and displays them as a single oscillator value at the bottom of the chart, instead of drawing rectangles directly on price. Concept Supply zones are price areas where strong selling created a sharp downward move away from a balance area. Demand zones are price areas where strong buying created a sharp upward move. Traditional implementations draw boxes on the
FREE
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
CryptoTrend
Paulo Martins Barbosa
4 (2)
<h3>CryptoTrend</h3> <p> <b>CryptoTrend</b> is the free edition of a rule-based cryptocurrency Expert Advisor created for traders who want to test the product philosophy and core execution style before using the full version. </p> <h3>Overview</h3> <p> This EA is designed around the idea of participating in relevant crypto price trends through structured rules and controlled execution. It avoids dangerous recovery methods and focuses on practical automated trading. </p> <p> There is no marti
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
Darvas Flow
Komang Putra Riswanjaya
5 (1)
Darvas Flow Indicator is a revolutionary trading indicator that combines the classic Darvas Box method with modern market flow analysis. Developed for serious traders, Darvas Flow offers a powerful and intuitive tool for identifying trading opportunities. Key Features Darvas Box Method Implementation : Darvas Flow automatically identifies Darvas boxes, allowing you to see crucial support and resistance levels. This helps in pinpointing optimal entry and exit points in your trades. Dynamic Flow
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
Buyers of this product also purchase
Genesis Matrix Pro is a professional multi-timeframe trend detection indicator designed to help traders identify high-quality market alignment with clarity and structure. It combines 12 different technical indicators into one visual alignment matrix, allowing traders to quickly see when market conditions are bullish, bearish, or neutral. A signal is generated only when the selected strategies are aligned, helping reduce noise and improve decision-making. PLEASE CONTACT ME AFTER PURCHASE TO GET
Gann Made Easy
Oleg Rodin
4.83 (163)
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
The Propfolio Master Suite is the ultimate all-in-one analytical workstation for professional traders. Combining the power of the Beat The Market Maker (BTMM) methodology, Smart Money Concepts (SND/Liquidity), and Advanced Volume Profile, this suite replaces multiple different indicators with one optimized engine. Monitor up to 14 pairs simultaneously from a single chart, instantly identify market cycles, and seamlessly map institutional footprints with the click of a button. The Command Center
Scalper Inside PRO
Alexey Minkov
4.74 (69)
Scalper Inside PRO Scalper Inside PRO is an intraday trend and scalping indicator for MetaTrader 4 that uses an exclusive algorithm to quickly detect market direction and key target levels. It automatically calculates entry, exit and multiple profit targets, and shows detailed performance statistics so you can see how different instruments and strategies performed. This helps you choose the most suitable trading instruments for the current market conditions. Additionally, you can easily integrat
M1 Sniper
Oleg Rodin
5 (23)
M1 SNIPER 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
PRO Renko System
Oleg Rodin
5 (30)
PRO Renko System is a highly accurate trading system specially designed for trading RENKO charts. The ARROWS and Trend Indicators DO NOT REPAINT! The system effectively neutralizes so called market noise giving you access to accurate reversal signals. The indicator is very easy to use and has only one parameter responsible for signal generation. You can easily adapt the tool to any trading instrument of your choice and the size of the renko bar. I am always ready to provide extra support to help
Auto Optimized Parabolic RSI: Advanced 3D Momentum Engine Most retail indicators fail because they rely on static inputs that break the moment market volatility shifts. Auto Optimized Parabolic RSI solves the problem of "indicator decay" by continuously recalculating its own mathematical edge, bringing institutional-grade quantitative adaptation directly to your MT5 terminal. The Core Advantage: Custom In-Memory 3D Optimization   Standard auto-optimizers often freeze the MT5 platform because the
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
First of all Its worth emphasizing here that this Trading Tool is Non-Repainting Non-Redrawing and Non-Lagging Indicator Which makes it ideal for professional trading . [Online course] ,   and   [manual] The Smart Price Action Concepts Indicator is a very powerful tool for both new and experienced traders . It packs more than 20 useful indicators into one combining advanced trading ideas like Inner Circle Trader Analysis and Smart Money Concepts Trading Strategies . This indicator focuses on Sm
Quants HL Break
Ferhat Mutlu
5 (2)
Advanced calculation made by pure price action to find LH and HL breakouts. It will give you a great reversal points in the market. LH and HL signals can used for the traingle breakouts as well. Once breakout happens its indicate strong reversal. Nice filter for Moving Averages. I highly suggest to use that with trend indicators. Can be used as an extra confirmation for support and resistance , supply demand indicators. The indicator is not repainting. Buffers :   SetIndexBuffer ( 0 ,UpBar);
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
PZ Harmonacci Patterns
PZ TRADING SLU
3.17 (6)
Trade smarter, not harder: Empower your trading with Harmonacci Patterns This is arguably the most complete harmonic price formation auto-recognition indicator you can find for the MetaTrader Platform. It detects 19 different patterns, takes fibonacci projections as seriously as you do, displays the Potential Reversal Zone (PRZ) and finds suitable stop-loss and take-profit levels. [ Installation Guide | Update Guide | Troubleshooting | FAQ | All Products  ] It detects 19 different harmonic pric
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
Trend Catcher ind
Ramil Minniakhmetov
TREND CATCHER INDICATOR Trend Catcher Indicator analyzes market price movements, using a combination of the author’s proprietary and customized adaptive trend-analysis indicators.  It identifies the true market direction by filtering out short-term noise and focusing on underlying momentum strength, volatility expansion, and price structure behavior.  It also uses a combination of smoothing and trend-filtering customized indicators such as moving averages, RSI, and volatility filters.   Real ope
Apollo SR Master is a Support/Resistance indicator with special features which make trading with Support/Resistance zones easier and more reliable. The indicator calculates Support/Resistance zones in real-time without any time lag by detecting local price tops and bottoms. Then to confirm the newly formed SR area, the indicator shows special signal which signalizes that the SR zone can be taken into consideration and used as an actual SELL or BUY signal. In this case the strength of the SR zone
Grabber System
Ihor Otkydach
5 (2)
Let me introduce you to an excellent technical indicator – Grabber, which works as a ready-to-use "All-Inclusive" trading strategy. Within a single code, it integrates powerful tools for technical market analysis, trading signals (arrows), alert functions, and push notifications. Every buyer of this indicator also receives the following for free: Grabber Utility for automatic management of open orders Step-by-step video guide: how to install, configure, and trade with the indicator Custom set fi
Advanced Supply Demand
Bernhard Schweigert
4.91 (300)
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
GoldRush Trend Arrow Signal V1.6 The GoldRush Trend Arrow Signal indicator V1.6 continues to provide precise, real-time trend analysis tailored for high-speed, short-term scalpers in XAU/USD , but it now has additional features and improved efficiency and reliability. Built specifically for the 1-minute time frame, this tool displays directional arrows for clear entry points, allowing scalpers to navigate volatile market conditions with confidence. The indicator consists of PRIMARY and SECONDARY
Introduction to Fractal Pattern Scanner Fractal Indicator refers to the technical indicator that makes use of the fractal geometry found in the financial market. Fractal Pattern Scanner is the advanced Fractal Indicator that brings the latest trading technology after the extensive research and development work in the fractal geometry in the financial market. The most important feature in Fractal Pattern Scanner is the ability to measure the turning point probability as well as the trend probabi
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 only ONE chart you can read Currency Strength for 28 Forex pairs! Imagine how your trading will improve because you are able to pinpoint the exact trigger point of a new trend or scalping opportunity? User manual: click here That's the first one, the original! Don't buy a
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
Market Structure Patterns MT4
Samuel Manoel De Souza
5 (18)
Market Structure Patterns   is an indicator based on   smart money concepts   that displays   SMC/ICT   elements that can take your trading decisions to the next level. Take advantage of the   alerts ,   push notifications   and   email messages   to keep informed from when an element is formed on the chart, the price crosses a level and/or enters in a box/zone. Developers can access the values of the elements of the indicator using the   global variables  what allows the automation of trading d
Advanced UT BOT ALERTS for MT4 Professional Multi-Filter Trend Detection System | Enhanced UT BOT Engine We only provide high-quality indicators.  Advanced UT BOT is built for professional use, featuring a stable signal logic and secure calculation process that prevents any delays or false updates. It does not repaint, redraw, remove, or modify past signals in any way. All BUY and SELL signals are generated only after the candle has closed , ensuring consistent accuracy and reliability. There is
Contact me after purchase to get Bonus EA based on this indicator. The Self Optimizing Double MA Strategy is a professional-grade trading tool designed to eliminate parameter guesswork. Powered by a built-in auto-optimization engine, it continuously adapts to shifting market conditions by simulating thousands of parameter combinations in the background to maintain a statistical edge. Instead of relying on static, outdated settings, the indicator dynamically updates its own logic to find the mos
Day Trader Master is a complete trading system for traders who prefer intraday trading. The system consists of two indicators. The main indicator is the one which is represented by arrows of two colors for BUY and SELL signals. This is the indicator which you actually pay for. I provide the second indicator to my clients absolutely for free. This second indicator is actually a good trend filter indicator which works with any time frame. THE INDICATORS DO NOT REPAINT AND DO NOT LAG! The system is
Candle Power Pro
Thushara Dissanayake
4.5 (8)
The   Candle Power Pro   is a sophisticated trading tool designed to decode   real volume pressure, tick data imbalances, and institutional order flow dynamics   by measuring the   battle between bull ticks and bear ticks   in real time. This indicator transforms raw   volume data into actionable insights , helping traders identify   Smart Money movements, liquidity hunts, and hidden market psychology   behind each price candle. By analyzing   buyer/seller volume percentages, divergence pattern
If you trade Forex, having detailed information about the currency strength and currency pairs correlation can take your trading to new heights. The correlation will help to cut your risk in half, and strength analysis will help to maximize the profits. This indicator provides a hybrid approach for selecting the most appropriate currency pairs using the strength analysis and currency pairs correlation. How to use the Currency Strength Analysis Suppose your trading strategy provides a buying opp
CRT Candle Range Theory HTF MT4.   Ultimate CRT Indicator: Advanced ICT Concepts and Malaysian SnR Trading System Discounted   Price   $50  !!     Secure your lifetime access   now   before it switches to   subscription-only ! Master the Market Maker's Footprints with the Most Advanced Candle Range Theory Indicator Unlock the true power of   Smart Money Concepts (SMC)   and trade precisely like the institutions with the   Ultimate CRT Indicator . Built exclusively for serious traders, this indic
Route Lines Prices is an indicator designed for finding price directions. Its simple interface contains multiple algorithms for price behavior and future direction calculations. These algorithms include volatility calculations and price smoothing based on the timeframes used. The indicator has a single parameter for changing the " Calculating Price Values " value. The default value of 1 provides a balanced automatic calculation, which can be used without manually configuring the indicator. By m
KURAMA GOLD SIGNAL PRO (MT4) — Complete XAUUSD Trading System with 7-Layer Filter, Auto TP/SL, and Quality Scoring NON-REPAINTING. NON-REDRAWING. NON-LAGGING. Every signal is permanent. What you see is what you get. BONUS: Buy the lifetime license and receive AI Zone Radar ($59 value) + full PDF manual FREE. Message me after purchase. AI Zone Radar: https://www.mql5.com/en/market/product/175834 TRUSTED BY TRADERS: Already used by an active community of Gold traders. Praised for accuracy and
More from author
UTBot Alerts
Ulises Calderon Bautista
4.5 (2)
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
SuperTrend for MT5
Ulises Calderon Bautista
4.38 (8)
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
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
Donchian Channels trend mt5
Ulises Calderon Bautista
5 (1)
### Donchian Channels Trend v1.0 A trend-following breakout indicator that encapsulates price action within a dynamic envelope based on historical highs and lows. Originally conceptualized for TradingView, this tool provides a clear visualization of the directional bias using state memory. **How it works** The algorithm calculates the absolute maximum and minimum values over a specified lookback period. It utilizes a finite state machine (FSM) to maintain the current trend direction based on s
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
Donchian Channels trend mt4
Ulises Calderon Bautista
### Donchian Channels Trend v1.0 A trend-following breakout indicator that encapsulates price action within a dynamic envelope based on historical highs and lows. Originally conceptualized for TradingView, this tool provides a clear visualization of the directional bias using state memory. **How it works** The algorithm calculates the absolute maximum and minimum values over a specified lookback period. It utilizes a finite state machine (FSM) to maintain the current trend direction based on s
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
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
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
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
Coral
Ulises Calderon Bautista
### Coral Trend Indicator v1.0 The Coral Trend Indicator is a faithful port of LazyBear's TradingView script (10,900+ favorites) to MetaTrader 4 and MetaTrader 5. It applies Tim Tillson's T3 Moving Average algorithm (1998) as a color-coded trend filter on the price chart. #### How it works The indicator passes the price through six cascaded Exponential Moving Averages, then combines stages 3 through 6 using binomial polynomial coefficients derived from the Constant D parameter. This pro
FREE
Coral mt4
Ulises Calderon Bautista
### Coral Trend Indicator v1.0 The Coral Trend Indicator is a faithful port of LazyBear's TradingView script (10,900+ favorites) to MetaTrader 4 and MetaTrader 5. It applies Tim Tillson's T3 Moving Average algorithm (1998) as a color-coded trend filter on the price chart. #### How it works The indicator passes the price through six cascaded Exponential Moving Averages, then combines stages 3 through 6 using binomial polynomial coefficients derived from the Constant D parameter. This pro
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
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
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
Telemetry
Ulises Calderon Bautista
Exobeacon Telemetry is a sentiment analysis overlay that shows in real time how current news is impacting the markets you trade. The product consumes the Exobeacon Labs backend (proprietary backend at api.exobeacon.com ), which monitors 49 news sources and processes each batch with semantic LLM analysis. The result: a consolidated sentiment score per asset, updated every minute, visualized directly on your chart. Unlike generic economic calendars or unprocessed RSS feeds, Exobeacon Telemetry int
FREE
ExoPanels
Ulises Calderon Bautista
English ### ExoPanels v7.1 ExoPanels v7.1 is an analysis panel for MetaTrader 5 that displays correlations, returns, and statistical metrics for several symbols in one view. Its main purpose is to help identify overexposure between assets and compare market behavior without constantly switching charts. #### How it works The indicator reads the configured symbols, loads historical data from the active timeframe, and calculates a Pearson correlation matrix using the selected method. It a
Filter:
sarmat68
34
sarmat68 2026.05.19 07:18 
 

Отлично .С доп фильтром 100% сигнал.

v9137397540
122
v9137397540 2026.04.04 14:12 
 

User didn't leave any comment to the rating

Reply to review