TendenciaPrecioFecha

AutoFindBestTrendLine — Detector Automático de Líneas de Tendencia

Descripción general: AutoFindBestTrendLine es una utilidad para MetaTrader 5 que analiza el historial del gráfico y detecta automáticamente la mejor línea de tendencia posible, ya sea de máximos (resistencias), mínimos (soportes) o ambos. El script identifica los dos puntos más relevantes y dibuja una línea óptima basada en el número de toques reales sobre el precio.

Ventajas principales:

  • Detección automática de líneas de tendencia sin intervención manual.

  • Funciona en cualquier símbolo y período.

  • Permite elegir entre análisis de máximos, mínimos o ambos.

  • Traza líneas con color, estilo y grosor configurables.

  • No elimina líneas anteriores: cada ejecución crea una nueva.

  • Ligero, rápido y sin consumo continuo de recursos (es un script).

  • Ideal para traders técnicos que buscan soportes y resistencias reales.

Cómo funciona: El script analiza todas las velas desde la fecha indicada y evalúa combinaciones de puntos para encontrar la línea con mayor número de toques. Una vez detectada, la dibuja automáticamente en el gráfico y muestra información detallada en el registro.

Parámetros de entrada:

  • InpStartDate — Fecha de inicio del análisis.

  • InpSearchMode — Tipo de búsqueda: Máximos, Mínimos o Ambos.

  • InpLineColor — Color de la línea de tendencia.

  • InpLineStyle — Estilo de línea (sólida, rayas, puntos).

  • InpLineWidth — Grosor de la línea (1 a 5).

Uso recomendado: Ejecute el script en cualquier gráfico para obtener una línea de tendencia óptima basada en el comportamiento real del precio. Útil para validar zonas de soporte/resistencia, detectar estructuras técnicas y complementar análisis manual.       //+------------------------------------------------------------------+

//|                                    AutoFindBestTrendLine.mq5     |

//|                                  Copyright 2026                  |

//|                                                                  |

//+------------------------------------------------------------------+

#property copyright "Copyright 2026"

#property link      ""

#property version   "1.31"

#property script_show_inputs


// Enumeración para elegir qué tipo de puntos analizar

enum ENUM_SEARCH_MODE

{

   SEARCH_BOTH = 0,       // Analizar Máximos y Mínimos

   SEARCH_HIGHS_ONLY = 1, // Solo Máximos (Resistencias)

   SEARCH_LOWS_ONLY = 2   // Solo Soportes (Mínimos)

};


// Parámetros de entrada configurables

input datetime        InpStartDate   = D'2026.01.01 00:00'; // Fecha de inicio del análisis

input ENUM_SEARCH_MODE InpSearchMode = SEARCH_BOTH;         // Modo de búsqueda

input color           InpLineColor   = clrDodgerBlue;       // Color de la línea de tendencia

input ENUM_LINE_STYLE InpLineStyle   = STYLE_SOLID;         // Estilo de línea (Sólida, Rayas, Puntos...)

input int             InpLineWidth   = 3;                   // Grosor de la línea (1 a 5)


//+------------------------------------------------------------------+

//| Script program start function                                    |

//+------------------------------------------------------------------+

void OnStart()

{

   // 1. Copiar datos de las barras del gráfico actual

   MqlRates rates[];

   ArraySetAsSeries(rates, true);

   int totalBars = CopyRates(_Symbol, _Period, 0, Bars(_Symbol, _Period), rates);

   

   if(totalBars < 5)

   {

      Print("Error: No hay suficientes barras en el gráfico para analizar.");

      return;

   }

   

   // Encontrar el índice de la barra que corresponde a la fecha de inicio seleccionada

   int startIndex = -1;

   for(int i = 0; i < totalBars; i++)

   {

      if(rates[i].time <= InpStartDate)

      {

         startIndex = i;

         break;

      }

   }

   

   if(startIndex < 0)

   {

      startIndex = totalBars - 1; // Si la fecha es más antigua que el historial, usa la más antigua disponible

   }

   

   Print("==================================================");

   Print(" INICIANDO BARRIDO AUTOMÁTICO");

   Print(" Desde: ", TimeToString(rates[startIndex].time, TIME_DATE|TIME_MINUTES), " | Velas analizadas: ", startIndex + 1);

   Print("==================================================");

   

   int bestTouches = -1;

   datetime bestT1 = 0, bestT2 = 0;

   double   bestP1 = 0.0, bestP2 = 0.0;

   string   lineTypeFound = "";

   

   // 2. Evaluar combinaciones según el modo seleccionado (ajustado para admitir gráficos cortos)

   int minLimit = MathMin(2, startIndex);

   for(int i = startIndex; i >= minLimit; i--)

   {

      for(int j = i - 1; j >= 0; j--)

      {

         datetime t1 = rates[i].time;

         datetime t2 = rates[j].time;

         if(t1 == t2) continue;

         

         // Evaluar Máximos

         if(InpSearchMode == SEARCH_BOTH || InpSearchMode == SEARCH_HIGHS_ONLY)

         {

            double p1 = rates[i].high;

            double p2 = rates[j].high;

            int touches = CountLineTouches(p1, t1, p2, t2, rates, startIndex);

            

            if(touches > bestTouches)

            {

               bestTouches = touches;

               bestT1 = t1; bestP1 = p1;

               bestT2 = t2; bestP2 = p2;

               lineTypeFound = "Resistencia (High-High)";

            }

         }

         

         // Evaluar Mínimos

         if(InpSearchMode == SEARCH_BOTH || InpSearchMode == SEARCH_LOWS_ONLY)

         {

            double p1 = rates[i].low;

            double p2 = rates[j].low;

            int touches = CountLineTouches(p1, t1, p2, t2, rates, startIndex);

            

            if(touches > bestTouches)

            {

               bestTouches = touches;

               bestT1 = t1; bestP1 = p1;

               bestT2 = t2; bestP2 = p2;

               lineTypeFound = "Soporte (Low-Low)";

            }

         }

      }

   }

   

   if(bestTouches <= 0)

   {

      Print("Aviso: No se pudo trazar ninguna línea. Prueba a poner una fecha de inicio más reciente (ej. hace pocos días) en los ajustes del script.");

      return;

   }

   

   // 3. Crear un nombre ÚNICO para que no borre las líneas anteriores

   string lineName = StringFormat("AutoTrend_%d", GetTickCount());

   

   if(ObjectCreate(0, lineName, OBJ_TREND, 0, bestT1, bestP1, bestT2, bestP2))

   {

      // Configurar diseño, rayos y permitir modificarla con el ratón

      ObjectSetInteger(0, lineName, OBJPROP_RAY_LEFT, true);

      ObjectSetInteger(0, lineName, OBJPROP_RAY_RIGHT, true);

      ObjectSetInteger(0, lineName, OBJPROP_COLOR, InpLineColor);

      ObjectSetInteger(0, lineName, OBJPROP_STYLE, InpLineStyle);

      ObjectSetInteger(0, lineName, OBJPROP_WIDTH, InpLineWidth);

      ObjectSetInteger(0, lineName, OBJPROP_SELECTABLE, true);

      ObjectSetInteger(0, lineName, OBJPROP_HIDDEN, false);

      

      ChartRedraw(0);

   }

   

   // 4. Mostrar información detallada en el registro (log)

   Print("==================================================");

   Print(" TENDENCIA ÓPTIMA ENCONTRADA Y GRAFICADA:");

   Print(" Nombre del objeto : ", lineName);

   Print(" Tipo detectado    : ", lineTypeFound);

   Print(" [COPIAR] Punto 1  -> Tiempo: ", TimeToString(bestT1, TIME_DATE|TIME_MINUTES), " | Precio: ", DoubleToString(bestP1, _Digits));

   Print(" [COPIAR] Punto 2  -> Tiempo: ", TimeToString(bestT2, TIME_DATE|TIME_MINUTES), " | Precio: ", DoubleToString(bestP2, _Digits));

   Print(" Velas tocadas     : ", bestTouches);

   Print("==================================================");

}


// Función auxiliar para contar los toques

int CountLineTouches(double p1, datetime t1, double p2, datetime t2, const MqlRates &rates[], int limitIndex)

{

   int touches = 0;

   double slope = (double)(p2 - p1) / (double)(t2 - t1);

   

   for(int k = limitIndex; k >= 0; k--)

   {

      datetime barTime = rates[k].time;

      double linePrice = p1 + (double)(barTime - t1) * slope;

      

      if(linePrice >= rates[k].low && linePrice <= rates[k].high)

      {

         touches++;

      }

   }

   return touches;

}


Recommended products
Tired of SMC indicators that clutter your chart with random lines and overlapping boxes, obstructing your view of the price action? The  Ultimate SMC Assistant  is not just another structure mapping indicator; it is a Smart AI Trader Assistant designed specifically for Smart Money Concepts (SMC) traders and for successfully passing Prop Firm evaluations. The indicator constantly scans the market to detect the freshest and strongest reversal zones, providing you with a professional live dashboard
FREE
Auric Mohd iK
Md Iqbal Kaiser
AURIC MOHD-iK is a dynamic, logic-based Expert Advisor (EA) engineered specifically for trading XAUUSD (Gold). Unlike standard trading systems that rely on lagging, unreliable indicators, this EA operates purely on clean price logic—executing trades the way an experienced human trader naturally reads the market. This version is completely free with limitations, offering permanent value to your trading setup with zero hidden costs. Active Auric Mode That's it!!!!!!!!!! Core Trading Parameters Ac
FREE
An updated version is now available free of charge. Ver. 034.33   is available. Basics Currency Pair: EUR-USD 5 Minute Display and set the 5-minute chart of EUR-USD. Adjustments may be necessary depending on the broker. In particular, entry is controlled by " エンベロープミドル偏差"  and the ATR 1H value. About Envelope Middle Deviation " エンベロープミドル偏差" is closer to 1.0, the easier it is to enter the market, but at the same time, the rate of being cut-risk increases. About  ATR EntryLimit   ATR Entry Li
FREE
What is SMC Market Structure Pro? SMC Market Structure Pro is an automated trading Expert Advisor for MetaTrader 5 , developed based on Smart Money Concept (SMC) and market structure analysis . The EA is designed to help traders follow the natural flow of the market , focusing on price structure instead of indicators or lagging signals. How Does the EA Work? The EA analyzes market structure changes using pure price action: Detects higher highs & higher lows for bullish structure Detects l
FREE
Artemis Gold HFT Throttle EA MT5 The wait is over — Artemis Gold HFT Throttle EA is now available for MetaTrader 5. Artemis Gold HFT Throttle EA MT5 is a Gold-focused Expert Advisor for XAUUSD traders who want fast short-term automation with controlled execution, intelligent guard protection and clear dashboard visibility. Most fast trading robots focus only on speed. In real broker conditions, speed without control can become a problem. Gold spreads can widen quickly, liquidity can change fast,
FREE
RangeRaider is a fully automated range-breakout Expert Advisor for MetaTrader 5. It identifies the consolidation range that forms around the session open, waits for a confirmed breakout, and opens a single position in the direction of the break with a fixed Stop Loss and Take Profit. The logic is clean and rule-based, without grid, martingale or averaging. How it works The EA measures the price range that builds up around the chosen session. When price breaks and confirms beyond that range, it
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
Crow Rango Indicator
Cristobal Hidalgo Soriano
CROW RANGO INDICATOR – Session Range Tool for MT5 Identify key market ranges clearly and automatically, and trade volatility with greater precision. CROW RANGO INDICATOR is designed for traders who focus on market sessions, range breakouts, and impulsive price movements , helping to visualize consolidation zones and potential entry points. MAIN FEATURES Draws up to 3 independent ranges per day Fully customizable start and end times Displays key levels: Range High Range Low Midline (eq
FREE
PROMETHEUS TECHNICAN VERSION Free | By THE SONS A gift from The Sons — no strings, no trial, no expiry. Every trader deserves access to professional-grade market intelligence. That belief is why Prometheus Technical Version exists, and why it costs nothing. Consider it our handshake to the trading community. What You're Getting This is not a simplified tool dressed up as a gift. Prometheus Technican Version is a fully built, institutional-quality technical analysis indicator running a dual-model
FREE
Banks Dealing Range
Aurthur Musendame
4 (1)
The Central Bank Dealers Range (CBDR) is a key ICT concept, used to project potential highs and lows for the day based on market conditions during a specific time window. The CBDR is utilized to forecast price movements in both bullish and bearish market conditions. By identifying this range, traders can better anticipate the price levels that may form as the day progresses. CBDR and Standard Deviation A key feature of the CBDR is its application of standard deviation , a statistical measure u
FREE
My other indicators: https://www.mql5.com/en/market/product/156702   (FREE) https://www.mql5.com/en/market/product/153968 (FREE) https://www.mql5.com/en/market/product/153960 (FREE) This indicator displays higher timeframe candles directly on your lower timeframe chart, allowing you to monitor higher timeframe price action without switching between charts. It also plots session highs and lows for the Asia, London, and New York kill zones, giving you key liquidity levels directly on your chart.
FREE
Hidden Edge – High-Low PreUS High-Low PreUS is a clean and lightweight indicator that marks key reference levels before the US session begins. It draws a session box from 00:01 to 09:00 CET, identifying the high and low of the Asian session, and includes additional reference elements to support structured intraday trading decisions. Features Draws a rectangular range from 00:01 to 09:00 CET Marks the high and low of the session clearly Plots a horizontal yellow line as a suggested stop level bas
FREE
Echelon EA
Daniel Suk
5 (1)
Echelon EA – Chart Your Unique Trading Constellation Like the celestial guides that lead explorers through the vast universe, Echelon EA empowers you to create and optimize your very own trading strategies. This versatile system combines advanced grid and martingale techniques with cutting‐edge indicators, offering you an endless palette for designing a strategy that is truly your own. Craft Your Personal Strategy: Infinite Possibilities – Customize every parameter to build a trading system t
FREE
NovaTac Volition Exit Commander is a position-aware MT5 exit indicator with separate BUY and SELL scores, closed-bar confirmation, trailing references and confluence-qualified management states. NovaTac Volition Exit Commander is a position-aware exit analysis indicator for MetaTrader 5. It evaluates conditions relevant to managing BUY and SELL positions and displays separate Close BUY and Close SELL scores.  The indicator combines momentum, trend strength, volatility, candle behaviour, marke
FREE
Failed Auction — Professional Failed Auction Detection MT5 Version 1.05  The Problem With Volume in CFDs Every serious trader understands that volume is the lifeblood of market analysis. It is the one variable that reveals intention behind price movement. Yet the vast majority of CFD instruments — indices, forex pairs, commodities — operate without access to centralized exchange volume. What brokers provide is tick volume: a raw count of price changes per bar, devoid of directional context. Most
FREE
unleash the Power of Automation: The Precision Bollinger Bands EA and  Stop Guessing. Start Executing. Let Our Algorithm Trade for You. Are you tired of staring at charts all day, battling emotions, and missing opportunities? Introducing the   Precision Bollinger Bands EA , your 24/7 automated trading partner engineered to systematically capitalize on market contractions and expansions. This isn't just another indicator; it's a complete, rule-based strategy packaged into a powerful Expert Adviso
FREE
Triple Indicator Pro
Ebrahim Mohamed Ahmed Maiyas
4 (4)
Triple Indicator Pro: ADX, BB & MA Powered Trading Expert Unlock precision trading with Triple Indicator Pro, an advanced Expert Advisor designed to maximize your market edge. Combining the power of the ADX (trend strength), Bollinger Bands (market volatility), and Moving Average (trend direction), this EA opens trades only when all three indicators align 1 - ADX (Average Directional Index) indicator – This indicator measures the strength of the trend, if the trend is weak, the expert avoids
FREE
Narrow Range Timeframe
Ricardo Rodrigues Lucca
4.5 (2)
This indicator utilizes the Narrow Range 7 concept . This concept says that if the seventh candle is the one with the smallest range, that is, the smallest difference between maximum and minimum of all 7 candles. The indicator marks this candle with two markers and waits for a breakout to happens in the next 6 candles. It's called "timeframe" because if in the next 6 candles the breakout not happens, it will remove all marks on candle. If it exceeds 7 times the timeframe, it also will remove the
FREE
MiEasyOrderMT5
Carlos Miguel Iriondo
5 (1)
Mi Easy Order MT5 es un programa diseñado para facilitar y optimizar la ejecución de operaciones de compra y venta en los mercados financieros, proporcionando al trader una herramienta práctica, precisa y confiable para la gestión del riesgo. Su objetivo principal es simplificar el proceso de entrada al mercado, eliminando cálculos manuales y reduciendo errores comunes que suelen producirse al momento de definir el tamaño de la posición. El sistema permite al usuario ingresar como parámetro el n
FREE
Gold Polaris AI
Shota Watanabe
5 (2)
Gold Polaris AI Non-Martingale / Non-Grid Design AI Trading System for Gold (XAUUSD H1) Overview Gold Polaris AI is an AI-based trading system specifically designed for XAUUSD (Gold) on the H1 timeframe. The model was trained using multiple ATR-based volatility features, allowing it to adapt to expanding and contracting volatility structures. The AI evaluates market conditions dynamically and automatically switches between trend-following and counter-trend logic. When the system detects trend
FREE
Nexus Breakout line
Mohammed Kaddour
5 (2)
INTRODUCTION : The breakout strength meter is a trading tool that is used to identify which currencies are the strongest to breakout, and which currencies are the weakest to breakout. The settings for the indicator are easy, and if you cannot find the settings, please leave a comment The tools are completely free to use Please, if you like the indicator, please leave a comment and rate the indicator in order to develop it
FREE
XAU M1 Trend Pro
Michail Manelidis
Advanced Gold Scalping Signal Indicator XAU M1 Trend Pro is a precision-built trend and signal indicator designed specifically for XAUUSD (Gold) on the M1 timeframe . It combines multi-layer filtering, volatility analysis, and smart scoring logic to deliver high-quality BUY and SELL signals while avoiding market noise. Built for traders who demand accuracy, speed, and consistency in fast-moving gold markets. Key Features Smart Buy & Sell Signals Generates real-time alerts when high-probabili
FREE
Steady Runner NP EA
Theo Robert Gottwald
2.5 (2)
Introducing Steady Runner NP EA (Free Version): Precision Trading for GBPUSD M5 What is Steady Runner NP EA? Steady Runner NP EA is a   mathematically designed Expert Advisor (EA)   exclusively crafted for the   GBPUSD M5 timeframe . Built with advanced algorithms and statistical models, this EA automates your trading strategy to deliver   precision, consistency, and discipline   in every trade. Whether you're a seasoned trader or just starting out, Steady Runner NP EA is your reliable par
FREE
Cybertrade Keltner Channels
Emanuel Andriato
4.67 (6)
Cybertrade Keltner Channels - MT5 Created by Chester Keltner, this is a volatility indicator used by technical analysis. It is possible to follow the trend of financial asset prices and generate support and resistance patterns. In addition, envelopes are a way of tracking volatility in order to identify opportunities to buy and sell these assets. It works on periods longer than the period visible on the chart. All values ​​are available in the form of buffers to simplify possible automations.
FREE
Babel Assistant
Iurii Bazhanov
4.33 (9)
Babel assistant 1     The MT5 netting “Babel_assistant_1” robot uses the ZigZag indicator to generate Fibonacci levels on M1, M5, M15, H1, H4, D1, W1  periods of the charts , calculates the strength of trends for buying and selling. It opens a position with "Lot for open a position" if the specified trend level 4.925 is exceeded. Then Babel places pending orders at the some Fibonacci levels and places specified Stop Loss , Take Profit. The screen displays current results of work on the position
FREE
How it works –   Base-departure detection — algorithmically finds consolidation bases (overlapping range with compressed volatility) followed by displacement departures. Patterns: Drop-Base-Rally, Rally-Base-Drop, Rally-Base-Rally, Drop-Base-Drop — detected structurally, not by candle names. –   Strength score (0–100) — from departure velocity, time-at-base, freshness (each revisit decays the score), higher-timeframe confluence and origin volume. –   Lifecycle — Fresh, Tested (decaying), Broken
FREE
FlatBreakout MT5
Aleksei Vorontsov
3 (1)
FlatBreakout MT5 (Free Version) Flat Range Detector and Breakout Panel for MT5 — GBPUSD Only FlatBreakout MT5   is the free version of the professional FlatBreakoutPro MT5 indicator, specially designed for flat (range) detection and breakout signals on the   GBPUSD   pair only. Perfect for traders who want to experience the unique fractal logic of FlatBreakout MT5 and test breakout signals on a live market without limitations. Who Is This Product For? For traders who prefer to trade breakout of
FREE
PZ Goldfinch Scalper EA MT5
PZ TRADING SLU
3.33 (57)
This is the latest iteration of my famous scalper, Goldfinch EA, published for the first time almost a decade ago. It scalps the market on sudden volatility expansions that take place in short periods of time: it assumes and tries to capitalize of inertia in price movement after a sudden price acceleration. This new version has been simplified to allow the trader use the optimization feature of the tester easily to find the best trading parameters. [ Installation Guide | Update Guide | Troublesh
FREE
This indicator uses a different approach from the previous version to get it's trendlines. This method is derived from Orchard Forex, and the process of making the indicator is demonstrated in there video   https://www.youtube.com/watch?v=mEaiurw56wY&t=1425s . The basic idea behind this indicator is it draws a   tangent line   on the highest levels and lowest levels of the bars used for calculation, while ensuring that the lines don't intersect with the bars in review (alittle confusing? I know
FREE
QuantumAlert Stoch 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 p
FREE
Buyers of this product also purchase
Trade Assistant MT5
Evgeniy Kravchenko
4.43 (214)
It helps to calculate the risk per trade, the easy installation of a new order, order management with partial closing functions, trailing stop of 7 types and other useful functions. Additional materials and instructions Installation instructions - Application instructions - Trial version of the application for a demo account Line function -   shows on the chart the Opening line, Stop Loss, Take Profit. With this function it is easy to set a new order and see its additional characteristics bef
Forex Trade Manager MT5
InvestSoft
4.98 (668)
Trade Manager MT5 is an advanced position size calculator and trade management tool for MetaTrader 5, designed to help traders plan trades faster, control risk more precisely, and manage open positions directly from the chart. It combines order placement, risk based lot calculation, Stop Loss and Take Profit management, Break Even, Trailing Stop, Partial Close, Equity Protection, and external trade management in one panel. Whether you trade forex, indices, metals, commodities, crypto, or future
Local Trade Copier EA MT5
Juvenille Emperor Limited
4.95 (143)
Experience exceptionally fast trade copying with the   Local Trade Copier EA MT5 . With its easy 1-minute setup, this trade copier allows you to copy trades between multiple MetaTrader terminals on the same Windows computer or Windows VPS with lightning-fast copying speeds of under 0.5 seconds. Whether you're a beginner or a professional trader, the   Local Trade Copier EA MT5   offers a wide range of options to customize it to your specific needs. It's the ultimate solution for anyone looking t
Beta Release The Telegram to MT5 Signal Trader is nearly at the official alpha release. Some features are still under development and you may encounter minor bugs. If you experience issues, please report them, your feedback helps improve the software for everyone. Telegram to MT5 Signal Trader is a powerful tool that automatically copies trading signals from Telegram channels or groups directly to your MetaTrader 5 account. It supports both public and private Telegram channels, and you can conn
TradePanel MT5
Alfiya Fazylova
4.88 (162)
Trade Panel is a multi-functional trading assistant. The app contains over 50 trading functions for manual trading and allows you to automate most trading tasks. Before making a purchase, you can test the demo version on a demo account. Download the trial version of the application for a demonstration account: https://www.mql5.com/en/blogs/post/750865 . Full instructions here . Trade. Allows you to perform trading operations in one click: Open pending orders and positions with automatic risk cal
FarmedHedge Pair Trading Dashboard
Tanapisit Tepawarapruek
5 (3)
Farmed Hedge Yield Farming | All Markets (Manual - Hybrid - Semi/Automated EA) MULTI-ASSET SUPPORT Trade any asset available on your broker - Forex: Major, Minor, Exotic pairs - Crypto: BTC, ETH, XRP, SOL, BNB - Stocks: Apple, Tesla, Amazon, Google, etc. - Commodities: Gold, Silver, Oil, Gas - Indices: US30, NAS100, SPX500, DAX40 - Any CFD your broker offers VERIFIED TRADING RESULTS - Farmed Hedge Yield Axi Copy:  https://www.mql5.com/en/signals/2356376 - Farmed Hedge Yield Exn Copy:   https:/
Telegram to MT5 Multi-Channel Copier automatically copies trading signals from your Telegram channels directly into MetaTrader 5. No bots, no browser extensions, no manual copying. You receive a signal on Telegram and the EA opens the trade on your terminal in a few seconds. The product includes two components: a Windows application that listens to your Telegram channels, and this Expert Advisor that executes the signals on your MT5 terminal. An MT4 version is also available. Setup guide and app
Power Candles Strategy Scanner - Self-Optimizing Multi-Symbol Setup Finder Power Candles Strategy Scanner runs the same self-optimizing engine that powers the Power Candles indicator - on every symbol in your Market Watch, side by side. One panel tells you which symbols are statistically tradable right now, which strategy wins on each, the optimal Stop Loss / Take Profit pair, and pings you the moment a fresh signal fires. This tool is part of the Stein Investments ecosystem - 18+ tools plus Max
Anchor Trade Manager
Kalinskie Gilliam
5 (5)
Anchor: The EA Manager Run your full EA portfolio without conflicts, without stacked risk, and without watching every chart yourself. Anchor coordinates up to 64 Expert Advisors on a single account, including daily loss protection built for prop firm rules. Attach Anchor to any chart. Type your EA names and magic numbers in one line. Click OK. Anchor begins coordinating immediately. Built for portfolios. Built for prop firms. Built for discipline. The Problem Running multiple EAs on the same acc
Exp COPYLOT CLIENT for MT5
Vladislav Andruschenko
3.94 (34)
Professional Trade Copier for MetaTrader 5 Fast, professional, and reliable trade copier for MetaTrader . COPYLOT allows you to copy Forex trades between MT4 and MT5 terminals with support for Hedge and Netting accounts. COPYLOT MT5 version supports: - MT5 Hedge to MT5 Hedge - MT5 Hedge to MT5 Netting - MT5 Netting to MT5 Hedge - MT5 Netting to MT5 Netting - MT4 to MT5 Hedge - MT4 to MT5 Netting MT4 version Full Description +DEMO +PDF How To Buy How To Install How to get Log Files H
================================================================================ POC BREAKOUT - V20.72. Full Professional Grade Toolkit ================================================================================ POC Breakout is a full MetaTrader 5 trading dashboard for discretionary traders who want breakout signals, Point of Control (POC) context, volume profiles, order flow, market structure, news, alerts, and advanced trade planning in one professional workspace. Attached directly to you
Footprint Chart Pro — Professional OrderFlow EA for MetaTrader 5 Version 6.34 | Professional tool for real traders | Institutional-Grade Visualization DEMO USERS - PLEASE SELECT EVERY TICK / REAL TICK WHEN TESTING AND YOU HAVE DOWNLOADED HISTORICAL DATA. IF YOU SEE A WAITING SCREEN AND IT IS NOT DOWNLOADING, IT MEANS YOU HAVE LOW HISTORICAL DATA. TRY 1 MIN AND 5 MIN FIRST ON 1 DAY DATA. ONE DAY DATA SHOULD BE THE NEWEST AND MOST CURRENT DATE. PLEASE WAIT UNTIL THE MARKET HAS ROLLED OVER PERIOD.
Trade copier MT5
Alfiya Fazylova
4.59 (49)
Trade Copier is a professional utility designed to copy and synchronize trades between trading accounts. Copying occurs from the account / terminal of the supplier to the account / terminal of the recipient, which are installed on the same computer or VPS . PROMOTION - If you have already purchased the "Trade Copier MT5," you can receive the "Trade Copier MT4" for free (for copying MT4 > MT5 and MT4 < MT5). For more detailed information about the conditions, please contact us via private message
The product will copy all telegram signal to MT5 ( which you are member) , also it can work as remote copier.  Easy to set up, copy order instant, can work with almost signal formats, image signal,  s upport to translate other language to English Work with all type of channel or group, even channel have "Restrict Saving Content", work with  multi channel, multi MT5 Work as remote copier: with signal have ticket number, it will copy exactly via ticket number. Support to backtest signal. How to s
VirtualTradePad One Click Trading Panel
Vladislav Andruschenko
4.59 (74)
Trading Panel for MetaTrader 5 — professional one-click trading from chart and keyboard A powerful trading panel for active manual trading, designed to open, manage, and close trades far faster and more efficiently than the standard MetaTrader interface. This panel is built for traders who want full control over positions, pending orders, profit management, and trading execution inside one professional workspace. This is not just another utility. It is a complete trading cockpit for MetaTrader
EasyInsight AIO MT5
Alain Verleyen
4.92 (12)
EASY Insight AIO – All-In-One Power for AI-Driven Trading Want to skip the setup and start scanning the entire market – Forex, Gold, Crypto, Indices, and even Stocks – in seconds? EASY Insight AIO is the complete plug-and-play solution for AI-powered trade analysis. It includes all core Stein Investments indicators built-in and automatically exports clean, structured CSV files – perfect for backtesting, AI prompts, and live market decision-making. No need to install or configure indicators manu
Premium Trade Manager - The Trade Panel With a Coach Built In Premium Trade Manager puts a trading coach inside your chart, with a full execution engine underneath it. Set the trade up the way you always do, then let Max, your AI trading coach, read that exact setup against your live account and give you a straight verdict before you commit: is the stop disciplined, is the risk sane, is a high-impact release minutes away, are you near a prop-firm limit. Below sits the engine that runs everything
Trade Manager DaneTrades
Levi Dane Benjamin
4.28 (29)
DaneTrades Trade Manager is a professional trade panel for MetaTrader 5, designed for fast, accurate execution with built‑in risk control. Place market or pending orders directly from the chart while the panel automatically calculates position size from your chosen risk, helping you stay consistent and avoid emotional decision‑making. The Trade Manager is built for manual traders who want structure: clear risk/reward planning, automation for repeatable management, and safeguards that help reduc
EA Auditor
Stephen J Martret
5 (4)
EA Auditor is an independent analysis tool for traders evaluating Expert Advisors and trading signals on MetaTrader 5. It audits backtest reports, reviews posted developer signals, and cross-verifies the two against each other to help traders assess strategies before committing capital. The MQL5 market offers a wide range of Expert Advisors from many developers, with varying approaches, quality, and transparency. EA Auditor provides a consistent, data-driven framework for reviewing them, answer
HINN MagicEntry Extra
ALGOFLOW OÜ
4.75 (16)
LIMITED SUMMER SALE -40% !   ONLY $30 insead of $50!  Maximum real discount! HINN MAGIC ENTRY – the ultimate tool for entry and position management! Place orders by selecting a level directly on the chart! full description   ::  demo-version  :: 60-sec-video-description Key features: - Market, limit, and pending orders - Automatic lot size calculation - Automatic spread and commission accounting - Unlimited partitial take-profits  - Breakeven and trailing stop-loss and take-profit  functions -
Seconds Chart MT5
Boris Sedov
4.61 (18)
Seconds Chart is a unique tool for creating second-based charts in MetaTrader 5 . With Seconds Chart , you can construct charts with timeframes set in seconds, providing unparalleled flexibility and precision in analysis that is unavailable with standard minute or hourly charts. For example, the S15 timeframe indicates a chart with candles lasting 15 seconds. You can use any indicators and Expert Advisors that support custom symbols. Working with them is just as convenient as on standard charts.
HINN Lazy Trader
ALGOFLOW OÜ
5 (1)
LIMITED SUMMER SALE -40% ! ONLY $470 insead of $790!  Maximum real discount! The core idea: using the user interface, you configure the parameters the chart must meet before entering a position (or positions), choose which entry models to use, and set the rules for when trading and planning should end. Lazy Trader  handles the rest: it  takes over all the routine chart watching and execution! full description  :: 3 key videos [1] ->  [2]   ->  [3] What can it do? - Understands Larry Williams
Working Demo Download Copy Cat More Trade Copier MT5 is a local trade copier and a complete risk management and execution framework designed for today’s trading challenges. From prop firm challenges to personal portfolio management, it adapts to every situation with a blend of robust execution, capital protection, flexible configuration, and advanced trade handling. The copier works in both Master (sender) and Slave (receiver) modes, with real-time synchronization of market and pending orders,
Quant AI Agents
Ho Tuan Thang
5 (1)
Quant AI Agents are independent trading Expert Advisors. Instead of trading using a fixed strategy like other conventional EAs, Quant AI Agents   is a   multi-agent AI trading framework   that turns natural-language strategy prompts into live.  WANT THE SAME RESULTS AS MY LIVE SIGNAL?   Use the exact same brokers I do:   IC MARKETS , IC TRADING   .  Unlike the centralized stock market, Forex has no single, unified price feed.  Every broker sources liquidity from different providers, creating un
Trade Dashboard MT5
Fatemeh Ameri
4.95 (131)
Trade Dashboard simplifies how you open, manage, and control your trades, with built-in lot size calculation. It allows you to execute trades, manage risk, and control positions directly on the chart, with tools such as partial close, breakeven, and trailing stop. Designed to reduce manual work and help you stay focused on your trading decisions. A demo version is available for testing. Detailed explanations of features are provided within the MQL5 platform. Installation instructions are include
The News Filter MT5
Leolouiski Gan
4.78 (23)
This product filters   all expert advisors and manual charts   during news time.  It is able to remove any of your EA during news and automatically reattach them after news ends. This product also comes with a complete  order management system   that can handle your open positions and pending orders before the release of any news. Once you purchase   The News Filter , you will no longer need to rely on built-in news filters for future expert advisors, as this product can filter them all from her
Trader Evolution
Siarhei Vashchylka
5 (7)
" Trader Evolution " - A utility designed for traders who use wave and technical analysis in their work. One tab of the utility is capable of money management and opening orders, and the other can help in making Elliott wave and technical analysis. Manual (Be sure to read before purchasing) | Version for MT4 Advantages 1. Trading in a few clicks. Immediate and pending orders are available in the panel 2. Money management. The program automatically selects the appropriate lot size 3. Simplifies
EA Performance Tracker
Russell Leeon Tan
5 (2)
EA Performance Tracker (AESTracker) A clean, modern dashboard that shows exactly how your trades and EAs are performing — right on your chart. It reads your full account history automatically and breaks down the numbers by magic number / strategy. Display only — it does not place any trades. What it shows - Account header: live Balance, Equity, and Open (floating) P/L - Profit summary: gross profit, net profit, and the exact commission & swap deducted - Key stats: win rate, profit factor, exp
Welcome to ENTRY IN THE ZONE WITH SMC MULTI TIMEFRAME Entry In The Zone with  SMC Multi Timeframe  is a professional trading indicator built on Smart Money Concepts (SMC), combining market structure analysis with a No Repaint BUY / SELL signal system in a single indicator. It helps traders understand market structure more clearly, identify key price zones, and focus on higher-quality trading opportunities. By combining Multi-Timeframe Analysis, Points of Interest (POIs), and real-time signals, t
YuClusters
Yury Kulikov
4.93 (43)
Attention: You can view the program operation in the free version  YuClusters DEMO .  YuClusters is a professional market analysis system. The trader has unique opportunities to analyze the flow of orders, trade volumes, price movements using various charts, profiles, indicators, and graphical objects. YuClusters operates on data based on Time&Sales or ticks information, depending on what is available in the quotes of a financial instrument. YuClusters allows you to build graphs by combining da
Filter:
No reviews
Reply to review