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;

}


推荐产品
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
XAU Structure Pullback H1 Expert Advisor for MetaTrader 5 — Gold / XAUUSD focus Version: 1.00 What it is XAU Structure Pullback H1 is an Expert Advisor for gold on the H1 chart. Architecture is simple and deliberate: Impulse — a clear directional displacement is identified on structure. Pullback band — price retraces into a mapped structure participation band. Continue — the system joins the continuing direction with selectable exit style. Built for structured automated participation — not grid
FREE
Artemis Gold HFT Throttle EA MT5 等待结束了 — Artemis Gold HFT Throttle EA 现已支持 MetaTrader 5。 Artemis Gold HFT Throttle EA MT5 是一款专注于黄金交易的智能交易系统,面向希望在 XAUUSD 上进行快速短线自动化交易,同时拥有受控执行、智能保护机制和清晰仪表盘显示的交易者。 大多数快速交易机器人只关注速度。但在真实经纪商环境中,没有控制的速度可能会成为问题。黄金点差可能迅速扩大,流动性可能快速变化,订单修改可能被拒绝,而过于激进的交易请求行为可能导致不稳定的结果。 Artemis 基于一个不同的原则: 受控速度比失控速度更具可持续性。 此 MT5 版本基于经过验证的 MT4 v1.4 Artemis Gold HFT Throttle EA 构建,并将产品带到 MetaTrader 5 平台,提供更清晰的仪表盘、更强的诊断功能、兼容 MT5 的执行处理,并支持 hedging 和 netting 两种账户环境。 在 netting 账户中,持仓作为该交易品种的合并风险敞口进
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
Analyze Less. Understand More. Trade with Greater Confidence. BMAE (Best Market Analyser Edge) is a semi-automated trading assistant designed to help beginner, intermediate, and experienced traders analyze the markets more efficiently, identify high-probability trading opportunities, and gradually build their trading independence. Less hesitation. More structure. More confidence in every trading decision. Trading Shouldn't Be This Complicated... At first, everything seems simple. You open a char
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 Analyst
Humphrey Mangera
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. Wh
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
BKT Adaptive RSI EA 一款适用于 MetaTrader 5 的多策略 RSI 交易系统,将经典的均值回归入场方式与可选的背离及失败摆动确认相结合,通过加仓管理模型和移动止盈锁定退出机制进行操作。 BKT Adaptive RSI EA 是一款围绕相对强弱指数(RSI)构建的自动化交易系统。它提供五种可选的内部平滑方法,并在 RSI 输出之上增加一个可选的第二层平滑,使同一核心逻辑既可以表现得像经典震荡指标,也可以表现为更慢、更平滑的信号线。交易管理通过加仓模型进行:如果价格朝不利于持仓的方向移动,EA 可以在更大的距离处加开订单,最终的持仓组合会以固定止盈目标关闭,或通过移动止盈锁定关闭。该 EA 需要对冲账户,因为买单和卖单是作为独立的持仓组合进行跟踪的。 概述 基础策略寻找 RSI 离开超卖或超买区域的时机:当 RSI 跌破超卖水平后再次回升至该水平之上时形成买入信号,卖出信号则在超买水平对称形成。可选过滤器可要求 RSI 先达到更深的极值,交叉才被视为有效,从而减少阈值附近浅幅波动产生的信号。当持仓处于亏损状态且价格持续朝不利方向移动时,一旦达到最小不利距离且同
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
MT5 Tick Data - 真实历史报价数据 附加材料和说明 完整手册   -   MT4 版本   -   MT5 版本 正在寻找真实报价数据以验证和回测您的智能交易系统和指标?您找到了! 我们的 MT5 Tick Data 套餐可在我们的网站上获取,为 MetaTrader 5 提供真实的历史报价数据,使您的策略测试在真实市场条件下运行,使用真实的可变点差,而非估算价格。从报价数据下载中心下载报价数据,并使用一键安装程序将其直接安装到您选择的 MetaTrader 5 中,大约只需十分钟。您的智能交易系统和指标无需任何更改即可正常工作,由于使用了真实报价,MetaTrader 可达到最高的建模质量。 核心优势: 26 个交易品种,超过 20 年的历史数据,从 2003 年起,涵盖外汇、指数、金属、能源和加密货币 真实的可变点差,提供低、中、高点差配置 每月更新,一键轻松安装 每个交易品种的详细数据来源和质量报告 独立采集的数据 您可以通过我们的   个人主页   中的链接,在我们的网站上获取 MT5 Tick Data 套餐 Tick And Spread Logger
FREE
XAU Anchored VWAP Pull H4 Expert Advisor for MetaTrader 5 — Gold / XAUUSD focus Version: 1.00 What it is XAU Anchored VWAP Pull H4 is an Expert Advisor for gold on the H4 chart. Anchored VWAP pullback continuation style for gold H4. Built for structured automated participation — not grid , not martingale . Evaluate on your broker and risk profile before any live use. This product is a technical system . Exact thresholds and entry equations remain internal product design and are not published he
FREE
Failed Auction
Giorgi Abuladze
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
La Medusa
Sami Triki
To discover the MAGIC of this EA: 1- Download the  Demo 2- Backtest it with an initial capital of 100$ on any JPY pair (it works best with USDJPY ) on a 1min Timeframe . 3- Select a period of minimum 3 years  (not necessarily the last 3 years) for the backtest. YOU WILL NOT BELIEVE THE RESULTS!!! You can find the results of my backtests in the screenshots I uploaded. This strategy exploits JPY pair volatility, utilizing tight risk and trade management to maximize gains from impulsive movements w
Triple Indicator Pro
Ebrahim Mohamed Ahmed Maiyas
3.67 (3)
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
Simply moving average
Massimo Boncompagni
Discover the skill of entering the market at the right moment by harnessing the power of the 26-period EMA. With advanced risk management, intelligent volume control, and effortless automation, this strategy holds the key to success. Don't let the opportunity slip away – embrace the EMA Precision 1.0 Strategy now! The strategy works perfectly with EURUSD on a 1-minute time frame. Limited-Time Promotion!! (Offer valid until the next update arrives, don't waste time) For any information, contac
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
Hot Zone
Manuel Fernandez Barranco
https://www.mql5.com/es/users/manu28487/seller XBK System Hot Zone — Live Buyer vs. Seller Power Indicator for MT5 Stop reading a quiet price chart. Start watching the fight. XBK War Zone turns your MetaTrader 5 chart into a live battlefield between buyers and sellers. The entire chart background splits into two semi-transparent color zones — one for sellers, one for buyers — and the dividing frontier moves in real time as the balance of power shifts. No grid, no native volume histogram, no clu
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
AutoChannel Angular
Diego Alejandro Guzman
AutoChannel Angular Dibuje automáticamente canales de tendencia dinámicos utilizando regresión lineal AutoChannel Angular es un indicador para MetaTrader 5 que genera automáticamente canales de tendencia mediante un algoritmo basado en regresión lineal . Analiza el comportamiento del precio dentro de un período configurable y proyecta un canal compuesto por una línea superior, una línea media y una línea inferior, proporcionando una referencia objetiva sobre la dirección predominante del mercado
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
该产品的买家也购买
Trade Assistant MT5
Evgeniy Kravchenko
4.41 (216)
它有助于计算每笔交易的风险,容易安装新的订单,具有部分关闭功能的订单管理, 7 种类型的追踪止损和其他有用的功能。   附加材料和说明 安装说明   -   应用程序说明   -   模拟账户应用程序的试用版 线条功能  - 在图表上显示开仓线、止损线、止盈线。 有了这个功能,就可以很容易地设置一个新的订单,并在开仓前看到它的附加特性。   风险管理  - 风险计算功能在考虑到设定的风险和止损单的大小的情况下,计算新订单的成交量。它允许你设置任何大小的止损,同时观察设定的风险。 批量计算按钮 - 启用 / 禁用风险计算。 在 " 风险 " 一栏中设置必要的风险值,从 0 到 100 的百分比或存款的货币。 在 " 设置 " 选项卡上选择风险计算的变量: $ 货币, % 余额, % 资产, % 自由保证金, % 自定义, %AB 前一天, %AB 前一周, %AB 前一个月。   R/TP 和 R/SL - 设置止盈和止损的关系。 这允许你设置相对于损失的利润大小。 例如, 1 : 1 - 这决定了 TP = SL 的大小。 2 : 1 - 这意味着 TP 是 SL 的两倍。 RR -
欢迎来到 Trade Manager EA——这是一个终极风险管理工具,旨在使交易变得更直观、精准和高效。它不仅仅是一个下单工具,而是一个用于无缝交易计划、仓位管理和风险控制的全面解决方案。不论您是新手交易员、资深交易员,还是需要快速执行的剥头皮交易员,Trade Manager EA 都可以满足您的需求,适用于外汇、指数、大宗商品、加密货币等各种市场。 借助 Trade Manager EA,复杂的计算已成过去。只需分析市场,在图表上用水平线标记入场、止损和止盈,设置您的风险水平,Trade Manager 就会立即计算出理想的头寸规模,并实时显示以点、账户货币计价的止损和止盈。每笔交易都得以轻松管理。 主要功能: 头寸规模计算器 :根据定义的风险瞬间确定交易规模。 简单的交易计划 :在图表上用可拖动的水平线直接计划交易,设置入场、止损和止盈。 实时显示 SL 和 TP :以账户货币、点或分显示止损和止盈,便于分析。 高级保护工具 盈亏平衡选项 : 基本盈亏平衡 :当您的交易达到设定水平时自动保护利润。 多级盈亏平衡 :设置多达 4 个级别以逐步保护利润。 尾随止损选项 : 基本尾随
Farmed Hedge Yield Farming | All Markets (Manual - Hybrid - Semi/Automated EA) VERIFIED TRADING RESULTS - Farmed Hedge Yield Axi Copy:  https://www.mql5.com/en/signals/2356376 - Farmed Hedge Yield Exn Copy:   https://www.mql5.com/en/signals/2356404 - Farmed Hedge Yield V Copy:  https://www.mql5.com/en/signals/2357156 * Before purchasing, please feel free to send me a message if you have any questions about the product or setup. - You can test the system using Strategy Tester: Visual Mode , a
测试版发布 Telegram to MT5 Signal Trader 即将进入正式的 Alpha 版本。一些功能仍在开发中,您可能会遇到一些小错误。如果您遇到问题,请反馈,您的意见将帮助我们改进软件。 Telegram to MT5 Signal Trader 是一款强大的工具,能够将 Telegram 频道或群组的交易信号自动复制到您的 MetaTrader 5 账户。 支持公开和私人频道,可将多个信号提供者连接至一个或多个 MT5 账户。软件优化、高效、稳定,精准控制每笔复制交易。 界面简洁,仪表盘美观,图表交互性佳,导航直观。您可以管理多个信号账户,自定义每个提供者的设置,并实时监控所有操作。 系统需求 由于 MQL 限制,EA 需要配合 PC 端应用与 Telegram 通信。 安装程序可通过官方 安装指南 获取。 核心功能 多提供者支持: 从多渠道复制信号至多个 MT5 帐户 高级信号识别: 关键词、模式和标签全面自定义 逐提供者控制: 可启用/禁用特定信号类型、平仓策略等 灵活风险管理: 固定手数、固定金额、余额/权益百分比、部分平仓设置 可定制 SL/TP: 覆盖信号
TradePanel MT5
Alfiya Fazylova
4.88 (167)
交易面板是一款多功能交易助手。该应用包含超过50种手动交易功能,并允许您自动执行大多数交易任务。 应用程序说明 + 视频教程: https://www.mql5.com/zh/blogs/post/761102 用于模拟账户的应用程序试用版: https://www.mql5.com/zh/blogs/post/762579 如何安装应用程序: https://www.mql5.com/zh/blogs/post/762580 如何在可视化模式下测试应用程序: https://www.mql5.com/zh/blogs/post/770278 如何在VPS MetaTrader上安装应用程序: https://www.mql5.com/zh/blogs/post/770196 贸易. 只需单击一下即可执行交易操作: 打開掛單和頭寸,並自動計算風險。 一鍵打開多個訂單和頭寸。 打開訂單網格。 按組別關閉掛單和頭寸。 反轉頭寸方向(關閉買入>打開賣出,關閉賣出>打開買入)。 鎖定頭寸(通過開啟缺少的頭寸,使買入和賣出頭寸的數量相等)。 一鍵部分關閉所有頭寸。 將所有頭寸的止盈和止損設置在同
Local Trade Copier EA MT5
Juvenille Emperor Limited
4.94 (148)
通过 Local Trade Copier EA MT5 获得非常快速的交易复制体验。它的简单1分钟设置,使您可以在同一台Windows计算机或Windows VPS上在多个MetaTrader终端之间复制交易,具有闪电般快速的复制速度,低于0.5秒。 无论您是初学者还是专业交易者, Local Trade Copier EA MT5 都提供了广泛的选项,可根据您的特定需求进行自定义。对于任何希望增加利润潜力的人来说,这都是终极解决方案。 今天就尝试一下,看看为什么它是市场上最快、最简单的贸易复印机! 提示: 您可以在您的模拟账户中下载并试用 Local Trade Copier EA MT5 模拟版: 这里 将下载的免费演示文件粘贴到您的 MT5 >> 文件 >> 打开数据文件夹 >> MQL5 >> 专家文件夹并重新启动您的终端。  免费演示版本每次可在 4 小时内发挥全部功能,仅限演示帐户。 要重置试用期,请转至 MT5 >> 工具 >> 全局变量 >> Control + A >> 删除。 请仅在非关键模拟账户上执行此操作,不要在挑战道具公司账户中执行此操作。 如果您无法
================================================================================ 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
EA Overfitter
Stephen J Martret
回测看起来很漂亮。但它明天、下周、下个月还能继续赚钱吗? EA Overfitter 让您的 EA 在 100 段它从未见过的价格历史上重新运行。一个分数告诉您这个优势是否真实。 回测告诉您的,是 EA 在某一段价格历史上的表现——那段恰好发生过的历史。您无法从中判断,这个结果有多少来自策略本身,又有多少只是那一条特定路径带来的。 EA Overfitter 回答的正是这个问题。它构建最多 100 段您的 EA 从未交易过的合成价格历史,让策略在全部这些历史上重新运行,并展示它所产生的完整结果区间。您得到的不再是一条幸运或不幸路径上的单个数字,而是一幅真实的图景:策略在陌生数据上多久能赚钱、典型结果是什么样(而不是最好的那一次),以及您的回测离它有多远。 这些世界是由您自己的近期历史重建而成,因此这不是预测——任何从历史数据出发的检验都不可能是预测。它告诉您的是:这个优势是否依赖于价格的某一种特定排列,以及回测数字距离典型结果有多远。在投入资金之前,这才是值得回答的问题。 三个步骤 1. 构建。在图表上选择时间区间和世界数量,然后按 Build。EA Overfitter 会
Telegram to MT5 Multi-Channel Copier   可将您 Telegram 频道中的交易信号自动复制到 MetaTrader 5。无需机器人、无需浏览器扩展、无需手动复制。信号一到 Telegram,EA 几秒内就在您的终端开仓。 产品包含两个组件:一个监听您 Telegram 频道的 Windows 应用程序,以及在 MT5 终端执行信号的本 EA。同时提供 MT4 版本   点此 . 设置指南与应用下载: https://www.mql5.com/en/blogs/post/768988 工作原理 Windows 应用通过您自己的 API 凭据连接 Telegram——不是机器人。这意味着它可以读取您订阅的任何频道、群组或话题,包括私有和 VIP 频道。您还可以把直接给您发消息的信号机器人、私聊,甚至自己的"收藏夹"(Saved Messages)用作信号来源。检测到信号后,应用会解析并交给 EA。EA 按您的经纪商解析品种名称,按您的风险设置计算手数并开仓。 整个过程全自动,无需守在电脑前。专为 24/7 无人值守运行设计:Telegram 连接断开
Astro Trade MT5
Indra Maulana
5 (5)
25% discount on the release of the tool: only for the next 3 buyers Send a message to receive a demo version. AstroTrade Trading Assistant AstroTrade is a comprehensive multi-functional trading utility developed for the MetaTrader 5 platform. It integrates essential tools for trade execution, risk management, and technical monitoring into a single unified interface. The application is designed to assist traders in managing their daily operations through a visual and structured environment. Vi
HINN MagicEntry Extra
ALGOFLOW OÜ
4.74 (19)
HINN MAGIC ENTRY – the ultimate tool for entry and position management! SIMPLE. FASTEST. INTUITIVE. MAX AUTOMATED. 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 - Invalidation leves - Intuitive, a
Premium Trade Manager - 内置交易导师的图表面板 Premium Trade Manager 将一位交易导师嵌入您的图表,并在其下搭载完整的执行引擎。像往常一样建立交易,然后让您的 AI 交易导师 Max 读取这笔具体的交易,结合您的实时账户给出直接判断,再由您决定是否下单:止损是否符合纪律化交易的要求、风险规模是否合理、高影响新闻事件是否即将发布、您是否接近资金盘限额。其下是完整的执行引擎,负责点击之后的一切:一键按风险下单、您在图表上拖动规划且交易进行中仍可随时调整的计划、最多四个分批止盈级别、七种移动止损方式、实时资金盘合规检查、新闻屏蔽保护,以及对自身成本进行评级的点差功能。决策由您做出。Max 给出第二次审视。面板负责此后的一切。 购买前先亲手体验。 直接在浏览器中点击实时面板,这是在购买前感受其工作方式的最快途径。 stein.investments/products/premium-trade-manager Max 是您的一对一 AI 交易导师,他直接内置于面板之中。  他了解您的账户、您的设置和您的规则,用您自己的语言回答,并在每笔交易下单前进
Exp COPYLOT CLIENT for MT5
Vladislav Andruschenko
3.97 (35)
适用于 MetaTrader 5 的专业交易复制器 快速、专业、稳定可靠的 交易复制器 ,适用于 MetaTrader 。 COPYLOT 可在 MT4 和 MT5 终端之间复制 Forex 交易,并支持 Hedge 和 Netting 账户。 COPYLOT 的 MT5 版本支持: - MT5 Hedge → MT5 Hedge - MT5 Hedge → MT5 Netting - MT5 Netting → MT5 Hedge - MT5 Netting → MT5 Netting - MT4 → MT5 Hedge - MT4 → MT5 Netting MT4 版本 完整说明 + DEMO + PDF 如何购买 如何安装 如何获取日志文件 如何测试和优化 Expforex 的所有产品 您也可以将交易复制到 MT4 终端(MT4 → MT4,MT5 → MT4): COPYLOT CLIENT for MT4 COPYLOT 是一款专业的交易和持仓复制器,可同时与 2、3 甚至 10 个终端协同工作。 支持从 模拟账户和投资者账户 复制,也支持同时在多个终端上运行。 您可以使
Anchor Trade Manager
Kalinskie Gilliam
5 (8)
Anchor: The EA Manager Your EAs cannot see each other, but Anchor can. Anchor gives you one place to coordinate your EAs, manage risk, and decide when trading is allowed. It works alongside the trading bots you already use without any changes to them. The Problem One EA opens a trade. Then another starts trading. The next thing you know, you wake up to multiple grids built across your account. Each EA may be doing exactly what it was designed to do, but together they can place far more risk on y
Power Candles 策略扫描器——自优化多符号设置查找器 Power Candles策略扫描器 采用与Power Candles指标相同的自优化引擎,可同时扫描您“市场观察”中的所有交易品种。一个面板即可显示当前哪些品种在统计上具备交易价值、每种策略的最佳应用方向、最优止损/止盈组合,并在新信号触发时立即向您发送提醒。 本工具是 Stein Investments 生态系统的一部分 - 18+ 款工具,加上 Max,您的一对一 AI 交易导师。  随时在线,深入了解每一款指标,在您需要梳理思路的那一刻就在那里。  立即认识他: https://stein.investments 您的全面市场监控。每个交易品种超过3,000次自动优化。2种警报类型。一键切换图表并采取行动。 为何您需要此工具 大多数多标的扫描器仅展示价格 波动 。每只股票的波动率、百分比变化、RSI。您仍需自行摸索正确的策略、合适的止损位以及理想的入场阈值。Power Candles策略扫描器针对每只股票自动解答这些问题,仅在数学验证过的交易设置中触发实际入场信号时才会向您发出提示。这就是全部卖点。 自动
Telegram To MT5 Ultra
Mirel Daniel Gheonu
5 (5)
Telegram To MT5 — 信号复制器 将您的 Telegram 频道中的交易信号变成真实的 MT5 订单 — 自动执行,可用于任意数量的账户,风险与规则完全由您掌控。 Telegram To MT5 将您已在 Telegram 关注的 VIP / 信号频道连接到您的 MetaTrader 5 终端。一个免费的配套桌面应用读取消息(即使是禁止机器人的频道),而本 EA 在您的账户上执行这些信号 — 应用您自己的风险设置、品种映射、止盈处理、交易时段与新闻过滤。 它是一个信号复制器,而非黑箱策略:由您决定信任哪些频道,以及每笔交易如何计算手数和管理。 分步设置与配套应用安装指南 工作原理 [您的 Telegram 频道] -> [配套桌面应用] -> [MT5 + 本 EA] -> 订单 配套桌面应用(免费,已包含)使用您的 Telegram 账户登录并监视您所选择的频道。即使是禁止机器人的 VIP 频道也能正常工作,它通过一个私有、加密的本地桥接转发每条消息。 本 EA 挂在一个图表上,在 MT5 接收这些信号,并按照您的规则开仓 / 管理交易。 应用与 EA 之间的连接是位于
Grid Manual MT5
Alfiya Fazylova
4.73 (22)
Grid Manual是一个交易面板,用于处理订单网格。 该实用程序是通用的,具有灵活的设置和直观的界面。 它不仅可以在亏损方向上设置订单网格,还可以在盈利方向上设置订单网格。 交易者不需要创建和维护订单网格,实用程序会这样做。 打开一个订单就足够了,Grid manual会自动为它创建一个订单网格,并伴随它直到非常关闭。 完整说明和演示版 此處 。 该实用程序的主要特性和功能: 伴隨以任何方式打開的訂單,包括從移動終端打開的訂單。 適用於兩種類型的網格:“限制”和“停止”。 使用兩種方法計算網格間距:固定和動態(基於 ATR 指標)。 允許您更改未結訂單網格的設置。 顯示圖表上每個網格的盈虧平衡水平。 顯示每個網格的利潤率。 允許您一鍵關閉網格中的盈利訂單。 讓您一鍵關閉每個訂單網格。 允許您對訂單網格應用追踪止損功能。 允許您在訂單網格上應用將訂單網格的止損轉移到盈虧平衡水平的功能。 相對於訂單網格的盈虧平衡水平自動重新排列止盈(僅在限價網格模式下,距離取決於所選的計算類型:“保守”或“激進”)。 最多可管理 20 個訂單網格,每個網格最多可包含 100 個訂單。 計算初始手數時,
Signal TradingView to MT5 Pro Automator TradingView 与 MetaTrader 5 之间的即时专业执行 使用最强大的桥梁,将 TradingView 警报与 MT5 中的实际执行连接起来,实现交易策略的自动化。这款 Expert Advisor 专为要求速度、灵活性和完美风险管理的交易者设计,可将任何警报消息转化为精确的市价或限价订单。 优势与特点 通用解析引擎(专有): 先进技术,能够自动识别并提取任何警报格式中的数据。您不再受限于单一的死板格式;系统会自动理解交易品种(Symbol)、操作(Action)、价格(Price)、止损(SL)和止盈(TP)。 实时执行: 极速轮询技术(低于 1 秒),经过优化可将延迟降至最低。接收到信号后,订单将在毫秒内执行。 机构级风险管理: 基于以下方式自动精确计算手数: 净值/余额百分比(% of Equity/Balance): 每笔交易承担固定账户百分比的风险。 风险金额(Risk Amount): 设定在触发止损时损失的固定货币金额(例如:100 美元)。 固定手数(Static Lots)
The News Filter MT5
Leolouiski Gan
4.78 (23)
这个产品在新闻时间过滤所有的专家顾问和手动图表,因此您不必担心突然的价格波动会破坏您的手动交易设置或其他专家顾问输入的交易。此产品还带有完整的订单管理系统,可在任何新闻发布前处理您的持仓和挂单。一旦您购买了   The News Filter ,您将不再需要依赖以后的专家顾问内置的新闻过滤器,因为这个产品可以从此过滤它们所有。 新闻选择 新闻来源于Forex Factory的经济日历。 选择可以基于任何一种货币,如USD,EUR,GBP,JPY,AUD,CAD,CHF,NZD和CNY等。 选择也可以基于关键识别,例如Non-Farm (NFP),FOMC,CPI等。 能够选择新闻影响级别的筛选,从低、中、到高影响。 自动模式只选择与图表相关的新闻。 新闻来源每小时自动刷新,以确保最新的新闻数据。 为每个新闻影响级别提供单独的输入,以确定您要过滤掉的新闻发布前后的分钟数。 订单管理选项 在新闻发布前关闭未平仓头寸的选项,并在新闻发布后恢复它们。 在新闻发布前删除挂单的选项,并在新闻发布后恢复它们。 在新闻发布前移除止损和止盈水平的选项,并在新闻发布后恢复它们。 在新闻发布前移动止损和
Trade Dashboard MT5
Fatemeh Ameri
4.95 (132)
疲于复杂的订单下达和手动计算?Trade Dashboard 是您的解决方案。凭借其用户友好的界面,订单下达变得轻而易举,只需点击一下,您就可以开设交易、设置止损和止盈水平、管理交易手数,并计算风险回报比,让您只需专注于您的策略。告别手动计算,使用 Trade Dashboard 简化您的交易体验。 立即下载演示版本 。 您可以在这里找到仪表盘功能和特性的详细信息 。 加入 Telegram 频道 。 购买后请给我发消息以获取支持。如果您需要添加更多功能,可以在产品的评论区留下您的想法,我愿意听取任何建议,希望您能在使用我的产品时获得最佳体验 。 这是 MT4 版本。 风险管理:使用 Trade Dashboard,可以将您的风险设置为账户余额或权益的百分比,或将风险设置为总金额。在图表上直观地定义您的止损,让工具准确计算每个货币对的适当手数。该工具还可以根据您期望的风险回报比自动设置止盈水平。它甚至可以在手数计算中涵盖佣金和点差费用。此外,您的止损和止盈可以转变为虚拟水平,隐藏于经纪商。通过 Trade Dashboard 的高级风险管理功能,掌控风险,保护您的资本。 交易线
Strategy Ledger Pro
Abdullah Uygar Tuna
5 (1)
Strategy Ledger Pro 是一个面向 MetaTrader 5 的只读账户分析面板。它按 EA、策略、品种和魔术号分别呈现账户结果。 详细 手册 ,逐项说明每个功能。 MetaTrader 只显示整个账户的一个余额。当多个 EA 同时交易时,这个余额无法显示各自的贡献。Strategy Ledger Pro 读取账户历史,重建已平仓的持仓,将它们归属到各个策略,并在一个面板中呈现结果。 本产品不会开仓、修改或平仓。它不包含任何交易策略,不创建指标,也不读取图表价格。 主要功能 按 EA、单个策略、品种或魔术号统计结果。 预设周期和自定义日期范围。 已实现与浮动结果、持仓敞口、交易统计、点数、回撤和净值曲线。 佣金、隔夜利息、成本占比,以及入场和出场滑点估算与合计。 基于固定规则的表现评级、文字总结和状态标记。 交易组:同时开立的持仓在置信指标中算作一次决策。 账户和每一行的实时净值回撤跟踪。 交互式命名、分组、移动、隐藏、恢复、展开和排序。 身份:将一个魔术号声明为一个或多个策略;把魔术号或手数从面板上移除,并报告它们的价值。 固定手数模式:以统一手数回放每一笔交易,
Trade Copier Ultimate
Janitha Sandaruwan Amaradasa Wickramasingha Arachchilage
5 (5)
Trade Copier Ultimate - Telegram to MT5 Signal Copier Trade Copier Ultimate automatically copies Telegram trading signals into MetaTrader 5. The EA can read signal messages, detect the symbol, order type, entry price, Stop Loss, Take Profit levels and selected update commands, then execute or manage the trade in MT5 using your lot and risk settings. It is more than a basic Telegram to MT5 copier. TCU also supports Bot API and user-account Bridge workflows, Discord signal routing, local MT5 to MT
FUTURES ORDERFLOW FOOTPRINT CHART Professional OrderFlow EA for MetaTrader 5 Version 1.01| Professional tool for real traders | Institutional-Grade Visualization STRATEGY TESTER USERS - PLEASE SELECT EVERY 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 ROL
购买后请联系我,以获取完整手册包 + 3天 OpenAI API 试用,用于测试 AI 功能 + 另一份额外奖励 当前价格为八月重新发布更新的限时折扣价——请在价格上涨前立即锁定您的版本。 下一阶段价格:$340 这与您尝试过或在市场上见过的任何交易面板都完全不同。这是目前零售市场上最具创新性的 AI 驱动交易面板之一。 想象一下,将   AI 直接连接到您的图表   ——获取 AI 建议、账户审计、接收 AI 交易信号,并通过一次点击执行交易。 想象一下,通过 Telegram 在手机上管理您的   整个交易账户   ——与 AI 聊天、接收即时提醒、管理交易,并随时随地保护您的账户。 想象一下,运行   多个 EA   ,并能够分别监控每个 EA 的表现、管理其交易,或直接通过智能手机关闭特定仓位。 想象一下,您拥有一个   内置风险规划器   ,可以随时准备在图表上直接执行任何交易想法。 想象更多,更多……这一切都可以通过这款面板实现。 我们打造它的目标远不止是一款交易面板——它是一个   完整的交易套件、交易助手和 AI 导师,集于一体。 AI Desk 一个真正能够看到您账
Trade copier MT5
Alfiya Fazylova
4.59 (54)
Trade Copier 是一种专业实用程序,旨在复制和同步交易账户之间的交易。 复制发生从供应商的帐户/终端到收件人的帐户/终端,安装在同一台计算机或 vps 上。 促销活动 - 如果您已经购买了“Trade copier MT5”,您可以免费获取“Trade copier MT4”(用于 MT4 > MT5 和 MT4 < MT5 的复制)。欲了解更多详细条款,请通过私人消息与我们联系! 在购买之前,您可以在演示帐户上测试演示版本。 演示 这里 。 完整说明 这里 。 主要功能和优点: 支持复制MT5>MT5、MT4>MT5、MT5>MT4,包括МТ5 netting账户。 供应商和收件人模式在同一产品中实现。 简单直观的界面,允许您直接从图表中实时控制复制。 连接中断或终端重新启动时不会丢失设置和位置。 允许您选择要复制的符号,也可以替换接收者的符号,例如 EURUSD> USDJPY。 支持回拷贝。 能够仅复制某些订单。 允许您设置开仓交易价格的最大差异和最大时间延迟。 正确复制部分订单关闭的执行。 计算复制手数的几种方法。 同步止盈和止损。有几种方法可以计算它们的位置。 支持
Ultimate Extractor
Clifton Creath
5 (8)
Ultimate Extractor - Professional Trading Analytics for MT5 *****this is the local HTML version of Ultimate Extractor. !!!!!it is not compatible with Cloud!!!! For the online version please reach out to me directly****** Ultimate EA manager also now available when you use cloud pro and above for free!! Ultimate Extractor transforms your MetaTrader 5 trading history into actionable insights with comprehensive analytics, interactive charts, and real-time performance tracking. What It Does Automa
Risk Manager Pro MT5 is an account protection Expert Advisor for traders who want strict risk control inside MetaTrader 5. The utility monitors your account equity, daily and weekly results, drawdown, open positions, trade count, consecutive losses, and trading hours. When a configured limit is reached, it can automatically close positions, cancel pending orders, stop other EAs, send notifications, or close the terminal. Instead of relying on discipline during a stressful trading session, you de
Telegram To MT5 Receiver
Levi Dane Benjamin
4.53 (15)
将信号从您所属的任何渠道(包括私人和受限渠道)直接复制到您的 MT5。 该工具在设计时充分考虑了用户的需求,同时提供了管理和监控交易所需的许多功能。 该产品采用易于使用且具有视觉吸引力的图形界面。 自定义您的设置并在几分钟内开始使用该产品! 用户指南 + 演示  |   MT4版本  |   不和谐版本 如果您想尝试演示,请参阅用户指南。 Telegram To MT5 接收器在策略测试器中不起作用! Telegram 至 MT5 功能 一次复制多个通道的信号 从私人和受限频道复制信号 不需要机器人令牌或聊天 ID(如果出于某种原因需要,您仍然可以使用这些) 使用风险百分比或固定手数进行交易 排除特定符号 选择复制所有信号或自定义要复制的信号 配置单词和短语以识别所有信号(默认值应适用于 99% 的信号提供商) 配置时间和日期设置以仅在需要时复制信号 设置一次打开的最大交易量 交易和头寸管理 使用信号或自动设置的管理 通过设置每月、每周、每天、每小时或每分钟的最大交易次数,停止过度交易和报复性交易。 支持市价订单和挂单 每日最大利润目标(以美元为单位)以确保头寸并停止过度交易 确
Welcome to ENTRY IN THE ZONE WITH SMC MULTI TIMEFRAME Entry In The Zone and SMC Multi Timeframe is a real-time market analysis tool based on Smart Money Concepts (SMC), designed to analyze market structure, price direction, and key trading zones. It supports both Single-Timeframe Analysis and Multi-Timeframe Analysis, providing a clearer view of the overall market structure across multiple timeframes, with real-time BUY / SELL signals that do not repaint. It is designed to help filter trading op
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
作者的更多信息
TendenciaPrecioFecha2
Sergio Piqueras Cuevas
TrendLinesFromFiboAndTrend2 — Proyección Dinámica de Tendencias en Niveles Fibonacci Descripción general: TrendLinesFromFiboAndTrend2 es una herramienta para MetaTrader 5 diseñada para clonar el ángulo y la velocidad de una línea de tendencia existente y proyectarla automáticamente a través de todos los niveles clave (retrocesos y extensiones) de un objeto Fibonacci dibujado en el gráfico. Ventajas principales: Proyección geométrica exacta: Mantiene la inclinación y duración exacta de la línea d
FREE
Nivelesfibonacci2
Sergio Piqueras Cuevas
NIVELESFIBONACCI2.12 — Órdenes Pendientes sobre Niveles Fibonacci Personalizados Este script para MetaTrader 5 permite colocar automáticamente órdenes pendientes de compra o venta utilizando como referencia los niveles Fibonacci horizontales previamente dibujados en el gráfico. El script está diseñado para funcionar conjuntamente con NIVELESFIBONACCI1.1 , aunque puede utilizar cualquier conjunto de líneas horizontales que siga la misma estructura de nombres mediante el prefijo configurado. La pr
FREE
Ajustartplinea
Sergio Piqueras Cuevas
AJUSTAR TP SEGÚN LÍNEA DE TENDENCIA — Modificación Dinámica de Take Profit en MT5 Este script para MetaTrader 5 permite proyectar el precio actual de cualquier línea de tendencia presente en el gráfico y asignarlo automáticamente como Take Profit (TP) a las posiciones abiertas que cumplan con los criterios de filtrado seleccionados. Es una herramienta imprescindible para traders que proyectan sus objetivos de salida basándose en estructuras diagonales, canales de precio, directrices de tendencia
FREE
NivelesFibonacci
Sergio Piqueras Cuevas
NIVELES FIBONACCI 1.14 — Proyección de niveles Fibonacci personalizados Este script para MetaTrader 5 permite calcular y dibujar automáticamente niveles de Fibonacci personalizados a partir de dos precios conocidos y sus correspondientes niveles Fibonacci. La herramienta utiliza una relación matemática lineal entre los dos puntos introducidos para proyectar cualquier nivel Fibonacci que el usuario desee. ¿Cómo funciona? El usuario debe introducir: Precio del Punto A Nivel Fibonacci asignado al P
FREE
筛选:
无评论
回复评论