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 4
sarmat68
34
sarmat68 2026.05.19 07:18 
 

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

Recommended products
High/Low Daily Levels is a robust, lightweight, and precision-engineered technical indicator designed for MetaTrader 4. It plots the High and Low prices of the trading session as clean, horizontal dashed lines directly on your active chart. Whether you trade breakouts, trend continuations, or mean-reversion strategies around key session boundaries, this indicator ensures you always have precise visual references without cluttering your workspace. Key Features: * Dual Mode Operation: Choose be
FREE
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
Silver Bullet MT4
Saksham Solanki
5 (2)
Contact me for any queries or custom orders, if you want to use this in an EA. Key Features: Pattern Recognition : Identifies Fair Value Gaps (FVGs) Spots Break of Structure (BOS) points Detects Change of Character (CHoCH) patterns Versatile Application : Optimized for candlestick charts Compatible with any chart type and financial instrument Real-Time and Historical Analysis : Works seamlessly with both real-time and historical data Allows for backtesting strategies and live market analysis Vi
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
After purchasing the Tpx Dash Supply Demand indicator, you must download this indicator which will link and feed market data to the Tpx Dash Supply Demand indicator and will provide all Supply Demand price signals, ATR Stop, VAH and VAL, trend values ​​with the ADX, and POC prices and locations in the market. Just download it and Dash will locate the indicator to retrieve the information!
FREE
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
Our offer also includes a free panel — Indicator Panel — which allows you to show or hide indicators created by BOToBRACIA ->  MT4  /   MT5 Our offer also includes a version for MetaTrader 5 ->  https://www.mql5.com/en/market/product/171195?source=Site+Market+Product+Page Pivot Points   are a classic technical analysis indicator that calculates the central pivot point (PP) as well as support (S1–S3) and resistance (R1–R3) levels based on the previous day’s High, Low, and Close. The indicator
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
4 (4)
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. Send me a  Message and Get A Free Gift : ABCD  Symbol Scanner Dashboard! EA Version : Price
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
Buyers of this product also purchase
M1 Sniper
Oleg Rodin
5 (27)
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
Neuro Poseidon MT4
Daria Rezueva
4.8 (45)
Neuro Poseidon is a new indicator by Daria Rezueva. It combines precise trading signals with adaptive TP/SL levels - creating best possible trades as a result! Message me and get  Neuro Poseidon Assistant  as a gift to automize your trading process! What makes it stand out? 1. Proven profitability on all assets and timeframes 2. Only confirmed BUY and SELL signals present on the chart 3. Adaptive TP & SL levels generated by the software for each trade 4. Easy to understand - suitable for all
SR Liquidity
Oleg Rodin
5 (2)
SR Liquidity is a trading indicator designed to reveal the hidden zones where market liquidity concentrates and price reacts most strongly. These special liquidity areas act as powerful support and resistance levels, giving you a clear map of where the market is most likely to reverse. Instead of drawing ordinary Support/Resistance lines, SR Liquidity analyzes real price behavior to detect the zones where buying and selling pressure accumulate. These are actually the pools of liquidity that driv
DayTrader PRO MT4
Davit Beridze
4.33 (3)
DayTrader PRO (Buy DayTrader PRO and Get another Paid Self Optimizing indicator for Free as Bonus) DayTrader PRO   is an advanced trading indicator that combines John Ehlers' Laguerre Filter with a powerful Auto-Optimization Engine. Instead of using fixed parameters, the indicator automatically searches for the best settings based on recent market conditions, helping you adapt to changing volatility without constant manual adjustments. The indicator generates clear   BUY   and   SELL   signals
Atomic Analyst
Issam Kassas
5 (12)
This product was   updated   for   the 2026 market   and   optimized   for the   latest MT5 builds. PRICE UPDATE NOTICE: Atomic Analyst is currently available for $99. The price will increase to $199 after the next 30 purchases. SPECIAL OFFER:  After purchasing Atomic Analyst, send me a private message to claim the Smart Universal EA for FREE and turn your Atomic Analyst signals into automated trades. Atomic Analyst is a non-repainting, non-redrawing, and non-lagging price action trading indic
Zoryk Gold mt4
Reda El Koutbane
5 (1)
discount ends soon original price 69 $ ZORYK — Advanced XAUUSD Signal System for MetaTrader 4 You know the feeling. You spend time analyzing gold. You wait for the entry. You finally open the trade, and price immediately moves against you. You close too early, move the Stop Loss, or hesitate for a few seconds. Then the market reaches the exact destination you originally expected without you. The direction was not always the problem. The real problem was uncertainty. You did not know exactl
Gann Made Easy
Oleg Rodin
4.84 (171)
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
Trading Special – 30% OFF Best Solution for any Newbie or Expert Trader! This dashboard software is working on 28 currency pairs plus one. It is based on 2 of our main indicators (Advanced Currency Strength 28 and Advanced Currency Impulse). It gives a great overview of the entire Forex market plus Gold or 1 indices. It shows Advanced Currency Strength values, currency speed of movement and signals for 28 Forex pairs in all (9) timeframes. Imagine how your trading will improve when you can watch
Scalper Inside PRO
Alexey Minkov
4.74 (69)
Scalper Inside PRO helps you read the intraday trend and plan a trade before you enter the market. It is built around three exclusive strategies for a sharper read of the market. The moment a signal appears, the indicator evaluates market direction and calculates the key levels, so you see the potential entry, the expected stop-loss and several profit-taking levels in advance. Detailed performance statistics show how different instruments and strategies performed in history and help you pick ass
Advanced Supply Demand
Bernhard Schweigert
4.91 (302)
Trading Special – 30% 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
Presenting one-of-a-kind Gann Indicator for XAUUSD IQ Gold Gann Levels is a non-repainting, precision tool designed exclusively for XAUUSD intraday trading. It uses W.D. Gann’s square root method to plot real-time support and resistance levels, helping traders spot high-probability entries with confidence and clarity. William Delbert Gann (W.D. Gann) was an exceptional market analyst whose trading technique was based on a complex blend of mathematics, geometry, astrology, and ancient calculation
Forex Breath System is a trend based trading system which can be used with any market. You can use this system with currencies, metals, commodities, indices, crypto and even stocks. It can also be used with any time frame. The system is universal. It shows trend and provides arrow signals with the trend. The indicator can also provide you with a special type of alerts when the signals appear in the direction of the trend which makes trend trading an easy task. The indicator is very easy to use a
BTMM State Engine Pro by G-Labs — Beat The Market Maker indicator for MetaTrader 4. Asian session range, London and New York kill zones, level progression (L1/L2/L3), peak formation detection (PFH/PFL), entry signals, and a multi-pair scanner from one chart. Stop scanning charts one pair at a time. The State Engine tracks the BTMM daily cycle automatically — Asian box, room boundaries, level blocks, peak formations, and filtered entries — while the scanner dashboard shows level, peak status,
KT Renko Patterns MT4
KEENBASE SOFTWARE SOLUTIONS
2.33 (3)
KT Renko Patterns identifies eight formations on an existing live Renko chart and draws the pattern structure, a stop-loss reference, and Fibonacci target levels directly on the chart. Set up the Renko chart first. MetaTrader does not create Renko charts by default. Open a live Renko chart with the generator of your choice, then attach this indicator to that chart. The indicator analyzes Renko bricks. It does not create the bricks or place trades. As new bricks arrive, the indicator watches for
PRO Renko System
Oleg Rodin
5 (31)
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
Prop Firm Sniper
Mohamed Hassan
4.33 (6)
Prop Firm Sniper MT4  is a professional market structure indicator that automatically identifies high-probability BUY and SELL opportunities using BOS and CHoCH analysis. Recommended Timeframes: For backtesting, use the indicator on   M5 or M15   for Gold (XAUUSD), and   M15 or H1   for more volatile Forex pairs such as   GBPUSD, USDJPY, EURGBP , and similar markets. CONTACT ME AFTER PURCHASE TO CLAIM YOUR FREE BONUSES! Prop Firm Sniper  is a professional market structure indicator designed t
IQ FX Gann Levels a precision trading indicator based on W.D. Gann’s square root methods . It plots real-time, non-repainting support and resistance levels to help traders confidently spot intraday and scalping opportunities with high accuracy. William Delbert Gann (W.D. Gann) was an exceptional market analyst, whose trading technique was based on a complex blend of mathematics, geometry, astrology, and ancient mathematics which proved to be extremely accurate. Setup & Guide:  Download  MT5 Ver
This product was   updated   for the   2026 market   and   optimized   for the   latest MT5 builds . PRICE UPDATE NOTICE: Smart Trend Trading System   is currently available for $99. The price will   increase to $199   after the next   30 purchases. SPECIAL OFFER:  After purchasing Smart Trend Trading System, send me a private message to claim the Smart Universal EA for FREE and turn your Smart Trend signals into automated trades. Smart Trend Trading System is a complete non-repainting, non-re
PZ Divergence Trading
PZ TRADING SLU
5 (2)
Unlock hidden profits: accurate divergence trading for all markets Tricky to find and scarce in frequency, divergences are one of the most reliable trading scenarios. This indicator finds and scans for regular and hidden divergences automatically using your favourite oscillator. [ Installation Guide | Update Guide | Troubleshooting | FAQ | All Products ] Easy to trade Finds regular and hidden divergences Supports many well known oscillators Implements trading signals based on breakouts Display
Finesia Sniper
Robby Suhendrawan
Finesia Scalper - High Probability & Non-Repainting System Discounted   Price   !!     Secure the Lowest Price Today. Next The price will increase to   250 USD . Are you looking for a powerful, high-probability trading indicator that removes the guesswork from your chart? Finesia Scalper is a professional-grade, 100% non-repainting trading tool designed to provide you with ultimate precision. Built on a proven algorithm, this indicator seamlessly combines three highly effective trading methodolo
Angle Iindicator - is an indicator for identifying direction changes and trend confirmation. It analyzes price behavior and identifies reversal points, identifying peaks and troughs on the chart. It supports trend directions. Suitable for use on any financial instruments and timeframes. The internal parameters are already configured; all you need to do is place the indicator on the chart and set the "Multiplier" parameter for the desired result. The indicator generates arrows on the current ca
Friends, we present to your attention our new Forex Gump Laser indicator. Since there are no designers in our team, but mainly mathematicians, financiers, programmers and traders, we did not make any special changes in the indicator design. In appearance, it resembles the usual Forex Gump. On the other hand, Forex Gump has become not just the name of an indicator, it is a brand. And we try to preserve the corporate identity in all its varieties. The whole essence of the indicator in its operatio
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
Money Flow Profile MT5 HERE   Here   our more valuable tools SMC Trend Trading   ,  Easy SMC Trading  ,  Institutional SMC Architect Volume Analysis Tools  ,  Volume flow Profile  ,  Market volume profile  , FVG with Volume  , Liquidity Heatmap Profile  ,  Volume Spread Analysis This Master Edition is engineered for clarity and speed, featuring a unique Auto-Theme Sync system that instantly beautifies your chart layout upon loading. Key Features: True Money Flow Calculation: Goes beyond stand
Super Signal – Skyblade Edition Professional No-Repaint / No-Lag Trend Signal System with Exceptional Win Rate | For MT4 / MT5 It works best on lower timeframes, such as 1-minute, 5-minute, and 15-minute charts. Core Features: Super Signal – Skyblade Edition is a smart signal system designed specifically for trend trading. It applies a multi-layered confirmation mechanism to detect only strong, directional moves supported by real momentum. This system does not attempt to predict tops or bottoms
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
KURAMA GOLD SIGNAL PRO (MT4) — 7-Layer Filter, Auto TP/SL, Quality Score & Signal History Save | Complete XAUUSD Trading System No repaint in real time. The moment a signal appears, the arrow, entry, TP and SL are locked on the spot and never move afterward. What you trade is this real-time signal. And in v7.20, every signal that is actually sent is auto-saved and restored exactly after restart. BUYER BONUS Buy the lifetime license and receive AI Zone Radar (
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
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
Trend Catcher ind
Ramil Minniakhmetov
5 (11)
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
More from author
SuperTrend for MT5
Ulises Calderon Bautista
4.44 (9)
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
4.75 (4)
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
Donchian Channels trend mt5
Ulises Calderon Bautista
5 (2)
### 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
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
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
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
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
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
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
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
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 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
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
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
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
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
Correlated MT5
Ulises Calderon Bautista
## English ### Correlated MT5 v8.1 Correlated MT5 v8.1 is a multi-symbol Expert Advisor for MetaTrader 5 that analyzes asset baskets, correlation, and mean reversion. It can be used as a market-reading dashboard or as an automated system with exposure, position sizing, and risk controls. #### How it works - Builds a basket with 3 to 10 symbols and normalizes their prices. - Calculates a correlation matrix and can filter noise with Random Matrix Theory. - Entries require a minimum corre
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:
Paulo Whitaker
39
Paulo Whitaker 2026.08.15 20:56 
 

User didn't leave any comment to the rating

grafinja
171
grafinja 2026.07.27 09:16 
 

User didn't leave any comment to the rating

Ulises Calderon Bautista
16873
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