• Información general
  • Comentarios (1)
  • Discusión
  • Novedades

MT5 Rates HTTP Provider

MT5 Broker Rates (OHLC, candles) HTTP Provider

Description

EA turns your MT5 terminal into historical/realtime rates data provider for your application. 
There are many market data providers on the internet, but in practice, the data provided is not always of good quality. Moreover, these services are often more expensive and typically require monthly subscription fees per each symbol.
With this EA, you can feed your application with exactly the same rates data that you see in the MT5 terminal, the same data on which you base your trades and market analysis.
Together with the EA that provides ticks data, a complete data set necessary for market analysis is offered.

Capabilities

  • Enables the transmission of rates data to a pre-configured external HTTP URL.
  • Guarantees the delivery of every rate, with the capability to resume from the last sent rate in case of disruptions.
  • Offers two storage options for rate timestamp offsets:
    • Local Files (default, managed automatically)
    • HTTP endpoint (for integration with applications)
  • Ensures reliable rates delivery, with retry mechanisms for HTTP request failures.
  • Allows for data transfer with configurable batching.

Configuration

Input Description
Default 
dataProvider
Specifies the name of data provider.
This name can then be used in URL templates as {dataProvider}.
-
maxRatesPerBatch Maximum number of rates that can be semt in a single batch.
10000 rates
debugLogsEnabled Whether to enable debug logs. true
targetExportUrlTemplate URL template for endpoint where the rates data will be sent.
Supported placeholders: dataProvider.
-
shouldReExportHistoricalRates
Option to re-export rates starting from a specific value, as specified in the startExportFromTimestampMillis input. false
startExportFromTimestampMillis
If shouldReExportHistoricalRates is set to true, rates will be sent starting from the timestamp specified in milliseconds. 1672531200000 (2023-01-01 0:00:00)
exportedSymbolsSource
Source for the symbols for which rates will be exported. Options are: 'HTTP_ENDPOINT' or 'EA_INPUT'. EA_INPUT
symbols
In cases where exportedSymbolsSource is set to 'EA_INPUT', this setting specifies which symbols rates will be exported. EURUSD
timeframes Specifies the timeframes for the rates to be exported when exportedSymbolsSource is set to 'EA_INPUT'. M1,M5,M15,M30,H1,H4,D1,W1
exportedSymbolsFetchUrlTemplate
URL template to fetch the rates symbols. Used in case exportedSymbolsSource='HTTP_ENDPOINT'.
Supported variables: dataProvider.
-
lastSentRateTimestampSource Source for the timestamp of the last sent rate. Options are: 'HTTP_ENDPOINT' or 'FILES'. FILES
lastSentRateTimestampUrlTemplate URL template to fetch the timestamp of the last sent rate. Used in case exportedSymbolsSource='HTTP_ENDPOINT'.
Supported placeholders: dataProvider, symbol, timeframe.
 -

EA Workflow Description:

Upon initialization, the Expert Advisor (EA) performs the following operations:

  1. Reset Offset Check: The EA checks the shouldReExportHistoricalRates variable to determine if there's a need to export historical rates data from a specific timestamp. If a re-export is required, it:

    • Establishes the startExportFromTimestampMillis value as the new timestamp offset.
    • Saves this offset securely, either locally in a file or transmits it to a designated HTTP endpoint, based on the configuration set by lastSentRateTimestampSource.
  2. Periodic Rates Data Harvesting and Sending: The EA is programmed with a timer set to activate at intervals defined by dataSendingIntervalMilliseconds. Upon each activation, the EA:

    • Requests rates data from the broker, starting from the last stored offset (the most recent rate timestamp) to the present moment.
    • Converts the acquired rates data into json and sends it to the predefined URL derived from targetExportUrlTemplate input."

By executing these steps, the EA ensures a continuous and automated stream of the most recent rates data for external use, keeping your application or analysis tools supplied with up-to-the-minute market information.

Usage

Below are the minimum actions required for the EA to start exporting rates to your configured URL

  • Implement an HTTP endpoint that handles a POST request on a URL derived from the targetExportUrlTemplate. This endpoint should:

    • Accept rates data with the JSON structure described below.
    • Respond with a 200 status code if the reception is successful.
  • Ensure that you add the host to the list of allowed hosts in 'Tools > Options > Allow WebRequest for listed URL'.

    • If you are testing locally on localhost, create a hostname in 'C:\Windows\System32\drivers\etc\hosts' on Windows or '/etc/hosts' on Linux-based systems. Use this hostname in the targetExportUrlTemplate.
  • Attach the EA to any chart in MT5 and configure the following inputs:

    • startExportFromTimestampMillis: Set the timestamp from which you need to get rates.
    • symbols: Configure the symbols that you need rates for.
    • shouldReExportHistoricalRates: This must be set to true on the first run so that the EA creates all necessary files for tracking the last sent rate timestamp.

Offset Management

The EA maintains the timestamp (offset) of the last successfully sent rate in order to continue the export process in the event of disruptions or a terminal restart.
By default, timestamps are stored in files that are automatically created at the following path: C:\Users{userName}\AppData\Roaming\MetaQuotes\Terminal{id}\MQL5\Files. There is a separate file for each symbol and timeframe.

Additionally, there is an option to use separate HTTP endpoints for reading/storing the offset instead of files.
To use this feature, set lastSentRateTimestampSource to 'HTTP_ENDPOINT' and implement HTTP endpoints based on the URL defined in lastSentRateTimestampUrlTemplate.
As a backend solution, you can choose to store offsets in a database (such as PostgreSQL). If you need to re-export rates for a specific symbol, you would only need to update the timestamp values in the database table.

Exported Symbols Management

By default, the EA uses the input symbols to determine which symbols rates need to be exported.
However, there is also an option to retrieve the list of symbols from a separate HTTP endpoint.
To utilize this feature, set exportedSymbolsSource to 'HTTP_ENDPOINT' and implement an endpoint using the URL defined in exportedSymbolsFetchUrlTemplate.

EA External Management  

If you set both lastSentRateTimestampSource and exportedSymbolsSource to 'HTTP_ENDPOINT', then the EA can be fully controlled externally:

  • You can initiate re-export for specific symbols without needing to perform any actions in MT5.
  • You can specify which symbols to export without having to change the inputs in MT5.

Integrating application REST api specification 

HTTP Endpoint Description  Method Request   Response 
targetExportUrlTemplate
URL for sending rates data. POST Headers: 
Content-Type: application/json
Body                                                                       
[
  {
    "symbol": "EURUSD",
    "timeframe": "H1",
    "timestampMillis": 1670001234567,
    "open": 1.12345,
    "high": 1.12500,
    "low": 1.12200,
    "close": 1.12400,
    "tickVolume": 123456,
    "spread": 0.0002,
    "realVolume": 1000000
  },
  ...
]


Response Code 200 in case rates are obtained successfully
exportedSymbolsFetchUrlTemplate
URL is used to retrieve the list of rates symbols that the EA will export to the URL derived from 'targetExportUrlTemplate'. GET   Headers:
Content-Type: text/plain
Body (coma separated list of symbols)               
EURUSD,GBPUSD,AUDUSD,BTCUSD
                                                                                    

lastSentRatesTimestampUrlTemplate URL is utilized to fetch the specific timestamp from which the export process should begin. GET                                                                                                             Headers
Content-Type: text/plain
Body
1625135912000
lastSentRateTimestampUrlTemplate URL is used to store the timestamp of the last successful POST request made to the URL derived from 'targetExportUrlTemplate'.
POST Headers: 
Content-Type: text/plain
Body
1625135912000
                                                                                                          

Demo version (NZDUSD only)

Tags: rates, rate, price, price aggregate, stream, streaming, export, exporting, webhook, webhooks, integration, mt5, http, rest, forex, crypto, data, historical, realtime, rest api, provider, broker, data feed, ohlc

Productos recomendados
A trader cannot always discover what the last closed bar is by volume. This EA, analyzing all volumes inside this bar, can more accurately predict the behavior of large players in the market. In the settings, you can make different ways to determine the volume for growth, or for falling. This adviser can not only trade, but also visually display what volumes were inside the bar (for buying or selling). In addition, it has enough settings so that you can optimize the parameters for almost any ac
Fast Trading
Alexander Fedosov
Fast Trading is an intuitively handy panel for manual trading. With Fast Trading  you can quickly: 1. Set pending orders.    2. Place market positions and manage them.   3. Turn on voice notifications for basic actions.   Parameters Base FontSize — size of the font in the application. Caption Color — caption color of window. Back color — background color. Interface language — must be English or Russian. Magic Number — need for market positions and pending orders. Use Voice Notify — Action noti
Pending Orders Grid Complete System opens any combination of Buy Stop, Sell Stop, Buy Limit and Sell Limit pending orders and closes all existing pending orders. You will be able to Drag-and-Drop the Script on the chart and it will pick up the start price for the first position in the grid from the "Drop" point. Usually it should be in the area of Support/Resistance lines. Input Parameters Before placing all pending orders, the input window is opened allowing you to modify all input parameters
¡Envía señales totalmente personalizables desde MT5 a Telegram y conviértete en un Proveedor de Señales! Este producto se presenta en una interfaz gráfica fácil de usar y visualmente atractiva. ¡Personaliza tus ajustes y comienza a usar el producto en cuestión de minutos! Guía del usuario + Demo  | Versión MT4  | Versión Discord Si deseas probar una demo, por favor consulta la Guía del usuario. El remitente de MT5 a Telegram NO funciona en el probador de estrategias. Características de MT5 a
The indicator compares quotes of a given symbol and a synthetic quote calculated from two specified referential symbols. The indicator is useful for checking Forex symbol behavior via corresponding stock indices and detecting their convergence/divergence which can forecast future price movements. The main idea is that all stock indices are quoted in particular currencies and therefore demonstrate correlation with Forex pairs where these currencies are used. When market makers decide to "buy" one
Оnly 5 Copies available   at   $90! Next Price -->   $149 The EA  Does NOT use Grid  or  Martingale . Default Settings for EURUSD Only   The EA has 6 Strategies with different parameters. It will automatically enter trades, take profit and stop loss and also may use reverse signal modes. If a trade is in profit it will close on TP/SL or reverse signal. The EA works on  EUR USD on H1 only   do not trade other pairs. Portfolio EURUSD   uses a number of advanced Strategies and different degrees
Tome el control de su rutina comercial sin esfuerzo con el revolucionario Trades Time Manager. Esta potente herramienta automatiza la ejecución de órdenes en momentos designados, transformando su enfoque comercial. Elabore listas de tareas personalizadas para diversas acciones comerciales, desde comprar hasta establecer órdenes, todo sin intervención manual. Guía de entradas e instalación de Trades Time Manager Si desea recibir notificaciones sobre el EA, agregue nuestra URL al terminal MT4/MT5
Trade Dashboard MT5
Fatemeh Ameri
5 (25)
Tired of complex order placement and manual calculations? Trade Dashboard is your solution. With its user-friendly interface, placing orders becomes effortless, by a single click, you can open trades, set stop loss and take profit levels, manage trade lot size, and calculate risk to reward ratios, allowing you to only focus on your strategy. Say goodbye to manual calculations and streamline your trading experience with Trade Dashboard. Download   demo version   right now. You can find   deta
OrderHelper MT5
Md Atikur Rahman
OrderHelper script is super easy and trader friendly to use. It would boost your trading experience. Because it is designed to open one to multiple orders quickly with just one click. Besides using the OrderHelper script, traders can define various parameters for open orders such as the symbol, order type, lot size, stoploss, takeprofit and more. Basically, with this script traders can manage their open orders more efficiently and save their trading time. OrderHelper manages: Open the number o
Tim Trend
Oleksii Ferbei
Due to the fact that at each separate period of time, trading and exchange platforms from different parts of the planet are connected to the trading process, the Forex market operates around the clock. Depending on which continent trading activity takes place during a certain period, the entire daily routine is divided into several trading sessions. There are 4 main trading sessions: Pacific. European. American Asian This indicator allows you to see the session on the price chart. You can als
Introducing the "Auto Timed Close Operations", a useful utility for MetaTrader 5 traders! This utility has been developed to help traders of all levels automatically close their open positions at the exact moment they desire. With the "Auto Timed Close Operations", you gain the required control over your trades and can avoid unwanted surprises at the end of the day or at any other predefined time. We know how important it is to protect your profits and limit your losses, and that's exactly what
Order Block Detector
Cao Minh Quang
5 (1)
Automatically detect bullish or bearish order blocks to optimize your trade entries with our powerful indicator. Ideal for traders following ICT (The Inner Circle Trader). Works with any asset type, including cryptocurrencies, stocks, and forex. Displays order blocks on multiple timeframes, from M2 to W1. Alerts you when an order block is detected, migrated, or a higher timeframe order block is created/migrated. Perfect for both scalping and swing trading. Enhanced by strong VSA (Volume Spread A
Esta utilidad le enviará una notificación detallada en su móvil y una alerta en el terminal MT5 tan pronto como aparezca en el gráfico un patrón de velas que desee ver. La notificación contiene el símbolo, el patrón de velas y el marco de tiempo en el que se formó el patrón. Tendrá que vincular Metatrader 5 Mobile con su terminal de Windows. Aquí le explicamos cómo hacerlo. https://www.metatrader5.com/es/mobile-trading/iphone/help/settings/settings_messages#notification_setup Lista de patro
The indicator shows key volumes confirmed by the price movement. The indicator allows you to analyze volumes in the direction, frequency of occurrence, and their value. There are 2 modes of operation: taking into account the trend and not taking into account the trend (if the parameter Period_Trend = 0, then the trend is not taken into account; if the parameter Period_Trend is greater than zero, then the trend is taken into account in volumes). The indicator does not redraw . Settings Histo
This non-trading expert utilizes so called custom symbols feature ( available in MQL API as well) to build custom charts based on history of real ticks of selected standard symbol. New charts imitate one of well-known graphic structures: Point-And-Figure (PnF) or Kagi. The result is not exactly PnF's X/O columns or rectangular waves of Kagi. Instead it consists of bars, calculated from and denoting stable unidirectional price moves (as multiples of the box size), which is equivalent to XO colum
ICT PD Arrays Trader
Aesen Noah Remolacio Perez
Attention All ICT Students! This indispensable tool is a must-have addition to your trading arsenal... Introducing the ICT PD Arrays Trader: Empower your trading with this innovative utility designed to enhance and simplify your ICT trading strategy and maximize your potential profits.  How does it work? It's simple yet highly effective. Begin by placing a rectangle on your trading chart and assigning it a name like 'ict' or any preferred identifier. This allows the system to accurately ide
Binance Quotes Updater
Andrey Khatimlianskii
5 (1)
This service is designed to stream online cryptocurrency quotes   from the Binance exchange to your MetaTrader 5 terminal. You will find it perfectly suitable if you want to see the quotes of cryptocurrencies in real time — in the Market watch window and on the MetaTrader 5 charts. After running the service, you will have fully featured and automatically updated  cryptocurrency charts in your MetaTrader 5. You can apply templates, color schemes, technical indicators and any non-trading tools to
¡Binance es un intercambio de criptomonedas de renombre mundial! Para facilitar el análisis de datos en tiempo real del mercado de divisas digitales cifradas, el programa puede importar automáticamente los datos de transacciones en tiempo real de Binance Futures a MT5 para su análisis. Las funciones principales son: 1. Apoyar la creación automática de pares de negociación de futuros USD-M del Ministerio de Seguridad Monetaria, y la moneda base también se puede establecer por separado. La mone
The account manager has a set of functions necessary for trading, which take into account the results of the entire account in total, and not for each individual open position: Trailing stop loss. Take profit. Break-even on the amount of profit. Breakeven by time. Stop Loss Typically, each of these options can be applied to each individual trade. As a result, the total profit on the account may continue to increase, and individual positions will be closed. This does not allow you to get the maxi
Gerenciador de ordens manuais
Rodrigo Oliveira Malaquias
Robot Manual Order Manager es una herramienta que le permite incluir automáticamente Stop Loss, Breakeven, Take Profit y parciales en operaciones abiertas. Ya sea una orden de mercado o una orden limitada. Además, realiza automáticamente su operación, moviendo su stop o finalizando operaciones, de acuerdo con los parámetros que elija. Para hacer sus operaciones más efectivas, el Robot Administrador de Órdenes Manuales tiene varios indicadores que se pueden configurar para trabajar en su comercio
Pending Orders Grid Complete System   opens any combination of Buy Stop, Sell Stop, Buy Limit and Sell Limit pending orders and closes all existing pending orders. Only one time of the pending order at the same time!!! You will have a possibility to put a legitimate   Open Price   for the first position in the grid. Usually it should in the area of Support/Resistance lines. You just need to drop this script on the chart of a desired currency pair. Input Parameters Before placing all pending or
Tenha a boleta do ProfitChart no seu Metatrader! ........................ Agora é possível ter a boleta do profit no seu Metatrader. Envie ordens de compra e venda, acompanhe o mercado e simule estratégias em momentos de mobilidade, diretamente do seu Metatrader5. Gestão de riscos e otimização de lucros são dois princípios básicos de qualquer operação bem-sucedida. Nesse sentido, utilize as ferramentas de  STOPMOVEL, TRAILING STOP, STOPGAIN E ORDENS PARCIAIS DE SAÍDA.       Funcionalidades
Candle Info For selected candle: OHLC prices Open Time Bar shift body size in points upper shadow in points Lower shadow in points Candle length in points Tick volume For current candle: Remaining time Ticks/sec For the chart: Price at mouse position Time at mouse position Draw Lines For selected candle you can draw a projected line forward, backward or both ways. You can hide/show/delete all lines created.
¡Binance es un intercambio de criptomonedas de renombre mundial! Para facilitar el análisis de datos en tiempo real del mercado de divisas digitales cifradas, el programa puede importar automáticamente datos de transacciones en tiempo real de Binance a MT5 para su análisis. Las funciones principales son: 1. Apoye la creación automática de pares comerciales al contado en el departamento de seguridad de divisas, y también puede establecer la divisa de beneficio y la divisa base por separado. Po
I slippage = 0; - deslizamiento válido, 0-no utilizado   S cmt=""; - comentario sobre órdenes   I Magic = 20200131; - medzhik, id de orden del asesor   S WorkTime="00:00-24:00"; - formato tal HH: MM-HH: MM, día entero 0-24 o 00: 00-24: 00   D fix_lot = 0.01; / / Fix lot-lote de trabajo   D order_tp = 100.0; / / TP. Recomiendo-10.0-Take Profit en puntos como para 4x signos! el EA detecta automáticamente las herramientas de 5 caracteres y aumentará el valor 10 veces automáticamente.   D order_sl
The Price Spectrum indicator reveals opportunities for detailed market analysis. Advantages: Market Volume Profile Creation : The indicator assists in analyzing the dynamics of trading volumes in the market. This allows traders to identify crucial support and resistance levels, as well as determine market structure. Filtering Insignificant Volumes : Using the indicator helps filter out insignificant volumes, enabling traders to focus on more significant market movements. Flexible Configuration S
Delving deep into the sphere of finance and trading strategies, I decided to conduct a series of experiments, exploring approaches based on reinforcement learning as well as those operating without it. Applying these methods, I managed to formulate a nuanced conclusion, pivotal for understanding the significance of unique strategies in contemporary trading.  
FREE
Market watch pro
Makarii Gubaydullin
Monitor your favorite Symbols My   #1 Utility:  includes 65+ functions, including this tool  |   Contact me  if you have any questions This tool opens in a separate window: it can be moved (drag anywhere), and minimized [v]. You can adjust the Watchlist on the panel: Click [edit list] to add / remove the Symbols from the Watchlist. Calculated value: it may either be the last [closed bar], or the current [floating bar]. Select the [timeframe] for calculation. There are 2 types of the value sorti
Orion Telegram Notifier Bot
Joao Paulo Botelho Silva
El Orion Telegram Notifier Bot permite que el trader reciba notificaciones de operaciones en su Telegram cada vez que se abre o cierra una posición. El EA envía notificaciones que muestran el Símbolo, Número Mágico, Dirección, Lote (Volumen), Precio de Entrada, Precio de Salida, Take Profit, Stop-Loss y Ganancia de la operación. ¿Cómo configurar Orion Telegram Notifier? Abre Telegram y busca "BotFather" Haz clic o escribe "/newbot" Crea un apodo (nickname) y nombre de usuario (username) (Ejemp
Este indicador lo ayuda a controlar varios pares en un espacio de trabajo pequeño, por lo tanto, no es necesario abrir varios gráficos en la plataforma para hacerlo. El indicador muestra secuencialmente hasta 6 pares diferentes, además de que cada uno de estos pares tiene un botón con el que puede detener el indicador para observar el par seleccionado. Coloque el indicador en un gráfico para monitorear varios pares y el resto de su espacio utilícelo en el gráfico del par que desea observar en de
Los compradores de este producto también adquieren
Trade Assistant MT5
Evgeniy Kravchenko
4.4 (171)
Ayuda a calcular el riesgo por operación, la fácil instalación de una nueva orden, gestión de órdenes con funciones de cierre parcial, trailing stop de 7 tipos y otras funciones útiles. Atención, la aplicación no funciona en el probador de estrategias. Puede descargar la versión Demo en la página de descripción  Manual, Description, Download demo Función de línea -   Muestra en el gráfico la línea de apertura, Stop Loss, Take Profit. Con esta función es fácil establecer una nueva orden y ver
¿Crees que en mercados donde el precio puede cambiar en una fracción de segundo, realizar pedidos debería ser lo más sencillo posible? En Metatrader, cada vez que desee abrir una orden, debe abrir una ventana donde ingrese el precio de apertura, stop loss y take profit, así como el tamaño de la operación. Al operar en los mercados financieros, la gestión del capital es fundamental para mantener su depósito inicial y multiplicarlo. Entonces, cuando quiera realizar un pedido, probablemente se preg
TradePanel MT5
Alfiya Fazylova
4.86 (113)
Trade Panel es un asistente comercial multifuncional. La aplicación contiene más de 50 funciones diseñadas para el comercio manual. Le permite automatizar la mayoría de las acciones comerciales. Antes de comprar, puede probar la versión de demostración en una cuenta de demostración. Versión de demostración aquí . Instrucciones completas aquí . Características principales de la aplicación: Funciona con cualquier instrumento comercial (Forex, CFD, futuros y otros). Funciona con todos los instrumen
Trade Manager DaneTrades
DaneTrades Ltd
4.73 (22)
Trade Manager para ayudarle a entrar y salir rápidamente de operaciones mientras calcula automáticamente su riesgo. Incluye funciones que le ayudarán a evitar el exceso de operaciones, las operaciones de venganza y las operaciones emocionales. Las operaciones se pueden gestionar automáticamente y las métricas de rendimiento de la cuenta se pueden visualizar en un gráfico. Estas características hacen que este panel sea ideal para todos los operadores manuales y ayuda a mejorar la plataforma Meta
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 to Telegram Signal Provider es una utilidad fácil de usar y completamente personalizable que permite enviar señales especificadas al chat, canal o grupo de Telegram, convirtiendo tu cuenta en un proveedor de señales . A diferencia de la mayoría de los productos competidores, no utiliza importaciones DLL. [ Demo ] [ Manual ] [ Versión MT4 ] [ Versión Discord ] [ Canal de Telegram ] Configuración Está disponible una guía del usuario paso a paso. No se requiere conocimiento de la API de Tele
Bots Builder Pro MT5
Andrey Barinov
4.75 (4)
This is exactly what the name says. Visual strategy builder . One of a kind. Turn your trading strategies and ideas into Expert Advisors without writing single line of code. Generate mql source code files with a few clicks and get your fully functional Expert Advisors, which are ready for live execution, strategy tester and cloud optimization. There are very few options for those who have no programming skills and can not create their trading solutions in the MQL language. Now, with Bots Build
Mentfx Mmanage mt5
Anton Jere Calmes
4.43 (7)
The added video will showcase all functionality, effectiveness, and uses of the trade manager. Drag and Drop Trade Manager. Draw your entry and have the tool calculate the rest. Advanced targeting and close portions of a trade directly available in tool (manage trades while you sleep). Market order or limit order on either side with factored spread. Just draw the entry, the tool does the rest. Hotkey setup to make it simple. Draw where you want to enter, and the stop loss, the tool calculates al
The top-selling EAs on the market cost a lot and one day they are suddenly gone. This is because one strategy will not work in the forex market all the time. Our product is unique from all others in the MQL Marketplace because our EA comes with 34+ built-in indicators that allow develop strategies every time.  You build your strategy and keep updating it. If one strategy does not work, simply build another all using only one EA. This is All-In-One EA   in this market place. You can use as trade
Copie señales de cualquier canal del que sea miembro ( sin necesidad de un Token de Bot o Permisos de Administrador ) directamente en su MT5. Ha sido diseñado pensando en el usuario y ofreciendo muchas características que necesita Este producto se presenta en una interfaz gráfica fácil de usar y visualmente atractiva. ¡Personalice su configuración y comience a usar el producto en minutos! Guía del usuario + Demo  | Versión MT4 | Versión Telegram Si desea probar una demostración, consulte la G
Adam FTMO MT5
Vyacheslav Izvarin
5 (1)
ADAM EA Special Version for FTMO Please use ShowInfo= false for backtesting ! Our 1st EA created using ChatGPT technology Trade only GOOD and checked PROP FIRMS  Default parameters for Challenge $100,000 Tested on EURUSD and GBPUSD only  Use 15MIN Time Frame Close all deals and Auto-trading  before Weekend at 12:00 GMT+3  Friday For Prop Firms MUST use special Protector  https://www.mql5.com/en/market/product/94362 Signal using ADAM  https://www.mql5.com/en/signals/2190554 --------------------
-25% discount ($199 -> $149) Advanced trading tool: One click smart orders that execute under your conditions Developed by trader for trading community:  position size calculator (lot size), open position after price action, strategy builder, set and forget trading, mobile notifications... Risk Management -  Risk percentage position size calculator, gain percentage, target risk reward ratio, spread and commissions are included in calculations 7 Advanced order types  - Set and forget trading w
DrawDown Limiter
Haidar, Lionel Haj Ali
5 (17)
Drawdown Limiter EA You are in the right place if you were searching for Drawdown control, Drawdown limiter, Balance protection, Equity Protection or Daily Drawdown Limit related to Prop Firm, FTMO, or Funded account trading, or if you want to protect your trading account. Have you suffered from controlling your drawdown when trading funded accounts? This EA is meant for you. Prop firms usually set a rule called “Trader Daily Drawdown”, and if it is not respected, you are disqualified.  I am an
Copie las señales de cualquier canal del que sea miembro (incluidos los privados y restringidos) directamente a su MT5.  Esta herramienta ha sido diseñada pensando en el usuario al ofrecer muchas características que necesita para gestionar y monitorear las operaciones. Este producto se presenta en una interfaz gráfica fácil de usar y visualmente atractiva. ¡Personalice su configuración y comience a usar el producto en minutos! Guía del usuario + Demo  | Versión MT4 | Versión Discord Si desea
UTM Manager es una herramienta intuitiva y fácil de usar que ofrece una ejecución comercial rápida y eficiente. Una de las características más destacadas es el modo "Ignorar spread", que le permite operar al precio de las velas, ignorando los spreads por completo (por ejemplo, permite operar con pares de spread más altos en LTF, evita que el spread lo saque de las operaciones). Otro aspecto clave del UTM Manager es su copiadora comercial local única, que permite la flexibilidad para ejecutar dif
Trade Assistant 38 in 1
Makarii Gubaydullin
4.87 (15)
Herramienta multifuncional con más de 65 funciones, incluidas: Calculadora de lotaje, Acción del precio, Calculo RR, Gestor de posiciones, Zonas de Oferta y Demanda Versión demo   |   Manual de usuario   |   MT4 La utilidad no funciona en el probador de estrategias: puede descargar la   Versión Demo AQUÍ   para probar el producto. Pongase en contacto   conmigo para cualquier pregunta / ideas para mejorar / en caso de encontrar un problema Simplifica, acelera y automatiza su operativa de tradi
Active Lines
Yury Kulikov
5 (4)
Attention: Demo version for review and testing can be downloaded here . It does not allow trading and can only be run on one chart. Active Lines - a powerful professional tool for operations with lines on charts. Active Lines provides a wide range of actions for events when the price crosses lines. For example: notify, open/modify/close a position, place/remove pending orders. With Active Lines you can assign several tasks to one line, for each of which you can set individual trigger conditions
Hedge Ninja
Robert Mathias Bernt Larsson
Asegúrate de unirte a nuestra comunidad Discord en www.Robertsfx.com , también puedes comprar el EA en robertsfx.com GANE SIN IMPORTAR EN QUÉ DIRECCIÓN SE MUEVA EL PRECIO Este robot gana sin importar en qué dirección se mueva el precio al seguir la dirección cambiante dependiendo de en qué dirección se mueva el precio. Esta es la forma más libre de operar hasta la fecha. Por lo tanto, gana sin importar en qué dirección se mueva (cuando el precio se mueve a cualquiera de las líneas rojas como s
-25% discount ($149 -> $111) Everything for chart Technical Analysis indicator mt5 in one tool Draw your supply demand zone with rectangle and support resistance with trendline and get alerts to mobile phone or email alert -  Risk reward indicator mt5 Video tutorials, manuals, DEMO download   here .   Find contacts on my   profile . 1.   Extended rectangles and trendlines Object will be extended to the right edge of the chart when price will draw new candles on chart. This is rectangle extend
YuClusters
Yury Kulikov
4.93 (43)
Atención: la versión de demo para revisión y prueba está aquí . YuClusters es un sistema de análisis de mercado profesional. El comerciante tiene oportunidades únicas para analizar el flujo de órdenes, volúmenes comerciales, movimientos de precios utilizando varios gráficos, perfiles, indicadores y objetos gráficos. YuClusters opera con datos basados ​​en Time & Sales o información de ticks, dependiendo de lo que esté disponible en las cotizaciones de un instrumento financiero. YuClusters le pe
VirtualTradePad One Click Trading Panel
Vladislav Andruschenko
4.59 (64)
Panel de comercio para operar en 1 clic. ¡Trabajando con posiciones y pedidos! Operar desde el gráfico o desde el teclado. Con nuestro panel de operaciones, puede ejecutar operaciones con un solo clic directamente desde el gráfico y realizar operaciones comerciales 30 veces más rápido que con el control estándar de MetaTrader. Los cálculos automáticos de parámetros y funciones hacen que las operaciones sean más rápidas y cómodas para los operadores. Consejos gráficos, etiquetas informativas e in
ManHedger MT5
Peter Mueller
5 (2)
If you'd like to test the product before purchasing please watch the video below. The program doesn't work in the strategy tester! Contact me for user support & advices! If you've bought this EA, you are entitled to a gift!! MT4 Version  With this Expert Advisor, you can: Implement your own Zone Recovery strategy to capitalize on trending markets. Create Grid trading strategies, to profit from ranging markets. Place orders easily and clearly. Display your trades/strategies on the chart. Display
Trade Assistant GS mt5
Vasiliy Strukov
5 (13)
El panel de operaciones se limita a la gestión de órdenes, tanto las que se abren mediante botones como las que abre el usuario. Simple y conveniente en la Colección. Complementará a cualquier comprador. Recomiendo usarlo junto con el indicador Gold Stuff. Configure el comercio como órdenes individuales y construya una cuadrícula con una distancia. Para crear una cuadrícula estándar, simplemente establezca una distancia grande, como 10000. Los resultados en tiempo real se pueden ver aquí. ¡
Ultimate Trailing Stop EA MT5
BLAKE STEVEN RODGER
4.57 (7)
This EA Utility allows you to manage (with advanced filtering) unlimited open orders (manual or EA) with 16 trailing stop methods: fixed, percent, ATR Exit, Chandelier Exit, Moving Average, Candle High Low Exit, Bollinger Bands, Parabolic, Envelope, Fractal, Ichimoku Kijun-Sen, Alligator, Exit After X Minutes or Bars, RSI and Stochastic. The trailing stop can be either real or virtual, and you can exit fully or with a partial close percent on touch or bar close.  Moreover, you can add (overri
El MT5 to Discord Signal Provider es una herramienta fácil de usar y completamente personalizable diseñada para enviar señales de trading directamente a Discord. Esta herramienta transforma tu cuenta de trading en un proveedor de señales eficiente. ¡Personaliza los formatos de los mensajes para adaptarlos a tu estilo! Para facilitar su uso, selecciona entre plantillas pre-diseñadas y elige qué elementos del mensaje incluir o excluir. [ Demo ] [ Manual ] [ Versión MT4 ] [ Versión Telegram ] Con
Riskless Pyramid Mt5
Snapdragon Systems Ltd
5 (2)
Introduction This powerful MT4 trade mangement EA offers a way potentially to aggressively multiply trade profits in a riskfree manner. Once a trade has been entered with a defined stoploss and take profit target then the EA will add three pyramid add-on trades in order to increase the overall level of profit. The user sets the total combined profit target to be gained if everything works out. This can be specified either as a multiple of the original trade profit or as a total dollar amount. Fo
Exp COPYLOT CLIENT for MT5
Vladislav Andruschenko
3.76 (17)
La copiadora comercial para MT5 es un comercio   copiadora para la plataforma МetaТrader 5 . Copia operaciones de forex entre   cualquier cuenta  MT5  - MT5, MT4  - MT5 para la versión COPYLOT MT5 (o MT4 - MT4 MT5  - MT4 para la versión COPYLOT MT4) Copiadora confiable! Versión MT 4 Descripción completa +DEMO +PDF Cómo comprar Cómo instalar    Cómo obtener archivos de registro    Cómo probar y optimizar    Todos los productos de Expforex También puede copiar operaciones en el terminal МТ4
Take a Break MT5
Eric Emmrich
4.71 (14)
The most advanced news filter and drawdown limiter on MQL market NEW: Take a Break can be backtested against your account history! Check the " What's new " tab for details. Take a Break has evolved from a once simple news filter to a full-fledged account protection tool. It pauses any other EA during potentially unfavorable market conditions and will continue trading when the noise is over. Typical use cases: Stop trading during news/high volatility (+ close my trades before). Stop trading when
Auto Trade Copier for MT5
Vu Trung Kien
4.24 (21)
Auto Trade Copier está diseñado para copiar los oficios entre múltiples cuentas MT5 / terminales con una precisión absoluta. Con esta herramienta, puede actuar como proveedor (fuente ) o receptor (destino ) . Cada acciones comerciales podrán ser clonados del proveedor al receptor sin demora. Las siguientes son las funciones destacadas :     Cambie entre proveedores o función del receptor en una sola herramienta.     Un proveedor puede copiar los oficios a las cuentas de múltiples receptor
The program is use to copy trading from MT5 to MT4 and MT5 on local PC or copy  over the Internet .  Now you can easy copy trades to any where or share to friends. Only run one Flash Server on VPS, also need allow the apps if you turn on Windows Firewall. Can not add more than 20 account copier to server at same time,  include both  MT4 and MT5 Get free Copier EA  for MT4 and MT5 (only  receive signal), download here Instants copy, speed smaller 0.1 seconds, easy to setup How to setup and guide
Otros productos de este autor
MT5 Broker  Ticks HTTP Provider Description EA turns your MT5 terminal into historical/realtime ticks  data provider for your application.  There are many market data providers on the internet, but in practice, the data provided is not always of good quality. Moreover, these services are often more expensive and typically require monthly subscription fees per each symbol. With this EA, you can feed your application with exactly the same tick data that you see in the MT5 terminal, the same dat
Filtro:
ChristianWale
34
ChristianWale 2023.11.12 01:14 
 

El usuario no ha dejado ningún comentario para su valoración

Respuesta al comentario
Versión 1.2 2023.11.11
improve logs
Versión 1.1 2023.11.11
improve logs