Ajustartplinea

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 o líneas de soporte/resistencia inclinadas en tiempo real.

¿Cómo funciona?

  1. Lectura y Proyección: El script localiza la línea de tendencia en el gráfico mediante su nombre exacto. A continuación, obtiene la proyección vertical de esa línea en el tiempo actual ( TimeCurrent() ).

  2. Normalización Automática: Ajusta el precio detectado utilizando la precisión exacta en decimales ( _Digits ) del símbolo actual.

  3. Validación de Seguridad: Verifica si la modificación es jurídicamente lógica para el tipo de posición (por ejemplo: para un BUY , el TP debe ser superior al precio actual; para un SELL , debe ser inferior).

  4. Modificación de TP: Aplica el nuevo valor de Take Profit respetando y manteniendo intacto el Stop Loss (SL) que ya tenía la orden.

Parámetros de Entrada (Inputs)

  • InpTrendlineName (Predeterminado: "MiLineaTP" ) Nombre exacto del objeto línea de tendencia dibujado en el gráfico.

  • InpModifyTP (Predeterminado: false ) Modo de seguridad:

    • false : Modo Prueba / Simulación. Solo calcula y muestra en el terminal el precio proyectado de la línea sin modificar ninguna orden.

    • true : Modo Ejecución Real. Aplica los cambios de TP en las posiciones filtradas.

  • InpTipoOperacion (Predeterminado: TODAS_LAS_ORDENES ) Filtra la dirección de las órdenes a modificar:

    • TODAS_LAS_ORDENES : Aplica tanto a Compras (BUY) como a Ventas (SELL).

    • SOLO_COMPRAS : Modifica exclusivamente órdenes de Compra.

    • SOLO_VENTAS : Modifica exclusivamente órdenes de Venta.

  • InpFiltroModo (Predeterminado: POR_MAGIC_NUMBER ) Define cómo se seleccionarás las posiciones a modificar:

    • POR_MAGIC_NUMBER : Modifica según el identificador de Expert Advisor o posiciones manuales.

    • POR_TICKETS : Modifica únicamente un grupo de tickets específicos.

  • InpMagicNumber (Predeterminado: 0 ) Número mágico a filtrar. Usa 0 para modificar posiciones abiertas manualmente.

  • InpTicketsList (Predeterminado: "123456,789101" ) Lista de números de ticket separados por comas (se activa solo si InpFiltroModo = POR_TICKETS ).

Ejemplo de Uso Práctico

Escenario: Salida Dinámica en Canal Bajista

  1. Tienes 3 operaciones de compra abiertas en EURUSD mediante un EA con Magic Number 888 .

  2. Dibujas una línea de tendencia en la parte superior del canal y le cambias el nombre en sus propiedades a MiLineaTP . (Asegúrate de que la línea alcance la vela actual o que tenga activada la propiedad "Rayo a la derecha").

  3. Arrastras el script al gráfico con los siguientes parámetros:

    • InpTrendlineName = MiLineaTP

    • InpModifyTP = true

    • InpFiltroModo = POR_MAGIC_NUMBER

    • InpMagicNumber = 888

  4. Resultado: El script calcula dónde corta la línea diagonal justo en la vela actual, valida el nivel y actualiza instantáneamente el Take Profit de las 3 órdenes al exacto valor proyectado.

Características Principales

  • Ajuste Dinámico por Diagonal: Permite establecer objetivos Take Profit que varían dinámicamente según la pendiente de una línea.

  • Modo de Prueba Seguro ( InpModifyTP = false ): Permite verificar en los logs de la plataforma qué precio se asignaría antes de ejecutar cualquier cambio real.

  • Filtrado Avanzado de Operaciones: Modifica según tipo de orden (Buy/Sell), Magic Number o por listado de tickets separados por coma.

  • Protección de Errores de Bróker: Valida la lógica de precios Ask/Bid antes de enviar la orden para evitar rechazos por parte del servidor.

  • Soporte Multi-Decimales: Compatible con pares Forex de 3 y 5 dígitos, Índices, Criptomonedas y Metales gracias a la normalización nativa ( _Digits ).

  • Preservación del Stop Loss: Modifica el TP sin reescribir ni arriesgar el Stop Loss establecido previamente.

  • No requiere indicadores externos ni librerías DLL.

Requisitos Técnicos para la Línea

Para que el script lea el precio correctamente, la línea de tendencia debe cumplir una de estas dos condiciones:

  1. Tener activada la opción Rayo a la derecha (Ray Right) en sus propiedades.

  2. Estar dibujada de forma que el punto final alcance o supere temporalmente a la vela actual ( TimeCurrent() ).

Importante

  • Este script no genera señales de entrada ni análisis técnico por sí mismo; únicamente gestiona la salida (TP) de operaciones abiertas.

  • El script ejecuta la modificación una sola vez al ser arrastrado al gráfico. No se queda ejecutando en bucle continuo como un Expert Advisor.

  • La modificación de órdenes está sujeta a las reglas del bróker (distancia mínima de Stop Level, mercado abierto, etc.).

  • Versión: 1.11

  • Plataforma: MetaTrader 5

  • Tipo: Script ( #property script_show_inputs )

  • Autor: SPC

#property copyright "Copyright 2026"
#property link      ""
#property version   "1.11"
#property script_show_inputs

// Descripción explicativa que aparece en el cuadro de diálogo al ejecutar el script
#property description "=========================================================="
#property description "SCRIPT: Ajustar TP Según Línea de Tendencia"
#property description "=========================================================="
#property description "Este script busca una línea de tendencia en el gráfico por su"
#property description "nombre y calcula su precio en el tiempo actual."
#property description ""
#property description "Luego asigna ese precio como Take Profit (TP) a las órdenes"
#property description "filtradas según la configuración (Tipo, Magic Number o Tickets)."
#property description "=========================================================="

#include <Trade\Trade.mqh>
#include <Trade\PositionInfo.mqh>

enum ENUM_TIPO_OPERACION
{
   TODAS_LAS_ORDENES = 0, // Compras y Ventas
   SOLO_COMPRAS      = 1, // Solo Compras (BUY)
   SOLO_VENTAS       = 2  // Solo Ventas (SELL)
};

enum ENUM_FILTRO_MODO
{
   POR_MAGIC_NUMBER = 0, // Filtro por Magic Number (0 = todas / manuales)
   POR_TICKETS      = 1  // Filtro por Tickets Específicos
};

//--- PARÁMETROS DE ENTRADA
input string               InpTrendlineName = "MiLineaTP";       // Nombre exacto del objeto Línea
input bool                 InpModifyTP      = false;           // ¿Aplicar cambios de TP? (false = Solo Probar)
input ENUM_TIPO_OPERACION  InpTipoOperacion = TODAS_LAS_ORDENES; // Tipo de Operaciones a Modificar
input ENUM_FILTRO_MODO     InpFiltroModo    = POR_MAGIC_NUMBER;   // Modo de Filtrado de Ordenes

//--- Opciones según el modo de filtrado seleccionado
input ulong                InpMagicNumber   = 0;               // Magic Number (Si aplica)
input string               InpTicketsList   = "123456,789101"; // Tickets separados por comas (Si aplica)

CTrade trade;
CPositionInfo pos;

//+------------------------------------------------------------------+
//| Script program start function                                    |
//+------------------------------------------------------------------+
void OnStart()
{
   if(InpTrendlineName == "")
   {
      Print("ERROR: Debes introducir el nombre exacto de la línea de tendencia.");
      return;
   }

   if(ObjectFind(0, InpTrendlineName) < 0)
   {
      Print("ERROR: No se encontró la línea en el gráfico: ", InpTrendlineName);
      return;
   }

   datetime now = TimeCurrent();
   double price_now = ObjectGetValueByTime(0, InpTrendlineName, now, 0);

   if(price_now <= 0)
   {
      Print("ERROR: No se pudo obtener el precio de la línea. Asegúrate de que llegue a la vela actual o tenga 'Rayo a la derecha' activo.");
      return;
   }

   // CORRECCIÓN: Tipo 'int' explícito para evitar warning de conversión desde 'long'
   int digits = (int)SymbolInfoInteger(_Symbol, SYMBOL_DIGITS);
   price_now = NormalizeDouble(price_now, digits);

   Print("--------------------------------------------------");
   Print("Línea seleccionada: ", InpTrendlineName, " | Precio proyectado: ", DoubleToString(price_now, digits));

   if(!InpModifyTP)
   {
      Print("MODO PRUEBA: No se han modificado los Take Profit (InpModifyTP = false).");
      return;
   }

   int total = PositionsTotal();
   int modificados = 0;

   for(int i = 0; i < total; i++)
   {
      if(!pos.SelectByIndex(i))
         continue;

      // Filtrar solo por el símbolo del gráfico actual
      if(pos.Symbol() != _Symbol)
         continue;

      // 1. Filtro por Dirección (Compras/Ventas)
      if(InpTipoOperacion == SOLO_COMPRAS && pos.PositionType() != POSITION_TYPE_BUY)
         continue;
      if(InpTipoOperacion == SOLO_VENTAS && pos.PositionType() != POSITION_TYPE_SELL)
         continue;

      // 2. Filtro por Magic Number o por Tickets
      ulong ticket = pos.Ticket();

      if(InpFiltroModo == POR_MAGIC_NUMBER)
      {
         if(InpMagicNumber != 0 && pos.Magic() != InpMagicNumber)
            continue;
      }
      else if(InpFiltroModo == POR_TICKETS)
      {
         if(!EsTicketPermitido(ticket, InpTicketsList))
            continue;
      }

      // Validar coherencia del TP con el tipo de orden
      if(pos.PositionType() == POSITION_TYPE_BUY && price_now <= pos.PriceCurrent())
      {
         PrintFormat("Ticket %I64u omitido: El TP (%.5f) debe ser mayor al precio actual para un BUY.", ticket, price_now);
         continue;
      }
      if(pos.PositionType() == POSITION_TYPE_SELL && price_now >= pos.PriceCurrent())
      {
         PrintFormat("Ticket %I64u omitido: El TP (%.5f) debe ser menor al precio actual para un SELL.", ticket, price_now);
         continue;
      }

      // Aplicar modificación de TP respetando el Stop Loss actual
      double sl = pos.StopLoss();
      if(trade.PositionModify(ticket, sl, price_now))
      {
         modificados++;
         PrintFormat("ÉXITO: Ticket %I64u -> Nuevo TP ajustado a %.5f", ticket, price_now);
      }
      else
      {
         PrintFormat("ERROR: No se pudo modificar el TP del ticket %I64u. Código error: %d", ticket, GetLastError());
      }
   }

   PrintFormat("RESUMEN: %d TP modificados de %d posiciones procesadas.", modificados, total);
   Print("--------------------------------------------------");
}

//+------------------------------------------------------------------+
//| Función auxiliar para buscar si un ticket está en la lista      |
//+------------------------------------------------------------------+
bool EsTicketPermitido(ulong ticket, string cadena_tickets)
{
   string array_tickets[];
   ushort u_sep = StringGetCharacter(",", 0);
   int count = StringSplit(cadena_tickets, u_sep, array_tickets);

   for(int k = 0; k < count; k++)
   {
      string ticket_str = array_tickets[k];
      StringTrimLeft(ticket_str);
      StringTrimRight(ticket_str);
      
      if((ulong)StringToInteger(ticket_str) == ticket)
         return true;
   }
   return false;
}

おすすめのプロダクト
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
Symbol XAUUSD, AUDUSD Timeframe H1 Timeframe Retail Support YES Minimum Deposit  1000 USD (or equivalent amount in another currency) Compatible with all brokers YES (supports every account currency) Works without preset YES ApexAlgo EA is a professionally developed Expert Advisor for MT5, specifically designed for trading XAUUSD on the 1-hour timeframe. The algorithm combines modern trend-following mechanisms with precise breakout and retest strategies to efficiently identify and execute high-
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
The utility for setting a common stop loss for multiple orders. Beta version. After the test,  common take profit function will be added, orders close function will be added , and other necessary features will be added. Please do not give bad ratings to this free beta version. If you like it, give it a good rating and write to the author about any errors you find and what you would like to see in the utility. I made this utility for myself and use it daily. I am sharing it with you. A commercial
FREE
One Trade Risk Selector with Order Type and Trail(MT5) One Order Risk Selector with Order Type and Trailing stop, as optional (MT5) is a powerful, smart and simple execution Expert Advisor (EA) designed to provide precise risk management for MetaTrader 5 traders. It allows for a single trade with selected risk,   order type  , configurable stop loss, optional take profit and optional trailing stop settings, making it ideal for disciplined traders who want to keep accurate risk per trade. Key F
FREE
This indicator draw a watermark on the chart, with the timeframe and symbol name. You can change everything, including add a aditional watermark. Functions: Symbol watermark: Size -  text size. Font -  text font. Color -  text color. Background text -  watermark at foreground or background mode. Horizontal correction -  x correction in pixels. Vertical correction -  y correction in pixels. Separator period X symbol -  what will separate the period from symbol. Aditional watermark: Enable custom
FREE
Hedge Copier Pro — Master EA   is the control unit of a high-speed, LOCAL trade copier for MetaTrader 5. It monitors your prop firm account and instantly broadcasts every trade event to the paired Slave EA — with ZERO latency and NO internet dependency. Designed specifically for prop firm traders, it includes a unique   REVERSE HEDGE mode : the Slave (sold separately) opens the OPPOSITE direction of every Master trade, allowing you to hedge across two accounts simultaneously and protect your fu
FREE
概要 このインジケーターは、クラシックな ドンチャンチャネル を強化したバージョンで、実践的なトレード機能を追加しています。 標準の3本線(上限、下限、中央線)に加え、 ブレイクアウト を検出し、チャート上に矢印で視覚的に表示します。また、チャートを見やすくするために、 現在のトレンド方向と逆側のラインのみを表示 します。 インジケーターの機能: 視覚的シグナル :ブレイクアウト時にカラフルな矢印を表示 自動通知 :ポップアップ、プッシュ通知、Eメール RSIフィルター :市場の相対的な強弱に基づいてシグナルを検証 カスタマイズ可能 :色、ラインの太さ、矢印コード、RSI閾値など 動作原理 ドンチャンチャネルは次のように計算します: 上限線 :直近N本のクローズ済みローソク足の最高値 下限線 :直近N本のクローズ済みローソク足の最安値 中央線 :最高値と最安値の平均値 上方ブレイクアウト は終値が上限線を超えたときに発生し、 下方ブレイクアウト は終値が下限線を下回ったときに発生します。 インジケーターは以下を行います: 3本のドンチャンラインを描画 方向転換後の最初のブレイクアウト
FREE
Alligator Joe
Alexandre Vincent Traber
Overview Alligator Joeは、クラシックなAlligatorインジケーター(Jaw、Teeth、Lips)を基盤としたトレンド整列型エキスパートアドバイザーです。3本のラインが新たに整列した瞬間を待ち——すでに長く続いている整列ではなく——そのトレンド方向にエントリーします。ポジションは単一の固定決済ではなく、価格が各ラインを順に割り込むたびに3段階に分けて徐々に決済されます。 How it works EAは直近の確定足をチェックします:Lips、Teeth、Jawが完全に整列しているか(上昇または下降)。 その整列が新しいものであることを確認します——数本前には存在していなかったこと——これにより、すでに伸びきった動きへの深追いエントリーを避けます。 価格がトレンド方向にLipsを超えて終値を付けた時点でエントリーが確定します。 Jawの外側に幅広の安全網ストップロスを設置します。 トレンドが弱まるにつれ3段階で決済します:価格がLipsを割り込んで終値を付けた時点でポジションの3分の1を決済、Teethでさらに3分の1、Jawで残りを決済します。 内蔵ダッシュ
FREE
XAU VWAP Mean Reversion H4 Expert Advisor for MetaTrader 5 — Gold / XAUUSD focus Version: 1.00 What it is XAU VWAP Mean Reversion H4 is an Expert Advisor for gold on the H4 chart. Intraday VWAP mean-reversion style participation on 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 publ
FREE
This EA finds Fair Value Liquidity (FVL) on the chart, tracks when they get mitigated , and then looks for an inversion signal (price “fails” through the zone). When that inversion happens, it places a trade in the opposite direction of the original Liquidity gap (an Inverse FVG approach). It also lets you control when it trades using market sessions , and it can auto-close positions at New York open (all positions or profitable-only). Key advantages Clear, rule-based entries (no guessing): trad
FREE
Donchian Channel is an indicator created by Richard Donchian. It is formed by taking the highest high and the lowest low of the last specified period in candles. The area between high and low is the channel for the chosen period. Its configuration is simple. It is possible to have the average between the upper and lower lines, plus you have alerts when price hits one side. If you have any questions or find any bugs, please contact me. Enjoy!
FREE
Indicator Description 4 Hull MA Color + Envelopes is a powerful trend-following indicator for MetaTrader 5 that combines four Hull Moving Averages (HMA) with Moving Average Envelopes to clearly identify market direction, trend strength, and potential reversal or pullback zones. This indicator is designed to reduce noise, react quickly to price movement, and provide a clean visual structure for professional trading.   Key Features   4 Hull Moving Averages (20, 50, 100, 200) Automatic color change
FREE
Description : Rainbow MT5 is a technical indicator based on Moving Average with period 34 and very easy to use. When price crosses above MA and MA changes color to green, then this is a signal to buy. When price crosses below MA and MA changes color to red, then this is a signal to sell. The Expert advisor ( Rainbow EA MT5 ) based on Rainbow MT5 indicator is now available here . MT4 version is available here .
FREE
Trade Dock
Sovannara Voan
5 (3)
A bot utility designed to streamline trade management. It offers auto lot calculation based on money, account risk, or fixed lot size, with order setup featuring draggable take profit, stop loss, and entry price to fit your plan. It supports Buy/Sell market, Buy/Sell limit, and Buy/Sell stop orders, with or without stop loss and take profit. Additional features include single-click breakeven, deleting positions/orders, and more, making trade management efficient and easy.
FREE
Important Lines
Terence Gronowski
4.88 (24)
This indicator displays Pivot-Lines, preday high and low, preday close and the minimum and maximum of the previous hour. You just have to put this single indicator to the chart to have all these important lines, no need to setup many single indicators. Why certain lines are important Preday high and low : These are watched by traders who trade in a daily chart. Very often, if price climbs over or falls under a preday low/high there is an acceleration in buying/selling. It is a breakout out of a
FREE
TradePulseMonitor for MetaTrader 4 & 5 Overview: TradePulseMonitor is a comprehensive, real-time dashboard indicator designed for MetaTrader 4 and MetaTrader 5. It provides traders with an at-a-glance overview of their account's financial health, risk exposure, position metrics, and historical performance. By consolidating critical data into a single, customizable on-chart dashboard, it eliminates the need to constantly check the Terminal window, allowing for faster and more informed trading de
FREE
Trade Behavior Mirror は、自分の口座の確定した取引履歴だけを読み、「損失が確定した直後に、自分のふだんの水準より大きいロットで新規ポジションを開いた」というパターンを1つだけ数えるツールです。予測も助言もしません。パネルに出るのは、すでにこの口座で起きたことの実測値だけです。 数字の作り方: 全銘柄・全マジック番号を対象に、最大31日分の確定した約定を読み込みます(チャートの銘柄に限らない、口座全体の集計です)。当日より前の30日間から、1日あたりの新規エントリー件数の中央値と、そのエントリーのロットの中央値を求めます。平均ではなく中央値を使うのは、1件だけ大きな取引があっても基準値全体が引きずられないようにするためです。その30日間のエントリーが5件に満たない場合は、十分な標本が無いということなので、無理に数字を出さず「Collecting history」と表示します。 核となる集計(画面では Entries within 10min of a loss, at above-median lot: の行): 新しいエントリーのたびに、その直前10分以内に損
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
Friend of the Trend: Your Trend Tracker Master the market with Friend of the Trend , the indicator that simplifies trend analysis and helps you identify the best moments to buy, sell, or wait. With an intuitive and visually striking design, Friend of the Trend analyzes price movements and delivers signals through a colorful histogram: Green Bars : Signal an uptrend, indicating buying opportunities. Red Bars : Alert to a downtrend, suggesting potential selling points. Orange Bars : Represent cons
FREE
Spike Catch Pro 22:03 release updates Advanced engine for searching trade entries in all Boom and Crash pairs (300,500 and 1000) Programmed strategies improvements Mx_Spikes (to combine Mxd,Mxc and Mxe), Tx_Spikes,   RegularSpikes,   Litho_System,   Dx_System,   Md_System,   MaCross,   Omx_Entry(OP),  Atx1_Spikes(OP),   Oxc_Retracement (AT),M_PullBack(AT) we have added an arrow on strategy identification, this will help also in the visual manual backtesting of the included strategies and see ho
FREE
Breakeven Bot
Gabriel Paul Ange Perrin
Optimize your trading management with Breakeven Bot, the essential tool for active traders managing multiple positions at once. No more wasting time manually adjusting your stops—one click is all it takes to secure your profits! Main Feature: ️ "BREAKEVEN" Button – Instantly set all profitable positions to breakeven and protect your gains quickly. ️ Customization Options: Set breakeven in pips or currency, depending on your preference. Choose whether breakeven should be at the entr
FREE
TradeVisonPro Forex Analyzer Pro MT5取引口座分析・モニタリングダッシュボード TradeVisonPro Forex Analyzer Proは、MetaTrader 5ユーザー向けに設計された取引分析および口座モニタリングソリューションです。 本製品は、MT5の取引データを構造化されたWebダッシュボードに整理し、口座情報の確認、保有ポジションの監視、取引履歴の分析、戦略の追跡、トレードジャーナルの記録、パフォーマンス統計の確認を可能にします。 TradeVisonPro Forex Analyzer Proは、取引情報を整理し、対応するデスクトップおよびモバイルWebブラウザからアクセスできるようにすることを目的としています。 主な機能 • MT5口座ダッシュボード • 保有ポジション監視 • 取引履歴分析 • トレードカレンダー • 戦略追跡 • トレードジャーナル • 口座パフォーマンス統計 • パフォーマンスレポート • 取引通知 • 複数口座対応 • 共有可能な読み取り専用レポート MT5口座ダッシュボード MetaTrader 5取引口
FREE
CloseAllPosition
Konstantin Chernov
4 (2)
A script for closing positions If you need to quickly close several positions, this script will make all the routine for you! The script does not have any input parameters. Allow AutoTrading before running the script. Usage: Run the script on a chart. If you need to specify the maximal deviation and the number of attempts to close positions, use the script with input parameters https://www.mql5.com/en/market/product/625 You can download MetaTrader 4 version here: https://www.mql5.com/en/market/
FREE
Symbol Watermark
Flavio Javier Jarabeck
4.63 (16)
Another request from my brotherhood was putting the name of the Symbol being seen - a little bigger - on the Chart, just to get sure that they are seeing the correct one... Mistakes pay a high price on the market... It is a very effective, and almost resource-null-consuming indicator that displays the current Symbol Name and Timeframe in almost any position of your Chart, with any color, and any Font Size... And also you can change the divisor character that is presented between the Symbol Name
FREE
Are you tired of drawing trendlines every time you're analyzing charts? Or perhaps you would like more consistency in your technical analysis. Then this is for you. This indicator will draw trend lines automatically when dropped on a chart. How it works Works similar to standard deviation channel found on mt4 and mt5. It has 2 parameters: 1. Starting Bar 2. Number of bars for calculation The   starting bar   is the bar which drawing of the trend lines will begin, while the   number of bars for c
FREE
MACD RSI Optimized EA is a free, fully automated trading robot designed to capture trends using a classic combination of indicators. By merging the trend-following capabilities of the MACD (Moving Average Convergence Divergence) with the momentum filtering of the RSI (Relative Strength Index), this EA aims to filter out market noise and enter trades with higher probability. This version has been specifically optimized for the month of October on the M15 (15-minute) timeframe and performs best on
FREE
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
Эксперт  MACD_LevelTrader MT5   создан для торговле валютной пары XAUUSD. Данная версия это наработки того, что можно извлечь  из  индикатора MACD и Moving Average.  Важно   перед тестированием изменить настройку с 1000 на 5000                       Offset in points UP from SMA200 for sell              5000                       Offset in points DOWN from SMA200 for buy        5000   Тайм фрейм  М5. Два варианта логики, П араметр  true=вход по уровню  MACD +   SMA200, false=вход по MACD  Тестиру
FREE
LotCalc is a minimalist MT5 indicator designed for fast, precise position sizing. Set your risk amount in dollars, click the button, then click your entry and stop-loss levels directly on the chart — the lot size and point distance are calculated and displayed instantly. No clutter, no extra panels, just the one tool you actually need before placing a trade.
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 取引。 ワンクリックで取引操作を行うことができます: リスクを自動計算して指値注文やポジションを開く。 複数の注文やポジションをワンクリックで開く。 注文のグリッドを開く。 保留中の注文やポジションをグルー
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 フォルダに貼り付けて、ターミナルを再起動しま
ベータリリース Telegram to MT5 Signal Trader はまもなく正式なアルファ版をリリースします。いくつかの機能はまだ開発中で、小さな不具合に遭遇する可能性があります。問題が発生した場合はぜひご報告ください。皆さまのフィードバックがソフトウェア改善に役立ちます。 Telegram to MT5 Signal Trader は、 Telegram のチャンネルやグループからの取引シグナルを自動的に MetaTrader 5 にコピーする強力なツールです。 パブリックおよびプライベートの両方のチャネルに対応し、複数のシグナル提供元を複数のMT5口座に接続可能です。ソフトウェアは高速で安定し、すべての取引を細かく制御できます。 インターフェースは直感的で、ダッシュボードとチャートは見やすく設計されており、リアルタイムで動作状況をモニターできます。 必要環境 MQL の制限により、EA は Telegram と通信するためのデスクトップアプリが必要です。 インストーラーは公式の インストールガイド にあります。 主な機能 マルチプロバイダー: 複数の Telegram
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
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台のターミナル間で同時に動作できる、プロフェッ
Anchor: The EA Manager Your EAs manage their own trades. Anchor manages the account around them. Anchor gives you one place to control your EAs, manage risk and decide when trading is allowed. Any EA, any vendor, any broker or symbol. No source-code changes required. The Problem Most EAs only know what they are doing. They cannot see when another EA is already trading, when several EAs open and are stacking risk or when the account has reached your loss limit. Even using just one EA, it may not
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
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
Trade copier MT5
Alfiya Fazylova
4.58 (53)
Trade Copierは、取引口座間の取引をコピーして同期するように設計された専門的なユーティリティです。 コピーは、同じコンピューターまたはvps にインストールされている、サプライヤーのアカウント/端末から受信者のアカウント/端末に行われます。 キャンペーン - すでに「Trade copier MT5」をご購入の方は、「Trade copier MT4」を無料で入手できます(MT4 → MT5 および MT4 ← MT5 のコピー用)。詳細な条件については、どうぞ個別メッセージでお問い合わせください。 購入する前に、デモ アカウントでデモ バージョンをテストできます。 デモ版 こちら 。 詳細な説明は こちら 。 主な機能と利点: MT5ネッティングアカウントを含む、MT5> MT5、MT4> MT5、MT5> MT4のコピーをサポートします。 高いコピー速度(0.5秒未満)。 ベンダーモードと受信者モードは同じ製品内に実装されています。 チャートから直接リアルタイムでコピーを制御できる、簡単で直感的なインターフェイス。 接続が切断されたり、端末が再起動されたりしても、設定と位
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
Signal TradingView to MT5 Pro Automator TradingViewとMetaTrader 5間の即時プロフェッショナル実行 TradingViewのシグナル(アラート)とMT5での実際の約定を繋ぐ、最も強固なコミュニケーションブリッジで、取引戦略を自動化します。スピード、柔軟性、そして完璧なリスク管理を求めるトレーダー向けに設計されたこのExpert Advisorは、あらゆるアラートメッセージを正確な成行または指値注文に変換します。 強みと利点 ユニバーサルパーシングエンジン(独自技術): あらゆるアラート形式からデータを自動的に認識し、抽出できる高度なテクノロジー。単一の固定フォーマットに制限されることはありません。システムはシンボル(銘柄)、アクション、価格、SL(ストップロス)、TP(テイクプロフィット)を自動的に理解します。 リアルタイム実行: レイテンシ(遅延)を最小限に抑えるよう最適化された、1秒未満の超高速ポーリング技術。シグナルを受信してから数ミリ秒以内に注文が実行されます。 機関投資家レベルのリスク管理: 以下に基づく自動かつ正確
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
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
Power Candles Strategy Scanner - 自動最適化型マルチシンボル設定ファインダー パワーキャンドル・ストラテジー・スキャナーは 、パワーキャンドル・インジケーターを駆動するのと全く同じ自己最適化エンジンを、マーケットウォッチに登録されているすべての銘柄に対して並行して実行します。1つのパネルで、現在統計的に取引可能な銘柄、各銘柄で勝率の高い戦略、最適なストップロス/テイクプロフィットの組み合わせが表示され、新たなシグナルが発生した瞬間に通知が届きます。 このツールは、Stein Investmentsのエコシステムの一部です。  18種類以上のツールをすべて閲覧し、AIを活用したセットアップの推奨を受け取り、  https://stein.investments でコミュニティに参加しましょう 市場動向を網羅。銘柄ごとに3,000件以上の自動最適化。2種類のアラート。ワンクリックでチャートを切り替えて即座にアクション。 なぜこれが必要なのか 多くのマルチ銘柄スキャナーは、 価格の動き (ボラティリティ、変動率、銘柄ごとのRSI)を表示するだけです。それ
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. ** After purchase,  Contact me via private message to receive t
Seconds Chart - MetaTrader 5で秒足チャートを作成するユニークなツールです。 Seconds Chart を使用すると、秒単位のタイムフレームでチャートを構築でき、標準的な分足や時間足チャートでは得られない柔軟性と分析精度を実現します。例えば、 S15 は15秒足を表します。カスタムシンボルをサポートしているインジケーターやEAをすべて使用できます。標準的なチャートと同様に便利に操作できます。 標準的なツールとは異なり、 Seconds Chart は超短期のタイムフレームでも高い精度と遅延なく作業できるように設計されています。 Free Demo: Seconds Chart v2.29 Demo.ex5 無料デモをダウンロードしてご自身でお確かめください: 完全機能版 - すべての機能が利用可能 24時間テスト - 精度と利便性を評価するのに十分な時間 デモ口座のみ - ほとんどのブローカーで簡単に開設可能 GBPCADチャートのみ - ほとんどの端末で利用可能 これらの制限はデモ版のみに適用されます。製品版は、あらゆる口座タイプ(リアル、デモ、コンテス
購入後にメッセージをお送りください。完全版マニュアルキット + AI機能をテストできる3日間のOpenAI APIトライアル + 追加ボーナスギフトをお受け取りいただけます 現在の価格は、8月のリローンチアップデートに伴う期間限定割引価格です — 値上げ前に今すぐエディションを確保してください。 次回価格:$340 これは、あなたが市場で試したことのある、または見たことのあるどのトレーディングパネルともまったく異なります。現在、リテール市場で利用できる最も革新的なAI搭載トレーディングパネルの一つです。 AIをチャートに直接接続することを想像してください   — AIによる推奨、口座監査、AIトレードシグナルの受信、そしてワンクリックでの実行。 Telegramを通じてスマートフォンから   取引口座全体を管理することを想像してください   — AIとのチャット、即時アラートの受信、取引の管理、どこからでも口座を保護できます。   複数のEA   を稼働させ、それぞれのEAのパフォーマンスを個別に監視し、その取引を管理したり、特定のポジションをスマートフォンから直接決済したりできるこ
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
Premium Trade Manager - コーチ内蔵型トレードパネル Premium Trade Manager は、AIトレーディングコーチをあなたのチャートの中に置き、その下に完全な執行エンジンを備えたツールです。いつも通りにトレードをセットアップし、あなた専任のAIトレーディングコーチ Max にそのセットアップをそのまま読み取らせて、発注前に率直な見解を伝えてもらいましょう。ストップの幅が規律あるアプローチに合っているか、リスクサイズは適切か、高影響のニュースイベントが数分後に迫っていないか、プロップファームの制限に近づいていないか。その下には、クリックの後をすべて処理するエンジンが備わっています。ワンクリックのリスクサイズ計算による発注、チャート上でドラッグして組み立て、発注後も動かせるプラン、最大4段階の分割利確、7種類のトレール方式、リアルタイムのプロップファームコンプライアンス、ニュースガード、そしてコストを自ら採点するスプレッド機能。判断はあなたが下す。Max がもう一度確認する。後のことはすべてパネルが担う。 購入前に実際に触れて試せます。 ブラウザ上でライブ
The Ultimate TradingView to MT5 Bridge Automation 手動取引や遅延の問題に終止符を。 TradingView to MT5 Copier PRO は、TradingViewのアラートをMetaTrader 5で直接実行するための、最速かつ最も信頼性の高いブリッジツールです。カスタムインジケーター、ストラテジーテスターのスクリプト、または手動の描画ツールを使用しているかに関わらず、このEAは 高速WebSocket技術 を使用して即座にトレードを実行します。 単純なコピーツールとは異なり、このPROバージョンには Arena Statistics が含まれています。これは、トレードパフォーマンス、ドローダウン、シャープレシオをチャート上で直接分析できる、プロ仕様の統合ダッシュボードです。 主な機能 トレードコピー機能 (Trade Copier) 超高速約定: WebSocket接続(標準的なWebRequestよりも高速)を使用し、スリッページを最小限に抑えます。 ユニバーサルブローカー対応: あらゆるブローカー および プロップファーム
MetaTrader 5 用トレーディングパネル — チャートとキーボードから行うプロフェッショナルなワンクリック取引 アクティブトレーダーのために設計された高機能 Trading Panel。標準の MetaTrader 操作よりも、はるかに速く、直感的に、そして効率的に取引を実行できます。 本パネルは、ポジション管理、未決注文管理、利益コントロール、執行スピードをひとつのプロフェッショナルなワークスペースに集約した実践的なソリューションです。 これは単なる補助ツールではありません。MetaTrader 5 のための本格的な trading cockpit です。チャートから直接操作し、キーボードで素早くコマンドを実行し、自動計算や視覚的なガイドを活用することで、手動トレードをより速く、より明確に、より快適にします。 このパネルを使えば、チャート上からワンクリックで注文を実行でき、標準の MetaTrader コントロールと比べて最大 30 倍速く取引操作を行うことができます。 新しいプレミアム版が利用可能です: VirtualTradePad PRO SE で取引ワークフローを強
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
動作デモ版ダウンロード Copy Cat More (コピーキャット・モア) MT5 トレードコピー (Trade Copier) は、ローカルのトレードコピーであり、今日のトレード課題のために設計された完全なリスク管理・執行フレームワークです。プロップファーム (prop firm) のチャレンジから個人のポートフォリオ管理まで、堅牢な執行、資金保護、柔軟な設定、高度なトレード処理の組み合わせによって、あらゆる状況に適応します。 このコピーは、マスター (Master、送信側) とスレーブ (Slave、受信側) の両モードで動作し、成行注文・指値注文、トレードの変更、部分決済、両建て決済 (Close By) 操作をリアルタイムで同期します。デモ口座と実口座、トレード用ログインと投資家ログインの両方に対応し、永続的トレードメモリ (Persistent Trade Memory) システムにより、EA・端末・VPS が再起動しても復旧を保証します。一意の ID により複数のマスターとスレーブを同時に管理でき、ブローカー間の差異は接頭辞/接尾辞の調整やカスタムシンボルマッピングに
Footprint Chart Pro — Professional OrderFlow EA for MetaTrader 5 Version 6.34 | Professional tool for real traders | Institutional-Grade Visualization DEMO USERS - PLEASE SELECT EVERY TICK / REAL TICK WHEN TESTING AND YOU HAVE DOWNLOADED HISTORICAL DATA. IF YOU SEE A WAITING SCREEN AND IT IS NOT DOWNLOADING, IT MEANS YOU HAVE LOW HISTORICAL DATA. TRY 1 MIN AND 5 MIN FIRST ON 1 DAY DATA. ONE DAY DATA SHOULD BE THE NEWEST AND MOST CURRENT DATE. PLEASE WAIT UNTIL THE MARKET HAS ROLLED OVER PERIOD.
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
作者のその他のプロダクト
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
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
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
フィルタ:
レビューなし
レビューに返信