• Visão global
  • Comentários (1)
  • Discussão
  • O que há de novo

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

Produtos recomendados
Rise or fall volumes MT5
Alexander Nikolaev
5 (1)
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
1 (1)
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
Envie sinais totalmente personalizáveis do MT5 para o Telegram e torne-se um Provedor de Sinais! Este produto é apresentado em uma interface gráfica fácil de usar e visualmente atraente. Personalize suas configurações e comece a usar o produto em questão de minutos! Guia do Usuário + Demonstração  | Versão MT4  | Versão Discord Se deseja experimentar uma demonstração, por favor consulte o Guia do Usuário. O Remetente de MT5 para o Telegram NÃO funciona no testador de estratégias. Recursos de
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
Assuma o controle de sua rotina de negociação sem esforço com o revolucionário Trades Time Manager. Essa ferramenta potente automatiza a execução de ordens em horários designados, transformando sua abordagem de negociação. Crie listas de tarefas personalizadas para diversas ações de negociação, desde a compra até a definição de pedidos, tudo sem intervenção manual. Guia de instalação e entradas do Trades Time Manager Se você deseja receber notificações sobre o EA, adicione nosso URL ao terminal
Trade Dashboard MT5
Fatemeh Ameri
5 (26)
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 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
Apresentamos o "Auto-Timed Close Operations", um utilitário importante para traders do MetaTrader 5! Este utilitário foi desenvolvido para ajudar traders de todos os níveis a fechar automaticamente suas posições abertas no momento exato que desejarem. Com o "Auto-Timed Close Operations ", você ganha o controle necessário sobre suas negociações e pode evitar surpresas indesejáveis ​​ao final do dia ou em qualquer outro momento predefinido. Sabemos como é importante proteger seus lucros e limitar
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
Este utilitário enviar-lhe-á uma notificação detalhada no seu telemóvel e um alerta no Terminal MT5 assim que um Padrão de Candelabro que queira ver aparecer na tabela. A notificação contém o símbolo, o Padrão de Candelabro e o período de tempo em que o padrão se formou. Terá de ligar o Metatrader 5 Mobile ao seu Terminal Windows. Veja como aqui . https://www.metatrader5.com/pt/mobile-trading/iphone/help/settings/settings_messages#notification_setup Lista de Padrões de Candelabro que podem se
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 é uma bolsa de criptomoedas de renome mundial! A fim de facilitar a análise de dados em tempo real do mercado de moeda digital criptografado, o programa pode importar automaticamente os dados de transação em tempo real do Binance Futures para MT5 para análise. 1. Apoie a criação automática de pares de negociação de futuros de USD-M do Ministério da Segurança de Moeda, e a moeda base também pode ser definida separadamente. A moeda base BaseCurrency está vazia para indicar todas as moed
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
O Robô Gerenciador de Ordens Manuais, é uma ferramenta que lhe permite incluir de forma automática o Stop Loss, Breakeven, Take Profit e parciais   nas operações abertas. Sejam ela uma ordem a mercado ou uma ordem limitada. Além disso, ele conduzir sua operação de forma automática, movendo o seu stop ou encerrando operações, de acordo com os parâmetros que você escolher. Para tornar suas as operações mais efetivas o Robô Gerenciador de Ordens Manuais conta com diversos indicadores que podem ser
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 é uma bolsa de criptomoedas de renome mundial! A fim de facilitar a análise de dados em tempo real do mercado de moeda digital criptografado, o programa pode importar automaticamente dados de transações em tempo real Binance para MT5 para análise. 1. Apoie a criação automática de pares de negociação à vista no departamento de segurança de moeda, e você também pode definir a moeda de lucro e a moeda base separadamente. Por exemplo, se ProfitCurrency estiver vazio, significa todas as ár
Zen MT5
Elena Kusheva
I derrapagem=0; - válido para a patinagem, 0 - não utilizado   S cmt=""; - comentário de ordens   I Magic=20200131; - меджик, a identificação das ordens do conselheiro   S WorkTime="00:00-24:00"; - o formato é HH:MM HH:MM, um dia inteiro de 0-24 ou 00:00-24:00   D fix_lot=0.01; //fix lot - lote de trabalho   D order_tp=100.0; //TP. Eu recomendo – 10.0 - take profit em pontos como para os 4 caracteres! na ae de detecção automática de 5 icônico de ferramentas e será aumentado o valor 10 vezes aut
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
O Orion Telegram Notifier Bot  permite que o trader receba notificações de negociações em seu Telegram sempre que uma posição for aberta ou fechada. O EA envia notificações mostrando o Ativo, Magic Number, Direção, Lote (Volume), Preço de Entrada, Preço de Saída, Take Profit, Stop-Loss e Lucro do trade. Como configurar o Orion Telegram Notifier? Abra o Telegram e procure por "BotFather" Clique ou digite "/newbot" Crie um apelido (nickname) e nome de usuário (username) (Exemplo: apelido: MT5tra
This indicator helps you control several pairs in a small workspace, therefore, it is not necessary to open several charts on the platform to do so. The indicator shows sequentially up to 6 different pairs, besides that each of these pairs has a button with which you can stop the indicator to observe the selected pair. Place the indicator on a chart to monitor several pairs and the rest of your space use it on the chart of the pair you wish to observe in detail.   MT4 version       Parameters Ob
Os compradores deste produto também adquirem
Trade Assistant MT5
Evgeniy Kravchenko
4.4 (172)
Ajuda a calcular o risco por comércio, a fácil instalação de uma nova encomenda, gestão de encomendas com funções de fecho parcial, trailing stop de 7 tipos e outras funções úteis. Atenção, o aplicativo não funciona no testador de estratégia. Você pode baixar a versão Demo na página de descrição  Manual, Description, Download demo Função de linha Mostra no gráfico a linha de Abertura, Stop Loss, Take Profit. Com esta função é fácil definir uma nova ordem e ver as suas características adicion
Você acha que em mercados onde o preço pode mudar em uma fração de segundo, colocar os pedidos deve ser o mais simples possível? No Metatrader, cada vez que você deseja abrir uma ordem, você deve abrir uma janela onde você insere o preço de abertura, stop loss e take profit, bem como o tamanho da negociação. Ao negociar nos mercados financeiros, a gestão de capital é essencial para manter seu depósito inicial e multiplicá-lo. Portanto, quando você deseja fazer um pedido, provavelmente se pergunt
TradePanel MT5
Alfiya Fazylova
4.86 (114)
Trade Panel é um assistente comercial multifuncional. O aplicativo contém mais de 50 funções para negociação manual e permite automatizar a maioria das ações de negociação. Antes de comprar, você pode testar a versão Demo em uma conta demo. Demonstração aqui . Instruções completas aqui . O aplicativo foi concebido como um conjunto de painéis interconectados: Painel para comércio. Projetado para realizar operações comerciais básicas: Abertura de ordens e posições pendentes. Fechar ordens e posiçõ
MT5 to Telegram Signal Provider é uma utilidade fácil de usar e totalmente personalizável que permite o envio de sinais especificados para o chat, canal ou grupo do Telegram, tornando sua conta um fornecedor de sinais . Ao contrário da maioria dos produtos concorrentes, ele não usa importações de DLL. [ Demonstração ] [ Manual ] [ Versão MT4 ] [ Versão Discord ] [ Canal do Telegram ] Configuração Um guia do usuário passo a passo está disponível. Não é necessário conhecimento da API do Telegra
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 Manager DaneTrades
DaneTrades Ltd
4.82 (22)
Trade Manager para ajudá-lo a entrar e sair rapidamente de negociações enquanto calcula automaticamente seu risco. Incluindo recursos para ajudar a evitar negociações excessivas, negociações de vingança e negociações emocionais. As negociações podem ser gerenciadas automaticamente e as métricas de desempenho da conta podem ser visualizadas em um gráfico. Esses recursos tornam este painel ideal para todos os traders manuais e ajudam a aprimorar a plataforma MetaTrader 5. Suporte multilíngue. Vers
Strategy Builder offers an incredible amount of functionality. It combines a trade panel with configurable automation (covert indicators into an EA), real-time statistics (profit & draw down) plus automatic optimization of SL, TP/exit, trading hours, indicator inputs. Multiple indicators can be combined into an single alert/trade signal and can include custom indicators, even if just have ex4 file or purchased from Market. The system is easily configured via a CONFIG button and associated pop-u
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
-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
Copie os sinais de qualquer canal do qual você seja membro (incluindo privados e restritos) diretamente para o seu MT5.  Esta ferramenta foi projetada com o usuário em mente, oferecendo muitos recursos que você precisa para gerenciar e monitorar as negociações. Este produto é apresentado em uma interface gráfica fácil de usar e visualmente atraente. Personalize suas configurações e comece a usar o produto em minutos! Guia do usuário + Demo  | Versão MT4 | Versão Discord Se deseja experimentar
The  Easy Strategy Builder (ESB)  is a " Do It Yourself " solution that allows you to create a wide range of the automated trading strategies without any line of codes. This is the world’s easiest method to automate your strategies that can be used in STP, ECN and FIFO brokers. No drag and drop is needed. Just by set conditions of your trading strategy and change settings on desired values and let it work in your account. ESB has hundreds of modules to define unlimited possibilities of strategi
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
Unlimited Trade Copier Pro MT5 is a tool to copy trade remotely between multiple MT4/MT5 accounts at different computers/locations over internet. This is an ideal solution for signal provider, who want to share his trade with the others globally on his own rules. One provider can copy trades to multiple receivers and one receiver can get trade from multiple providers as well. The provider can even set the subscription expiry for each receiver, so that receiver will not be able to receive the sig
-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
O MT5 to Discord Signal Provider é uma ferramenta fácil de usar e totalmente personalizável, projetada para enviar sinais de negociação diretamente para o Discord. Esta ferramenta transforma sua conta de negociação em um provedor de sinais eficiente. Personalize os formatos de mensagens para se adequar ao seu estilo! Para facilitar o uso, selecione entre modelos pré-desenhados e escolha quais elementos da mensagem incluir ou excluir. [ Demo ] [ Manual ] [ Versão MT 4] [ Versão Telegram ] Confi
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
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
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
Painel de negociação para negociação em 1 clique. Trabalhando com posições e pedidos! Negociar a partir do gráfico ou do teclado. Com nosso painel de negociação, você pode executar negociações com um único clique diretamente no gráfico e realizar operações de negociação 30 vezes mais rápido do que com o controle MetaTrader padrão. Cálculos automáticos de parâmetros e funções tornam a negociação mais rápida e conveniente para os traders. Dicas gráficas, rótulos informativos e informações completa
O UTM Manager é uma ferramenta intuitiva e fácil de usar que oferece uma execução de negociação rápida e eficiente. Um dos recursos de destaque é o modo "Ignorar spread", que permite negociar ao preço das velas, ignorando completamente os spreads (por exemplo, permite negociar pares de spread mais alto em LTF, evitando ser retirado de negociações por spread). Outro aspecto importante do UTM Manager é sua copiadora comercial local exclusiva, permitindo a flexibilidade de executar diferentes estra
News Trade EA MT5
Konstantin Kulikov
4.55 (11)
Apresento um robô útil que eu mesmo uso há vários anos. Pode ser usado nos modos semiautomático e totalmente automático. O programa contém configurações flexíveis para negociação nas notícias do calendário econômico. Não pode ser verificado no testador de estratégia. Somente trabalho real. Nas configurações do terminal, você precisa adicionar o site de notícias à lista de URLs permitidos. Clique em Serviço > Opções > Conselheiros. Marque com V a caixa "Permitir WebRequest para os seguintes UR
Trade Assistant 38 in 1
Makarii Gubaydullin
4.87 (15)
Ferramenta multifuncional: 65+ funções, incluindo: calculadora de lote, Price Action, proporção R/R, gerenciamento de trade, zonas de suporte e resistência Versão Demo   |   Manual de usuário   |    Versão MT4 O utilitário não funciona no testador de estratégia: você pode baixar a versão Demo AQUI para testar o produto. Contate-me   para perguntas / ideias de melhorias / caso encontrar algum erro Os trades automáticos serão permitidos se estiverem habilitados na plataforma e na corretora Simpli
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 --------------------
Exp COPYLOT CLIENT for MT5
Vladislav Andruschenko
3.76 (17)
Copiadora de comércio para MT5 é um  comércio   copiadora para a plataforma МetaТrader 5 . Ele copia negociações forex  entre   qualquer conta   MT5  - MT5, MT4  - MT5 para a versão COPYLOT MT5 (ou MT4  - MT4 MT5  - MT4 para a versão COPYLOT MT4) Copiadora confiável! Versão MT 4 Descrição completa +DEMO +PDF Como comprar Como instalar    Como obter arquivos de log    Como testar e otimizar    Todos os produtos da Expforex Você também pode copiar negociações no terminal МТ4 ( МТ4  - МТ4, МТ
MT5 To Notion
DaneTrades Ltd
5 (2)
Este programa permitirá que você exporte todas as suas negociações de sua conta MetaTrader diretamente para o Notion usando uma interface de usuário muito amigável. Versão MT4  |  Guia do Usuário + Demo Para começar, use o Guia do Usuário e baixe o Modelo do Notion. Se você deseja uma demonstração, por favor, vá para o Guia do Usuário. Não funciona no testador de estratégias! Principais Características Exporte todas as negociações de sua conta de negociação para o Notion Exporte negociações em a
Introducing TradingBoost AI : Revolutionize your trading experience with TradingBoost AI, an innovative software utility seamlessly integrated into the MetaTrader platform. Leveraging the cutting-edge capabilities of OpenAI and ChatGPT technologies, TradingBoost AI empowers traders with advanced analytics, real-time insights, and predictive tools to enhance decision-making and optimize trading strategies. Experience the future of trading with TradingBoost AI - where artificial intelligence meets
Click and Go Trade Manager, the ultimate solution for seamless trading execution. With a simple click on the chart, you can effortlessly define your stop loss, entry price, and target levels. No more hassle of inputting values manually - it's made incredibly intuitive and easy. Embedded risk management is a key feature of our Trade Manager. We understand the importance of protecting your investments, which is why the Click and Go Trade Manager incorporates risk management. When placing orders, y
Comprehensive on chart trade panel with the unique ability to be controllable from mobile as well. Plus has a library of downloadable configuration, e.g. exit rules, extra panel buttons, pending order setup and more. Please see our product video. Works with all symbols not just currency pairs. Features On chart panel plus controllable from free app for Windows, iPhone and Android Built-in script engine with library of downloadable configuration, e.g. add 'Close All Trades in Profit' button, exit
Risk Manager for MT5
Sergey Batudayev
4.42 (12)
O Expert Advisor Risk Manager para MT5 é um programa muito importante e, na minha opinião, necessário para todos os traders. Com este Expert Advisor você poderá controlar o risco em sua conta de negociação. O controle de risco e lucro pode ser realizado tanto em termos monetários quanto em termos percentuais. Para que o Expert Advisor funcione, basta anexá-lo ao gráfico de pares de moedas e definir os valores de risco aceitáveis ​​na moeda de depósito ou em % do saldo atual. PROMO BUY 1 GET
Copie sinais de qualquer canal do qual seja membro ( sem a necessidade de um Token de Bot ou Permissões de Administrador ) diretamente para o seu MT5. Foi projetado com o usuário em mente, oferecendo muitos recursos de que você precisa Este produto é apresentado em uma interface gráfica fácil de usar e visualmente atraente. Personalize suas configurações e comece a usar o produto em minutos! Guia do Usuário + Demonstração  | Versão MT4 | Versão Telegram Se deseja experimentar uma demonstração
Mais do 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 
 

O usuário não deixou nenhum comentário para sua avaliação

Responder ao comentário
Versão 1.2 2023.11.11
improve logs
Versão 1.1 2023.11.11
improve logs