TendenciaPrecioFecha2

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 de tendencia de origen.

  • Proyección completa: Traza 9 líneas de soporte/resistencia dinámicas en niveles clave (0.0%, 23.6%, 38.2%, 50.0%, 61.8%, 100.0%, 161.8%, 200.0% y 261.8%).

  • Soporte multidireccional: Permite seleccionar la orientación del Fibonacci (Alcista o Bajista) para calcular correctamente las extensiones fuera del rango 0-100%.

  • Estilo personalizable: Configuración de color, estilo y grosor para diferenciar fácilmente los canales creados.

  • Ejecución ultra-rápida: Al ser un script de un solo paso, no consume recursos ni ralentiza el gráfico.

Cómo funciona:

  1. El script toma los puntos temporales y de precio de una línea de tendencia seleccionada para calcular su pendiente.

  2. Identifica el origen y los niveles de precio del Fibonacci especificado.

  3. Genera y dibuja automáticamente 9 líneas paralelas proyectadas desde el tiempo inicial del Fibonacci a lo largo de cada nivel.

Parámetros de entrada:

  • InpTrendName — Nombre exacto del objeto línea de tendencia en el gráfico (ej. AutoTrend_175779433).

  • InpFiboName — Nombre exacto del objeto Fibonacci en el gráfico (ej. M1 Fibo 57122).

  • InpFiboDirection — Orientación del Fibonacci (FIBO_ALCISTA o FIBO_BAJISTA).

  • InpLineColor — Color de las líneas proyectadas.

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

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

Uso recomendado: Combínelo con AutoFindBestTrendLine (o cualquier línea de tendencia manual) y un retroceso de Fibonacci para proyectar estructuras dinámicas de canales, tomar beneficios en extensiones y detectar confluencias clave en el gráfico.

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

//|                                   TrendLinesFromFiboAndTrend2.mq5 |

//|                                  Copyright 2026                  |

//|                                                                  |

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

#property copyright "Copyright 2026"

#property link      ""

#property version   "5.00"

#property script_show_inputs



// Definición de la dirección del Fibonacci para el panel de propiedades

enum ENUM_FIBO_DIR

{

   FIBO_ALCISTA = 0, // Alcista (0% Abajo -> 100% Arriba | Extensiones arriba)

   FIBO_BAJISTA = 1  // Bajista (0% Arriba -> 100% Abajo | Extensiones abajo)

};



// Parámetros de entrada configurables

input string          InpTrendName     = "AutoTrend_175779433"; // Nombre exacto de la Línea de Tendencia

input string          InpFiboName      = "M1 Fibo 57122";       // Nombre exacto del Fibonacci

input ENUM_FIBO_DIR   InpFiboDirection = FIBO_ALCISTA;          // Dirección del Fibonacci

input color           InpLineColor     = clrDodgerBlue;         // Color de las nuevas líneas

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

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



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

//| Script program start function                                    |

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

void OnStart()

{

   string trendName = InpTrendName;

   string fiboName  = InpFiboName;

   

   // 1. Validar que la línea de tendencia exista y sea correcta

   if(ObjectFind(0, trendName) < 0)

   {

      Print("Error: No se encontró ninguna línea de tendencia con el nombre: ", trendName);

      return;

   }

   if((int)ObjectGetInteger(0, trendName, OBJPROP_TYPE) != OBJ_TREND)

   {

      Print("Error: El objeto '", trendName, "' no es una Línea de Tendencia.");

      return;

   }

   

   // 2. Validar que el objeto Fibonacci exista y sea correcto

   if(ObjectFind(0, fiboName) < 0)

   {

      Print("Error: No se encontró ningún objeto Fibonacci con el nombre: ", fiboName);

      return;

   }

   if((int)ObjectGetInteger(0, fiboName, OBJPROP_TYPE) != OBJ_FIBO)

   {

      Print("Error: El objeto '", fiboName, "' no es un Fibonacci.");

      return;

   }

   

   // 3. Obtener y ordenar cronológicamente la línea de tendencia (Izquierda a Derecha)

   datetime t_a = (datetime)ObjectGetInteger(0, trendName, OBJPROP_TIME, 0);

   double   p_a = ObjectGetDouble(0, trendName, OBJPROP_PRICE, 0);

   datetime t_b = (datetime)ObjectGetInteger(0, trendName, OBJPROP_TIME, 1);

   double   p_b = ObjectGetDouble(0, trendName, OBJPROP_PRICE, 1);

   

   datetime tr_start_time = (t_a <= t_b) ? t_a : t_b;

   datetime tr_end_time   = (t_a <= t_b) ? t_b : t_a;

   double   tr_start_price = (t_a <= t_b) ? p_a : p_b;

   double   tr_end_price   = (t_a <= t_b) ? p_b : p_a;

   

   datetime trDuration    = tr_end_time - tr_start_time;        

   double   trPriceDelta = tr_end_price - tr_start_price;      

   

   if(trDuration <= 0)

   {

      Print("Error: La duración de la línea de tendencia es inválida.");

      return;

   }

   

   // 4. Obtener los puntos físicos del Fibonacci en el gráfico

   datetime fibTime0  = (datetime)ObjectGetInteger(0, fiboName, OBJPROP_TIME, 0);

   double   f_p1      = ObjectGetDouble(0, fiboName, OBJPROP_PRICE, 0);

   double   f_p2      = ObjectGetDouble(0, fiboName, OBJPROP_PRICE, 1);

   

   double baseLow  = MathMin(f_p1, f_p2);

   double baseHigh = MathMax(f_p1, f_p2);

   double fibSpan  = baseHigh - baseLow;

   

   if(fibSpan == 0.0)

   {

      Print("Error: El rango del Fibonacci es cero.");

      return;

   }

   

   // Declaración de precios de referencia para 0% y 100% según el input elegido

   double price0   = 0.0;

   double price100 = 0.0;

   

   if(InpFiboDirection == FIBO_ALCISTA)

   {

      price0   = baseLow;  // 0.0% abajo

      price100 = baseHigh; // 100.0% arriba

   }

   else

   {

      price0   = baseHigh; // 0.0% arriba

      price100 = baseLow;  // 100.0% abajo

   }

   

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

   Print(" [CONFIGURACIÓN APLICADA]");

   Print(" Tendencia Usada : ", trendName);

   Print(" Fibonacci Usado : ", fiboName);

   Print(" Dirección Fibo  : ", (InpFiboDirection == FIBO_ALCISTA) ? "ALCISTA" : "BAJISTA");

   Print(" Fibo 0.0%       -> Precio: ", DoubleToString(price0, _Digits));

   Print(" Fibo 100.0%     -> Precio: ", DoubleToString(price100, _Digits));

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

   

   // Niveles solicitados (incluyendo extensiones)

   double fibLevels[9]   = {0.0, 23.6, 38.2, 50.0, 61.8, 100.0, 161.8, 200.0, 261.8};

   string fibLabels[9]   = {"0.0", "23.6", "38.2", "50.0", "61.8", "100.0", "161.8", "200.0", "261.8"};

   

   long uniqueBase = GetTickCount();

   int createdCount = 0;

   

   // 5. Crear las réplicas exactas respetando la dirección especificada

   for(int k = 0; k < 9; k++)

   {

      double levelPct = fibLevels[k];

      double levelPrice = 0.0;

      

      if(InpFiboDirection == FIBO_ALCISTA)

      {

         if(levelPct <= 100.0)

         {

            levelPrice = price0 + (fibSpan * (levelPct / 100.0));

         }

         else

         {

            double extFactor = (levelPct - 100.0) / 100.0;

            levelPrice = price100 + (fibSpan * extFactor); // Extiende hacia arriba

         }

      }

      else // FIBO_BAJISTA

      {

         if(levelPct <= 100.0)

         {

            levelPrice = price0 - (fibSpan * (levelPct / 100.0));

         }

         else

         {

            double extFactor = (levelPct - 100.0) / 100.0;

            levelPrice = price100 - (fibSpan * extFactor); // Extiende hacia abajo

         }

      }

      

      datetime new_t1 = fibTime0;

      double   new_p1 = levelPrice;

      

      datetime new_t2 = new_t1 + trDuration;

      double   new_p2 = new_p1 + trPriceDelta;

      

      string lineName = StringFormat("FiboTrend_%s_%d", fibLabels[k], uniqueBase + k);

      

      if(ObjectCreate(0, lineName, OBJ_TREND, 0, new_t1, new_p1, new_t2, new_p2))

      {

         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);

         createdCount++;

      }

   }

   

   ChartRedraw(0);

   Print("¡Éxito! Se han dibujado ", createdCount, " líneas utilizando la dirección configurada.");

}
おすすめのプロダクト
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
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
タイトル: Auto Multi Support & Resistance Pro - スマートなサポレジ自動描画 [説明] 手動でサポート/レジスタンスラインを引くのはもうやめましょう!「Auto Multi Support & Resistance Pro」は、スキャルピングやデイトレードに最適なピボットポイントをアルゴリズムが自動的に見つけます。ダマシの多いゴールド(XAUUSD)やインデックスなど、ボラティリティの高い銘柄の短期足(M1、M5、M15)に完全に最適化されています。 [主な機能] 1. 複数ラインの自動生成: 設定した数の意味のあるサポートおよびレジスタンスラインを自動的に描画します。 2. スマート距離フィルター: 狭い範囲にラインが密集するのを防ぎ、チャートを常にきれいに保ちます。 3. 感度調整が可能: 探索するローソク足の数を調整し、取引スタイルに合った高値・安値を判定します。 4. 超軽量ロジック: リソースをほとんど消費せず、チャートの遅延(ラグ)は一切ありません。 今すぐダウンロードして、あなたのトレードに確固たる基準を設けましょう!
FREE
CRT Bollinger Bands
Jose Antonio Cantonero Velasco
EA CRT Bollinger Bands - Sistema CRT (Candle Range Theory) con Bandas de Bollinger Fundamento Teórico Implementación de la   Candle Range Theory (CRT)   integrada con análisis de Bandas de Bollinger para la identificación sistemática de oportunidades de trading. Candle Range Theory (CRT) Teoría del Rango : Análisis de la estructura completa de la vela (cuerpo y mechas) Proporciones Armónicas : Relaciones específicas entre componentes de la vela Umbrales Operativos : Parámetros definidos para mec
FREE
NEXA Breakout Velocity NEXA Breakout Velocity は、チャネルブレイクアウト、価格変化率(ROC)、出来高フィルター、および ATR ベースのリスク管理を組み合わせた自動売買システムです。 本システムは、価格が一定のレンジを突破し、同時にモメンタムと出来高が増加する「ボラティリティ拡大局面」を検出することを目的としています。 すべてのシグナルは確定足のみで計算されます。 同一シンボルでは常に1ポジションのみ保有します。 戦略概要 本システムは以下の要素を組み合わせています。 チャネルブレイクアウトの検出 ROC によるモメンタムフィルター 出来高増加フィルター 下位時間足による確認(任意) ATR に基づくストップロス計算 リスクリワード比による目標設定 口座リスク率に基づくロット自動計算 動的リスク管理機能 単純なブレイクアウトではなく、モメンタムと出来高の条件を同時に満たす場合にエントリーします。 動作原理 直近の高値・安値から価格チャネルを計算します。 直前の確定足がチャネルを突破しているか確認します。 ROC 値を過去平均と比較します。
FREE
前バージョンのインジケーターの発展 ZigZag WaveSize MT4 ZigZag WaveSize - ポイント、レベル、および異なるアラートロジックに関する情報が追加された改良版標準ZigZagインジケーター 一般的な改善点: MetaTrader 5用のコード適応 グラフィックオブジェクトでの作業の最適化 新機能: 極値における水平レベル レベルタイプの選択:水平/光線/セグメント 流動性レベルフィルター(価格によるブレイクなし) ブレイク用バッファ:偽ブレイクに対する感度設定 ラベル設定と機能:数量、外観、古いラベルの削除 構造ブレイクアラート(BoS) 動きの性質変更アラート(ChoCH) 最適化: 極値更新ロジックの修正 新しいオブジェクトの動的更新 バー出現時の負荷低減 ラベルの中央管理システム 修正点: 配列の境界超えの修正 ラベルの正しい配置 重複するパラメーターの削除 ZigZag WaveSizeインジケーターをトレーディングシステムの補助として使用してください   マーケットで私の他の製品もお試しください  https://www.mql5.com/
FREE
Gold Session Levels Pro MT5 is a manual MetaTrader 5 indicator designed to display relevant intraday reference levels for XAUUSD. The indicator automatically calculates and draws the Asian range, its midpoint, the daily open, the London and New York opens, the previous trading day's high and low, and targets derived from the size of the Asian range. FEATURES - Dynamic Asian range while the configured session is active. - Range freezing after the configured Asian session close. - Asian range
FREE
MultiTimeframe Trend Pro shows you the market direction across 7 timeframes at a glance. Clear colors, no repainting, fully customizable. Perfect as a quick filter for any intraday or swing strategy. Key Features Supports M1, M5, M15, H1, H4, D1 and W1 Colors MediumSeaGreen when the close is above the MA, and Red when below No repainting → always based on the last closed candle for each timeframe Fully customizable: MA period (200 by default) font, size and colors X/Y offsets, spacing
FREE
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 tendenc
FREE
Modify and update SL or TP
Hossam Mohamed Sayed Sayed Ebid
The Manual Adjust SL/TP EA streamlines your risk management by enabling you to manually specify new SL and TP price levels for your open positions. The Levels is Price value and is NOT a pips or points distance from the Entry Levels. The EA automatically validates your inputs against the broker’s stop-level requirements (minimum distance) to prevent order adjustment rejections. It offers filtering options so you can choose to apply adjustments only to Buy orders, Sell orders, or both. Key Featur
FREE
QTS Gold Guardian AI ニューラルネットワークを搭載した機関投資家レベルのゴールドスキャルパー。スマートヘッジ、エクイティ保護、ボラティリティ適応機能を搭載。危険なマーチンゲール法は使用しません。 QTS Gold Guardian AIは、XAUUSD(ゴールド)スキャルピングの究極のソリューションであり、ボラティリティの高い市場環境にも対応できるよう設計されています。口座を破綻させる従来のスキャルパーとは異なり、QTSはまず元本の保全に重点を置いています。 主な機能: ニューラルネットワークロジック:高度なロジックを用いて、M5/H1の時間枠でミクロトレンドを検出します。 スマートリカバリー:スマートヘッジ係数を用いて、証拠金に負担をかけずに不利な取引を中和します。 エクイティガーディアン:ハードストップメカニズムを内蔵。ドローダウンが危機的な水準に達した場合、EAは取引を一時停止して口座を保護します(プロップ取引会社にとって非常に重要です!)。 ニュースフィルター:影響力の大きいニュースが配信されている時間帯には、自動的に取引を回避します。
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
The jcoworld OTE EA is an automated trading bot for MetaTrader 5 built on Smart Money Concepts (SMC) . It accurately identifies market impulse moves and automatically enters trades within the Optimal Trade Entry (OTE) zone (61.8% – 79.0% Fibonacci) as soon as a confirmation candle closes. Optimized for: XAUEUR, XAUUSD, and Major Forex Pairs Features: Automatic risk management, dynamic lot sizing & automated Stop Loss/Take Profit. Try for free: This demo version is 100% free! Pricing Plans for Fu
FREE
Boleta Global Lab v1.1 Pensando em proporcionar uma experiência operacional mais intuitiva e eficiente, desenvolvemos uma boleta exclusiva para MetaTrader 5 (MT5) com interface inspirada na boleta do Profit, amplamente utilizada por operadores da B3. O objetivo é oferecer uma adaptação mais rápida para quem já está familiarizado com o ambiente operacional do Profit, tornando a execução das ordens mais prática, organizada e confortável. Principais características * Interface inspirada na bol
FREE
Algo Trading Indicaor MT5 The ATC ALGO indicator has been developed to work on the MetaTrader 5 platform. It has the same specifications and zones as the MetaTrader 4 version. There may be slight lag, which we believe is due to differences in MetaTrader 5 programming. We will work on improving it, God willing. MT5 Version                    https://www.mql5.com/en/market/product/170028 MT4 Version                    https://www.mql5.com/en/market/product/88034 With this indicator , you’ll have
️ UMNi-CMND MT5 Remote Command & Trade Control System UMNi-CMND turns Telegram into a full remote control panel for your MetaTrader terminal. Send commands from your phone to open trades, manage positions, query account status, and receive complete trade telemetry — all without touching the platform. KEY FEATURES Full remote trade execution via Telegram Open, close, and manage positions by command Move SL/TP, set breakeven, partial close Live status, account, and position
FiboZoneLines Short Description Automatically draws multi-layered Fibonacci zone lines from your manually placed Fibonacci retracement. No repainting. Fully customizable. Overview FiboZoneLines is a powerful Fibonacci-based indicator for MetaTrader 5 that automatically generates a complete set of multi-layered support and resistance lines from a single manually drawn Fibonacci retracement object on your chart. Unlike standard Fibonacci tools, FiboZoneLines divides the entire retracement range in
FREE
Sniper ZZ — Precision Entry. Clean Signals. Sniper ZZ is a lightweight MetaTrader 5 indicator that automatically draws Fibonacci retracement levels 0.382 and 0.618 from confirmed ZigZag swings. No more manual Fibonacci drawing — every time a new swing is confirmed, Sniper ZZ instantly calculates and displays the exact 0.382 and 0.618 retracement levels with price labels. WHAT MAKES SNIPER ZZ DIFFERENT? Most Fibonacci indicators alert you on EVERY touch — flooding you with false signals. Snip
FREE
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
SentraCore — Precision Gold Trading Engine (MT5) Live signal-  https://www.mql5.com/en/signals/2384390?source=Site +Profile+Seller SentraCore is a streamlined Expert Advisor built exclusively for XAUUSD, using an internal multi-timeframe model to identify stable continuation zones and filter out market noise. Position sizing is handled automatically with a default lot configuration, and the system is fully compatible with hedging mode, allowing multiple independent positions to operate withou
Trend Alignment Scanner Lite The Essential Volatility Direction Tool for MetaTrader 5 Looking for a reliable way to gauge market direction without cluttering your charts? Trend Alignment Scanner Lite delivers our core, powerful mathematical engine to your terminal for free. This version is designed for retail day-traders who want to experience the accuracy of our Volatility Direction Score (VDS) on major pairs before scaling up to institutional-grade multi-asset scanning. Pro vs. Lite Compari
FREE
IAMFX offers the ultimate solution to make trading easier and more flexible on IAMFX Web  using IAMFX Agent . With our exclusive IAMFX-Agent and IAMFX-Center, you can effortlessly manage your trading anytime, anywhere through web and mobile interfaces. Fully compatible with both web and mobile environments,   IAMFX allows real-time multi-account management and monitoring with a simple installation. IAMFX Benefits Manage multiple MT5 accounts Easy orders with market, stop and limited Manage orde
FREE
AUD,CAD,NZDによる平均回帰EA Trading Camp MT5 Trading Campは平均回帰傾向の強い3通貨(AUD,CAD,NZD)に着目し、逆張り戦略を行うEAです。トレード手法としてグリッドを用いますが、両建てによるセキュリティ機能を搭載しており、ストップアウトになりにくい設計にしてあります。各種フィルターも充実しており、厳選したエントリーを行います(そのため、エントリー頻度は高くありません)。また、入力パラメーターも各種取り揃えているため、お好みによりEAの動作を変更して運用することが可能です。 Trading Campはあなたの旅を存分にサポートいたします! 平均回帰とグリッドによる勝率の高い戦略 両建てによるセキュリティ機能を搭載 各種フィルタリングによる厳選したエントリー 1つのチャートに設定するだけで複数銘柄の取引が行える簡単セットアップ 充実した入力パラメーターによる幅広い運用 インフォメーションパネルによる運用状況の表示 経済カレンダーはこちら : 2010-2019 , 2020-2025 MT4版はこちら : Trading Camp MT4
Fibonacci Moving Averages
Brendan Jonathan Stoyanowski-campbell
2 (1)
OVERVIEW The Fibonacci Moving Averages are a toolkit which allows the user to configure different types of Moving Averages based on key Fibonacci numbers. Moving Averages are used to visualise short-term and long-term support and resistance which can be used as a signal where price might continue or retrace. Moving Averages serve as a simple yet powerful tool that can help traders in their decision-making and help foster a sense of where the price might be moving next. The aim of this scrip
FREE
Hard Scalping Assistant is a semi-automatic Expert Advisor for MetaTrader 5 created for traders who want to keep making their own decisions, but with a much more advanced, organized and professional execution. It does not enter the market on its own: you choose the direction, define the trade idea and adjust the zone directly on the chart, while the assistant automatically calculates the risk, lot size and the full execution structure. With just a few clicks, you can prepare BUY or SELL trades
FREE
This indicator automatically identifies liquidity levels using swing fractals and tracks when price sweeps through them. Works on any symbol and timeframe with full multi-timeframe support. Features: — Detects swing highs and lows via a fractal method (configurable bars left & right) on a selected timeframe. Active levels are displayed as rays extending to the right; swept levels turn into dashed lines ending at the sweep candle. — Plots Previous Day (PDhigh / PDlow), Previous Week (PWhigh / PWl
FREE
CandleBot
Mithlesh Kumar Mandal
キャンドルボットのご紹介 - ローソク足パターンを認識しトレードするための究極の無料ツール!キャンドルボットを使用して、簡単に高値と低値の両方に認識できる牛さんと熊さんのエングルフィング、モーニングスター、イブニングスター、そしてハンマーシグナルを活かし、市場で優位性を得ましょう。特定の期間にわたる始値、高値、安値、終値から導き出されたローソク足パターンは、価格動向の視覚的な表現となり、トレーダーが市場センチメントを分析し、潜在的な逆転や継続を予測するのに役立ちます。 ローソク足パターンの理解: エングルフィングパターン: 二つのローソク足から成り立ち、二つ目のローソクが完全に最初のものを覆います。ベアッシュエングルフィングは下降トレンドの終わりにおいて上昇トレンドの反転の可能性を示し、ブルッシュエングルフィングは上昇トレンドの終わりにおいて下降トレンドの反転の可能性を示唆します。エングルフィングキャンドルの本体が大きいほど、そのシグナルは強力です。 ハンマーパターン: 一本のローソク足で、本体が上部近くに小さく、下部に長い尾を持つハンマーのような形です。ブルッシュハンマーは下降トレン
FREE
Fractal Structure Auto Fibonacci This tool is designed for price action traders and structural analysts who want to optimize their charting. It automatically identifies valid market swings using fractal logic, draws clear ZigZag lines, and automatically draws Fibonacci retracement levels for the most recent trading range. Key Features Dynamic Fractal Detection: Identifies valid swing peaks and troughs based on a user-defined review period (n). It filters out market noise and visually marks
FREE
Babel Assistant
Iurii Bazhanov
4.33 (9)
Babel assistant 1 MT5ネッティングロボット「Babel_assistant_1」は、ZigZagインジケーターを使用してM1、M5、M15、H1、H4、D1、W1の時間足全体でフィボナッチレベルを生成し、買いトレンドと売りトレンドの強さを計算します。指定されたトレンドレベル4.925を超えると、「Lot for open a position」の設定を使用してポジションをオープンします。その後、Babelは特定のフィボナッチレベルに指値注文(または逆指値注文)を配置し、指定されたストップロス(Stop Loss)およびテイクプロフィット(Take Profit)のラインを設定します。画面には、ポジション、トレード、トレンドの現在の結果が表示されます。 0.02ロット以上の手動でのポジション追加は、ロボットによって独自の保留注文のトリガーとして認識されます。0.01ロットの保留注文または成行注文は、執行時に単にポジション量を変更します。 免責事項: 以下の資料は、情報提供および教育目的のみを目的としています。外国為替市場向けの自動取引プログラムである本製品「Babel
FREE
EASY SUPPORT AND RESISTANCE Visualize support and resistance levels across multiple timeframes with dynamic color-coded lines Overview This powerful MT5 indicator automatically identifies and highlights key price levels by drawing rectangles on the last closed candle and its first opposite-colored candle across six different timeframes (M15, M30, H1, H2, H4, D1). The lines dynamically change color based on price action confirmation, transforming into support or resistance levels when validated
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をピップ、ポイント、口座通貨でリアルタイムに表示します。すべての取引が簡単かつ効果的に管理されます。 主な機能: ポジションサイズ計算機 :定義されたリスクに基づいて取引サイズを瞬時に決定します。 簡単な取引計画 :エントリー、ストップロス、テイクプロフィットを設定するためのド
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 取引。 ワンクリックで取引操作を行うことができます: リスクを自動計算して指値注文やポジションを開く。 複数の注文やポジションをワンクリックで開く。 注文のグリッドを開く。 保留中の注文やポジションをグルー
================================================================================ 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
ベータリリース 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 フォルダに貼り付けて、ターミナルを再起動しま
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
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 を含む、購読中のあらゆるチャンネル・グループ・トピックを読めます。あなたに直接メッセージを送るシグナルボット、個人チャット、さらには自分の「保存済みメッセージ」もソースとして使えます。シグナルを検出すると解
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
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
Telegram To MT5 — シグナルコピア Telegram チャンネルのトレードコールを、実際の MT5 注文に変換します — 自動で、好きなだけの口座に対応し、リスクとルールは完全にあなたの管理下に置けます。 Telegram To MT5 は、あなたが Telegram で既にフォローしている VIP / シグナルチャンネルを MetaTrader 5 端末に接続します。無料の付属デスクトップアプリがメッセージを読み取り(ボットを禁止しているチャンネルでも可能)、この EA があなたの口座でそれらを執行します — あなた自身のリスク設定、シンボルマッピング、テイクプロフィット処理、セッションおよびニュースフィルターを適用します。 これはシグナルコピアであり、ブラックボックス戦略ではありません。どのチャンネルを信頼するか、各トレードのロットと管理方法をあなたが決めます。 ステップバイステップの設定と付属アプリのインストールガイド 仕組み [あなたの Telegram チャンネル] -> [付属デスクトップアプリ] -> [MT5 + この EA] -> 注文 付属デスクトッ
Premium Trade Manager - コーチ内蔵型トレードパネル Premium Trade Manager は、AIトレーディングコーチをあなたのチャートの中に置き、その下に完全な執行エンジンを備えたツールです。いつも通りにトレードをセットアップし、あなた専任のAIトレーディングコーチ Max にそのセットアップをそのまま読み取らせて、発注前に率直な見解を伝えてもらいましょう。ストップの幅が規律あるアプローチに合っているか、リスクサイズは適切か、高影響のニュースイベントが数分後に迫っていないか、プロップファームの制限に近づいていないか。その下には、クリックの後をすべて処理するエンジンが備わっています。ワンクリックのリスクサイズ計算による発注、チャート上でドラッグして組み立て、発注後も動かせるプラン、最大4段階の分割利確、7種類のトレール方式、リアルタイムのプロップファームコンプライアンス、ニュースガード、そしてコストを自ら採点するスプレッド機能。判断はあなたが下す。Max がもう一度確認する。後のことはすべてパネルが担う。 購入前に実際に触れて試せます。 ブラウザ上でライブ
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 Strategy Scanner - 自動最適化型マルチシンボル設定ファインダー パワーキャンドル・ストラテジー・スキャナーは 、パワーキャンドル・インジケーターを駆動するのと全く同じ自己最適化エンジンを、マーケットウォッチに登録されているすべての銘柄に対して並行して実行します。1つのパネルで、現在統計的に取引可能な銘柄、各銘柄で勝率の高い戦略、最適なストップロス/テイクプロフィットの組み合わせが表示され、新たなシグナルが発生した瞬間に通知が届きます。 このツールは、Stein Investmentsのエコシステムの一部です。  18種類以上のツールをすべて閲覧し、AIを活用したセットアップの推奨を受け取り、  https://stein.investments でコミュニティに参加しましょう 市場動向を網羅。銘柄ごとに3,000件以上の自動最適化。2種類のアラート。ワンクリックでチャートを切り替えて即座にアクション。 なぜこれが必要なのか 多くのマルチ銘柄スキャナーは、 価格の動き (ボラティリティ、変動率、銘柄ごとのRSI)を表示するだけです。それ
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
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
Grid Manual MT5
Alfiya Fazylova
4.73 (22)
「Grid Manual」は、注文のグリッドを操作するための取引パネルです。 ユーティリティはユニバーサルで、柔軟な設定と直感的なインターフェイスを備えています。 それは、損失を平均化する方向だけでなく、利益を増やす方向でも注文のグリッドで機能します。 トレーダーは注文のグリッドを作成して維持する必要はありません。 すべてが「Grid Manual」によって行われます。 注文を開くだけで十分であり、「Grid Manual」は注文のグリッドを自動的に作成し、非常に閉じるまでそれに付随します。 完全な説明とデモバージョン ここ。 ユーティリティの主な機能と機能 ユーティリティは、モバイル端末から開かれた注文を含め、あらゆる方法で開かれた注文を処理します。 「制限」と「停止」の2種類のグリッドで機能します。 グリッド間隔の計算には、固定と動的(ATRインジケーターに基づく)の2つの方法で機能します。 オープンオーダーグリッドの設定を変更できます。 チャート上の各注文グリッドの損益分岐点を表示します。 各注文グリッドの利益率を表示します。 ワンクリックでグリッドから収益性の高い注文を閉じるこ
Signal TradingView to MT5 Pro Automator TradingViewとMetaTrader 5間の即時プロフェッショナル実行 TradingViewのシグナル(アラート)とMT5での実際の約定を繋ぐ、最も強固なコミュニケーションブリッジで、取引戦略を自動化します。スピード、柔軟性、そして完璧なリスク管理を求めるトレーダー向けに設計されたこのExpert Advisorは、あらゆるアラートメッセージを正確な成行または指値注文に変換します。 強みと利点 ユニバーサルパーシングエンジン(独自技術): あらゆるアラート形式からデータを自動的に認識し、抽出できる高度なテクノロジー。単一の固定フォーマットに制限されることはありません。システムはシンボル(銘柄)、アクション、価格、SL(ストップロス)、TP(テイクプロフィット)を自動的に理解します。 リアルタイム実行: レイテンシ(遅延)を最小限に抑えるよう最適化された、1秒未満の超高速ポーリング技術。シグナルを受信してから数ミリ秒以内に注文が実行されます。 機関投資家レベルのリスク管理: 以下に基づく自動かつ正確
この製品は、ニュースタイム中にすべてのエキスパートアドバイザーと手動チャートをフィルタリングするため、急激な価格変動によるマニュアルトレードのセットアップの破壊や他のエキスパートアドバイザーによって入力された取引について心配する必要はありません。この製品には、ニュースのリリース前にオープンポジションとペンディングオーダーを処理できる完全な注文管理システムも付属しています。 The News Filter  を購入すると、将来のエキスパートアドバイザーのためにビルトインのニュースフィルターに頼る必要はなく、今後はすべてのエキスパートアドバイザーをここからフィルタリングできます。 ニュース選択 ニュースソースは、Forex Factoryの経済カレンダーから取得されます。 USD、EUR、GBP、JPY、AUD、CAD、CHF、NZD、CNYなど、任意の通貨数に基づいて選択できます。 Non-Farm(NFP)、FOMC、CPIなどのキーワード識別に基づいて選択することもできます。 影響レベルによってフィルタリングするニュースを選択することができ、低、中、高の影響範囲から選択できます。
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秒未満)。 ベンダーモードと受信者モードは同じ製品内に実装されています。 チャートから直接リアルタイムでコピーを制御できる、簡単で直感的なインターフェイス。 接続が切断されたり、端末が再起動されたりしても、設定と位
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
あなたがメンバーである任意のチャネルから(プライベートおよび制限されたものを含む)シグナルを直接あなたのMT5にコピーします。  このツールは、トレードを管理し監視するために必要な多くの機能を提供しながら、ユーザーを考慮して設計されています。 この製品は使いやすく、視覚的に魅力的なグラフィカルインターフェースで提供されています。設定をカスタマイズして、数分で製品を使用を開始できます! ユーザーガイド + デモ  | MT4版 | Discord版 デモを試してみたい場合は、ユーザーガイドにアクセスしてください。 Telegram To MT5 受信機は、ストラテジーテスターで動作しません! Telegram To MT5の特徴 複数のチャネルから一度にシグナルをコピー プライベートおよび制限されたチャネルからシグナルをコピー BotトークンまたはChat IDは必要ありません   (必要に応じて使用することができます) リスク%または固定ロットを使用して取引 特定のシンボルを除外 すべてのシグナルをコピーするか、コピーするシグナルをカスタマイズするかを選択 すべてのシグナルを認
MT5 to Telegram Signal Provider は、Telegramのチャット、チャンネル、またはグループに 指定された シグナルを送信することができる、完全にカスタマイズ可能な簡単なユーティリティです。これにより、あなたのアカウントは シグナルプロバイダー になります。 競合する製品とは異なり、DLLのインポートは使用していません。 [ デモ ] [ マニュアル ] [ MT4版 ] [ Discord版 ] [ Telegramチャンネル ]  New: [ Telegram To MT5 ] セットアップ ステップバイステップの ユーザーガイド が利用可能です。 Telegram APIの知識は必要ありません。必要な全ては開発者から提供されます。 主な特長 購読者に送信する注文の詳細をカスタマイズする機能 例えば、Bronze、Silver、Goldといった階層型のサブスクリプションモデルを作成できます。Goldサブスクリプションでは、すべてのシグナルが提供されます。 id、シンボル、またはコメントによって注文をフィルターできます 注文が実行されたチャート
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のパフォーマンスを個別に監視し、その取引を管理したり、特定のポジションをスマートフォンから直接決済したりできるこ
作者のその他のプロダクト
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
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 tendenc
FREE
フィルタ:
レビューなし
レビューに返信