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 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
アップデート版の無料公開中です。 140ダウンロードありがとうございます。 動画は   Ver. 034.30   原資1, 000ドル/レバレッジ25倍 テストの一例です。 Ver. 034.33  リリース致しました。 継続して内部で調整していますが、 枚数の設定は外してエントリーできる維持率の限度を調整することで資金管理します。 以前に比較してエントリー数が増加すると共に一時的なドローダウンは増加することがあります。余剰資金を多めにするか、レバレッジを高く設定する必要があります。 エントリーできない不具合について このページの最後に まとめています。改善の都度アップデートします。 基本事項 プラットフォーム:MetaTrader 5 通貨ペア:EUR-USD チャート:5分足 EUR-USD  の5分足のチャートを表示して、セットします。 1分足と同等という認識になりましたので5分足とします。 ブローカーによって調整が必要な場合がございます。 MT5に慣れていらっしゃらない方向け MT4メインでお使いのために慣れていらっしゃらない方もおられるかと存じます。 最もメジャーな
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 トレーダー向けに設計されたゴールド特化型の Expert Advisor です。高速な短期自動売買を求めながらも、制御された執行、インテリジェントなガード保護、そして分かりやすいダッシュボード表示を重視するユーザー向けに作られています。 多くの高速売買ロボットはスピードだけに注目します。しかし実際のブローカー環境では、制御されていないスピードは問題になる可能性があります。ゴールドのスプレッドは急拡大することがあり、流動性は素早く変化し、注文変更が拒否される場合もあります。また、過度に積極的な取引リクエストは不安定な結果につながる可能性があります。 Artemis は異なる原則に基づいて設計されています。 制御されたスピードは、制御されていないスピードよりも持続可能です。 この MT5 版は、実績のある MT4 v1.4
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 – 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
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)を中心に構築された自動売買システムです。5種類の内部平滑化手法を選択でき、さらにRSI出力の上にオプションの第2平滑化レイヤーを追加できるため、同じコアロジックを古典的なオシレーターのように、あるいはより遅く、フィルタリングされたシグナルラインのように動作させることができます。トレード管理はポジション平均化モデルによって行われます。価格が保有ポジションに不利な方向へ動いた場合、EAはより広い距離で追加注文を発注でき、結果として生じるバスケットは固定の利益目標で決済されるか、トレーリング利益確定によって決済されます。買いポジションと売りポジションは独立したバスケットとして管理されるため、本EAはヘッジ口座を必要とします。 概要 基本戦略は、RS
FREE
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 向けの本物の過去ティックデータを提供しており、推定価格ではなく実際の市場条件と実際の変動スプレッドで戦略テストを実行できます。ティックデータダウンロードセンターからデータをダウンロードし、ワンクリックインストーラーを使って約10分でお好みの MetaTrader 5 に直接インストールできます。エキスパートアドバイザーやインジケーターは変更なしで動作し、本物のティックを使用するため、MetaTrader は最高のモデリング品質を達成します。 主なメリット: 26銘柄、2003年から20年以上の履歴データ。外国為替、指数、金属、エネルギー、暗号通貨をカバー 低・中・高スプレッドプロファイルによる本物の変動ス
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 — 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
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
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 非ナンピン・非マーチン設計 Gold専用 本格AIトレードEA 概要 Gold Polaris AI は、 XAUUSD(ゴールド)H1専用に設計されたAIトレードシステムです。 ATRを複数組み合わせた特徴量を用いて学習し、 拡大・収縮を繰り返すボラティリティ構造に適応。 AIが相場状況を判定し、 順張り・逆張りを自動選択します。 トレンドが継続すると判断した場合はポジションを保持し、 ランダムウォーク状態では無理なエントリーを控える挙動を示します。 トレード特性 ・非ナンピン ・非マーチン ・固定ロット運用 ・Buy / Sell 別AIモデル 同時最大ポジション数: Buy1ポジション + Sell1ポジション(最大2ポジション) 両建てになる場合があります。 取引頻度 平均:1日1〜3回程度 (相場状況により変動) ポジション保有時間 最短:約1時間 最長:約50時間 平均:約6時間 スキャル〜デイトレード寄りの設計です。 学習 / 検証 学習期間:2003〜2021 アウトオブサンプル:2022年以降 テストロット:0.01固定
FREE
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
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 - 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 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 種類 のトレーリングストップなど 、便利 な 機能 を 備 えています 。 追加の資料と説明書 インストール手順   -   アプリケーションの手順   -   デモアカウント用アプリケーションの試用版 ライン機能 チャート上にオープニングライン、ストップロス、テイクプロフィットを表示します。この機能により、新規注文を簡単に設定することができ、注文を出す前にその特徴を確認することができます。   リスク計算 リスク計算機能は、設定されたリスクとストップロス注文のサイズを考慮して、新規注文のボリュームを計算します。ストップロスの大きさを自由に設定できると同時に、設定したリスクを守ることができます。 Lot calc ボタン - リスク 計算 を 有効 / 無効 にします 。 Risk フィールドでは 、必要 なリスクの 値 を 0 から 100 までのパーセンテージまたは 預金通貨 で 設定 します 。 設定」 タブで 、 リスク 計算 の 種類 を 選択 します :「 $ 通
Trade Manager EAへようこそ。これは、取引をより直感的、正確、そして効率的にするために設計された究極の リスク管理ツール です。これは単なるオーダー実行ツールではなく、包括的な取引計画、ポジション管理、リスク管理のためのソリューションです。初心者から上級者、迅速な実行を必要とするスキャルパーまで、Trade Manager EAはあらゆるニーズに対応し、為替、指数、商品、暗号通貨などさまざまな市場で柔軟に対応します。 Trade Manager EAを使用すると、複雑な計算が過去のものになります。市場を分析し、エントリーポイント、ストップロス、テイクプロフィットのレベルをチャート上のラインでマークし、リスクを設定するだけで、Trade Managerが最適なポジションサイズを即座に計算し、SLとTPをピップ、ポイント、口座通貨でリアルタイムに表示します。すべての取引が簡単かつ効果的に管理されます。 主な機能: ポジションサイズ計算機 :定義されたリスクに基づいて取引サイズを瞬時に決定します。 簡単な取引計画 :エントリー、ストップロス、テイクプロフィットを設定するためのド
================================================================================ 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
TradePanel MT5
Alfiya Fazylova
4.88 (167)
Trade Panelは多機能なトレーディングアシスタントです。アプリには手動取引用の50以上のトレーディング機能が搭載されており、ほとんどの取引作業を自動化することができます。 アプリの説明書+ビデオガイド: https://www.mql5.com/en/blogs/post/756482 デモ口座用アプリの試用版: https://www.mql5.com/en/blogs/post/750865 アプリのインストール方法: https://www.mql5.com/en/blogs/post/756239 アプリをビジュアルモードでテストする方法: https://www.mql5.com/en/blogs/post/770277 VPSのMetaTraderにアプリをインストールする方法: https://www.mql5.com/en/blogs/post/770190 取引。 ワンクリックで取引操作を行うことができます: リスクを自動計算して指値注文やポジションを開く。 複数の注文やポジションをワンクリックで開く。 注文のグリッドを開く。 保留中の注文やポジションをグルー
ベータリリース Telegram to MT5 Signal Trader はまもなく正式なアルファ版をリリースします。いくつかの機能はまだ開発中で、小さな不具合に遭遇する可能性があります。問題が発生した場合はぜひご報告ください。皆さまのフィードバックがソフトウェア改善に役立ちます。 Telegram to MT5 Signal Trader は、 Telegram のチャンネルやグループからの取引シグナルを自動的に MetaTrader 5 にコピーする強力なツールです。 パブリックおよびプライベートの両方のチャネルに対応し、複数のシグナル提供元を複数のMT5口座に接続可能です。ソフトウェアは高速で安定し、すべての取引を細かく制御できます。 インターフェースは直感的で、ダッシュボードとチャートは見やすく設計されており、リアルタイムで動作状況をモニターできます。 必要環境 MQL の制限により、EA は Telegram と通信するためのデスクトップアプリが必要です。 インストーラーは公式の インストールガイド にあります。 主な機能 マルチプロバイダー: 複数の Telegram
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 >> Experts フォルダに貼り付けて、ターミナルを再起動しま
That backtest looks great. But will it still be making money tomorrow, next week, next month? EA Overfitter re-runs your EA on 100 price histories it has never seen. One score tells you if the edge is real. A backtest tells you what an EA did on one price history — the one that happened to occur. What you cannot tell from it is how much of that result was the strategy and how much was the particular path. EA Overfitter answers that. It builds up to 100 synthetic price histories your EA has n
Telegram to MT5 Multi-Channel Copier   は、Telegram チャンネルのトレードシグナルを MetaTrader 5 へ自動コピーします。ボット不要、ブラウザ拡張不要、手動コピー不要。Telegram にシグナルが届くと、EA が数秒であなたのターミナルに注文を出します。 製品は 2 つのコンポーネントで構成されます:Telegram チャンネルを監視する Windows アプリと、MT5 ターミナルでシグナルを執行する本 EA です。MT4 版もあります   こちら . セットアップガイドとアプリのダウンロード: https://www.mql5.com/en/blogs/post/768988 仕組み Windows アプリは、ボットではなくあなた自身の API 認証情報で Telegram に接続します。そのため、プライベートや VIP を含む、購読中のあらゆるチャンネル・グループ・トピックを読めます。あなたに直接メッセージを送るシグナルボット、個人チャット、さらには自分の「保存済みメッセージ」もソースとして使えます。シグナルを検出すると解
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
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
Telegram To MT5 — シグナルコピア Telegram チャンネルのトレードコールを、実際の MT5 注文に変換します — 自動で、好きなだけの口座に対応し、リスクとルールは完全にあなたの管理下に置けます。 Telegram To MT5 は、あなたが Telegram で既にフォローしている VIP / シグナルチャンネルを MetaTrader 5 端末に接続します。無料の付属デスクトップアプリがメッセージを読み取り(ボットを禁止しているチャンネルでも可能)、この EA があなたの口座でそれらを執行します — あなた自身のリスク設定、シンボルマッピング、テイクプロフィット処理、セッションおよびニュースフィルターを適用します。 これはシグナルコピアであり、ブラックボックス戦略ではありません。どのチャンネルを信頼するか、各トレードのロットと管理方法をあなたが決めます。 ステップバイステップの設定と付属アプリのインストールガイド 仕組み [あなたの Telegram チャンネル] -> [付属デスクトップアプリ] -> [MT5 + この EA] -> 注文 付属デスクトッ
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台のターミナル間で同時に動作できる、プロフェッ
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トレーディングコーチをあなたのチャートの中に置き、その下に完全な執行エンジンを備えたツールです。いつも通りにトレードをセットアップし、あなた専任のAIトレーディングコーチ Max にそのセットアップをそのまま読み取らせて、発注前に率直な見解を伝えてもらいましょう。ストップの幅が規律あるアプローチに合っているか、リスクサイズは適切か、高影響のニュースイベントが数分後に迫っていないか、プロップファームの制限に近づいていないか。その下には、クリックの後をすべて処理するエンジンが備わっています。ワンクリックのリスクサイズ計算による発注、チャート上でドラッグして組み立て、発注後も動かせるプラン、最大4段階の分割利確、7種類のトレール方式、リアルタイムのプロップファームコンプライアンス、ニュースガード、そしてコストを自ら採点するスプレッド機能。判断はあなたが下す。Max がもう一度確認する。後のことはすべてパネルが担う。 購入前に実際に触れて試せます。 ブラウザ上でライブ
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
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
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
高速。正確。革新的。テクノロジー駆動。画期的なX2 Copy MT5で、瞬時のトレードコピーを体験してください。わずか10秒の簡単セットアップで、一台のコンピューターまたはWindows VPS上のMetaTrader端末間でトレードをかつてない速度で同期する強力なツールを手に入れられます。 複数の口座を管理している場合、シグナルに従っている場合、または戦略を拡大している場合でも、X2 Copy MT5は比類のない精度と制御でワークフローに適応します。最もテクノロジー駆動なトレードコピーソリューションで、より速く、より確実に作業できます。無料トライアル版をお試しいただき、お使いのシステムでその速度を体感してください。 *重要:MT4端末での作業には、別途 X2 Copy MT4 バージョンが必要です X2 Copy MT4/5 の設定と機能の説明 | X2 Copy トライアル版のインストール方法 特徴 高速コピー — 0.1秒未満でのトレード転送 すべてのコピータイプをユニバーサルサポート: MT4>MT4, MT4>MT5, MT5>MT4, MT5>MT5 直感的なインターフェー
Trade copier MT5
Alfiya Fazylova
4.59 (54)
Trade Copierは、取引口座間の取引をコピーして同期するように設計された専門的なユーティリティです。 コピーは、同じコンピューターまたはvps にインストールされている、サプライヤーのアカウント/端末から受信者のアカウント/端末に行われます。 キャンペーン - すでに「Trade copier MT5」をご購入の方は、「Trade copier MT4」を無料で入手できます(MT4 → MT5 および MT4 ← MT5 のコピー用)。詳細な条件については、どうぞ個別メッセージでお問い合わせください。 購入する前に、デモ アカウントでデモ バージョンをテストできます。 デモ版 こちら 。 詳細な説明は こちら 。 主な機能と利点: MT5ネッティングアカウントを含む、MT5> MT5、MT4> MT5、MT5> MT4のコピーをサポートします。 高いコピー速度(0.5秒未満)。 ベンダーモードと受信者モードは同じ製品内に実装されています。 チャートから直接リアルタイムでコピーを制御できる、簡単で直感的なインターフェイス。 接続が切断されたり、端末が再起動されたりしても、設定と位
Timeless Charts
Samuel Manoel De Souza
5 (8)
Timeless Charts is an all-in-one trading utility for professional traders. It combines custom chart types such as Seconds Charts and Renko with advanced order flow analysis using Footprints , Clusters , Volume Profiles , VWAP studies, and anchored analysis tools for deeper market insight. Trading and position management are handled directly from the chart through an integrated trade management panel , while Market Replay and Virtual Accounts provide environments for practicing trading skills and
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
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
Power Candles Strategy Scanner - 自動最適化型マルチシンボル設定ファインダー パワーキャンドル・ストラテジー・スキャナーは 、パワーキャンドル・インジケーターを駆動するのと全く同じ自己最適化エンジンを、マーケットウォッチに登録されているすべての銘柄に対して並行して実行します。1つのパネルで、現在統計的に取引可能な銘柄、各銘柄で勝率の高い戦略、最適なストップロス/テイクプロフィットの組み合わせが表示され、新たなシグナルが発生した瞬間に通知が届きます。 このツールは、Stein Investmentsのエコシステムの一部です。  18種類以上のツールをすべて閲覧し、AIを活用したセットアップの推奨を受け取り、  https://stein.investments でコミュニティに参加しましょう 市場動向を網羅。銘柄ごとに3,000件以上の自動最適化。2種類のアラート。ワンクリックでチャートを切り替えて即座にアクション。 なぜこれが必要なのか 多くのマルチ銘柄スキャナーは、 価格の動き (ボラティリティ、変動率、銘柄ごとのRSI)を表示するだけです。それ
MT5 to Telegram Signal Provider は、Telegramのチャット、チャンネル、またはグループに 指定された シグナルを送信することができる、完全にカスタマイズ可能な簡単なユーティリティです。これにより、あなたのアカウントは シグナルプロバイダー になります。 競合する製品とは異なり、DLLのインポートは使用していません。 [ デモ ] [ マニュアル ] [ MT4版 ] [ Discord版 ] [ Telegramチャンネル ]  New: [ Telegram To MT5 ] セットアップ ステップバイステップの ユーザーガイド が利用可能です。 Telegram APIの知識は必要ありません。必要な全ては開発者から提供されます。 主な特長 購読者に送信する注文の詳細をカスタマイズする機能 例えば、Bronze、Silver、Goldといった階層型のサブスクリプションモデルを作成できます。Goldサブスクリプションでは、すべてのシグナルが提供されます。 id、シンボル、またはコメントによって注文をフィルターできます 注文が実行されたチャート
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
Prop Firm Os
Gayathiri Gopalakrishnan
5 (1)
PROP FIRM OS Structured Trading Assistant for MetaTrader 5 PROP FIRM OS is a structured trading assistant designed for MetaTrader 5 users who prefer rule-based market analysis and organized trading workflows. The Expert Advisor combines market analysis tools, scanner functions, dashboard monitoring, alerts, risk-control settings, and trade management features inside one system. PROP FIRM OS is designed to help traders follow selected rules, filters, and monitoring conditions during trading activ
News Filter EA: Advanced Algo Trading Assistant News Filter EA is an advanced algo trading assistant designed to enhance your trading experience. By using the News Filter EA , you can integrate a Forex economic news filter into your existing expert advisor, even if you do not have access to its source code. In addition to the news filter, you can also specify trading days and hours for your expert. The News Filter EA also includes risk management  and equity protection features. MT4 Version Ma
EA Auditor
Stephen J Martret
5 (5)
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
購入後にメッセージをお送りください。完全版マニュアルキット + AI機能をテストできる3日間のOpenAI APIトライアル + 追加ボーナスギフトをお受け取りいただけます 現在の価格は、8月のリローンチアップデートに伴う期間限定割引価格です — 値上げ前に今すぐエディションを確保してください。 次回価格:$340 これは、あなたが市場で試したことのある、または見たことのあるどのトレーディングパネルともまったく異なります。現在、リテール市場で利用できる最も革新的なAI搭載トレーディングパネルの一つです。 AIをチャートに直接接続することを想像してください   — AIによる推奨、口座監査、AIトレードシグナルの受信、そしてワンクリックでの実行。 Telegramを通じてスマートフォンから   取引口座全体を管理することを想像してください   — AIとのチャット、即時アラートの受信、取引の管理、どこからでも口座を保護できます。   複数のEA   を稼働させ、それぞれのEAのパフォーマンスを個別に監視し、その取引を管理したり、特定のポジションをスマートフォンから直接決済したりできるこ
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
作者のその他のプロダクト
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
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
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
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
フィルタ:
レビューなし
レビューに返信