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

Fast API Copier MT4

5
This EA connects trading systems on a Windows Server (VPS), providing top-tier trade copying locally or remotely and powerful API integration. Experience lightning-fast performance with a 10ms reaction time for seamless, reliable trading.
For seamless operation, use the EA on a hosted server (VPS or cloud). It also works on your own server or computer.

Copy Trades: Effortlessly copy trades between terminals, local or remote. Just select the same channel for both terminals and set the Direction to "Send Signals" on one and "Receive Signals" on the other. Once connected, indicated by the "Connected" label in the top right corner, your trades will be mirrored seamlessly.

API Usage: Maximize your trading potential with our user-friendly API. Easily integrate with external systems, customize your strategies, and enjoy seamless innovation with straightforward syntax.


Installation

  1. Download and Install Visual Studio 2019 or Visual Studio 2022* on your Windows Server. Choose "ASP.NET and web Development". Download-URL: https://visualstudio.microsoft.com/downloads/?utm_content=download+vs2019
  2. Copy and extract this Files to C:\ or any Folder you want on your Windows Server: https://drive.google.com/file/d/1z24kXqLZ6sVJ6pwSZ7_uRb0v2vL1xZJ7/view?usp=sharing
  3. Set Windows Firewall to prompt when a new connection is needed. Alternatively, you can type the following in CMD to allow connections on Port 80: netsh advfirewall firewall add rule name="HTTP Port 80" dir=in action=allow protocol=TCP localport=80 .
  4. ** Make sure Port 80 is free. If IIS is installed change IIS Port for Example to 8080. https://youtu.be/2cnX1miEsas
  5. Open Command Line (Type Win+R and Enter "cmd").
  6. Navigate to the folder with the files by typing cd C:\ (or just D: without cd if the files are on the D: drive). Then, type cd tv2 twice to enter the correct subfolder.
  7. Type the follow Command to Run: dotnet run. (If your VPS Machine is slow and this Step takes more than 1 Minute, then disable Windows Defender Antivirus). Maybe press some key to see if its finish. Leave the window open.
  8. Check API Endpoint: Test both http://YOUR_SERVER_IP/api/todoItems externally and 127.0.0.1/api/todoItems internally. You should see a JSON value [] . External access is optional.
  9. Go to MT5 Terminal, open Menu Tools->Options->Expert Advisors->Allow Web Request for listed URL. Type in: http://127.0.0.1 (MT4) or 127.0.0.1 (MT5)
  10. Start Expert Advisor, set a secret Password. A Label "Connected" on the Chart, says you that the API is Ready.

Tips

* If you use Visual Studio 2022, you may need to download and install packages after installation. You will see the download links in the CMD window, after do Step 7.

    ** If you want to find out which program is blocking Port 80, type the following command in the black CMD window: netstat -ano | find ":80" . This will give you an ID. Replace 1234 with the ID you get and run: tasklist /FI "PID eq 1234" .

    To open IIS on Windows Server 2012: Hold down the Windows key and press the R key (win+r), then type inetmgr . If IIS is not installed, port 80 may already be free.

    Troubleshoot External Access: If Step 8 fails with the URL  http://YOUR_SERVER_IP/api/todoItems , and you need external access for API use or trade copying, install Wireshark on your VPS server to monitor incoming connections on Port 80 (see screenshot). Make sure to access  http://YOUR_SERVER_IP/api/todoItems  from an external computer.


    Setup Trading-System

    Configure your Alerts in Trading-System. You need to make JSON Request like:

    {
      "Value":"{{strategy.order.comment}} tradesymbol=XAUUSD lot=0.03"
      ,"password":"YOUR_PASSWORD"
    }

    In your Strategy write Comment "long" for Long Position or Comment "short" for Short Position. Write "closelong" to Close Long Position and "closeshort" to close Short Position. The Placeholder will be / must be replaced by the Alert and will look like this:

    {
      "Value":"long tradesymbol=XAUUSD lot=0.03"
      ,"password":"YOUR_PASSWORD"
    }


    API Command Syntax

    lot Set Fixed Lot

    microlot Set the needed Amount for 1 microlot (Autolot)
    For Example: Free Equity of 500$ and Microlot of 100$: (500$ / 100$) * 0.01 = 0.05 Lot. EA looks which is lower, Equity or Balance to Calculate the Autolot.

    tradesymbol Symbol to Trade, for Example EURUSD or XAUUSD

    long Open a Long Trade

    short Open a Short Trade

    closelong Close all Long Trades on used tradesymbol (from this EA / Magic Number). For example: closelong tradesymbol=eurusd

    closeshort Close all Short Trades on used tradesymbol  (from this EA / Magic Number). For example: closeshort tradesymbol=eurusd

    tradeid Unique Identifier for the Trade

    close Close Trade. You need Parameter tradeid

    sl Stoploss Price (price, pips, %. For example 200% = 200% from TakeProfit. 10pips = 10pips or 1.29535 as a Price)

    tp Takeprofit Price (price, pips, %. For example 50% = 50% from StopLoss. 10pips = 10pips or 1.29535 as a Price)

    pyramiding defines how many Positions can be opened at same Symbol and Direction.
    For example pyramiding=2 Maximal 2 eurusd long and 2 xauusd long.

    closepart=%/Lot Close Percentage or Lot Amount of Winning Positions on same Symbol.
    For example closepart=50% tradesymbol=eurusd Close 50% of eurusd.

    riskpos=% open new Position if the Drawdown is not below %. Using negative Value=Drawdown is below %. Needs Parameter long or short to open the Position.

    riskbalance=% open new Position if the Drawdown of Balance is not below %. Using negative Value=Drawdown is below %. Needs Parameter long or short to open the Position. To enable this Feature you need to activate Riskbalance in EA Settings.

    hedge opens opposite Position of open Positions at same Position Size. Needs Param tradesymbol.
    For example hedge tradesymbol=eurusd

    closehedge close current hedge Position. So the Position is open again.

    hedgeall Hedge all Positions without look on Magic Number.

    hedgelong, hedgeshort Hedging only long or short Positions.

    hedgeallshort, hedgealllong Hedging only long or short Positions without look on Magic Number.

    risk Open new Position based on Risk in Percentage of Equity or Balance (the lower one). Needs Parameter "long" or "short" and Parameter tradesymbol.
    For example: long tradesymbol=ustec risk=1.5% sl=5% tp=3%


    Pending Order Syntax

    selllimit Opens new Pending selllimit Order. Needs Parameter price

    sellstop Opens new Pending sellstop Order. Needs Parameter price

    buylimit Opens new Pending buylimit Order. Needs Parameter price

    buystop Opens new Pending buystop Order. Needs Parameter price


    Channels

    You can Target different Channels from your Trading-System. The Default Channel Address is

    http://YOUR_SERVER_IP/api/todoItems

    For second Channel use:

    http://YOUR_SERVER_IP/api2/todoItems

    Use Parameter Channel in EA, to listen to a different Channel than the Default.

    Do not use same Channel for Copy and your Trading-Systems


    EA Settings

    Your Secret API-Password: Your secret API password.

    Magic Number: Identifies trades with a custom number.

    Direction: Determines whether to send or receive trade signals.

    Channel: Selects the communication channel (1-10).

    IP Address or 127.0.0.1 (Local): IP address for communication (default is  127.0.0.1 ).

    Symbol Suffix: Adds a suffix to the symbol name.

    Symbol Prefix: Adds a prefix to the symbol name.

    Max Lot Size: Sets the maximum lot size (0 for unlimited).

    Foreign Currency Account Lot Size Converter

    USD Rate: Sets the USD exchange rate.

    Settings for Sending Signals

    Copy Method: Chooses the method for copying trades (Percentage, Fixed Lot, etc.).

    Copy Power in Percent: Adjusts trade size in percentage.

    Fixed Lot Size: Sets a fixed lot size.

    Include Symbols: Includes specific symbols for copying (comma separated).

    Exclude Symbols: Excludes specific symbols from copying (comma separated).

    Copy Settings for Cracks

    Symbol to Use: Specifies a single symbol to use.

    Inverse Orders (Hedge Copy): Inverses market orders for hedging.

    Add Points to Inverse Pending Positions: Adds a small buffer to inverse pending orders, ensuring they trigger with better accuracy and avoid opening due to minor price fluctuations like spreads.

    API Settings for Cracks

    Close Hedge Positions Automatically: Closes existing positions rather than opening new opposite positions.

    Riskbalance: Chooses risk balance mode (OFF, MaxBalance, etc.).

    Riskbalance Custom Value: Sets a custom risk balance value.


    Comentários 1
    Deepwave
    55
    Deepwave 2021.01.15 14:29 
     

    First of let me say a big thank you, I read your comments on the chrome web-store page for the "TradingConnector" extension. I am happy you reached out and introduced your solution, the "Tradingview Connector Copier MT4" is freaking awesome! The trades get executed instantly and we don't have to rely on open chrome windows or anything, just beautiful. The connection is very stable and it uses a very reliable way of delivering the alerts. I have been looking for a server-client based solution like this for months, this product is exactly the way i want to implement the translation from TradingView to MT4. A little advise: Take your time to get familiar with the setup and the alert syntax, it is worth it. :)

    Produtos recomendados
    O MT4 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 MT5 ] [ Versão Telegram ] Confi
    Exp COPYLOT CLIENT for MT4
    Vladislav Andruschenko
    4.7 (61)
    Copiadora comercial para MetaTrader 4. Ele copia negociações, posições e pedidos em forex de qualquer conta. É uma das melhores copiadoras comerciais  MT4 - MT4, MT5 - MT4 para a versão COPYLOT MT4  (ou MT4 - MT5 MT5 - MT5 para a versão COPYLOT MT5 ). Versão MT5 Descrição completa +DEMO +PDF Como comprar Como instalar    Como obter arquivos de log    Como testar e otimizar    Todos os produtos da Expforex Versão da copiadora para o terminal MetaTrader 5 ( МТ5 - МТ5, МТ4 - МТ5 ) -  Copylot
    Sunan Giri
    Victor Adhitya
    3 (2)
    Sunan Giri EA by Victoradhitya Risk Disclosure : Futures, Forex, Stock, Crypto and Derivative trading contains substantial risk and is not for every investor. An investor could potentially lose all or more than the initial investment. I am not responsible for any financial losses you may incur by using this EA! ea uses a no martingle strategy or martingale strategy depends on your set every trade always uses a hidden SL EA has back test for 5 years Minimum balance $1000
    FREE
    This EA will help you to automatically put stop loss and take profit for all your orders. Stop loss point and take profit points can be selected in the tab of the input parameters. You can specify three symbols with SL and TP values (you can see symbol1 , symbol2 ... in the input tab below). The EA performs checks. If a new order with symbol1 appears, it puts SL and TP with stoploss1 and takeprofit1 values (in points). If a new order with symbol2 appears, it puts SL and TP with stoploss2 and tak
    Scalping Snake Pro is a unique scalping indicator that shows the trader the price reversal moments and does not redraw. This indicator, unlike many others on the Internet, does not redraw its values. It draws signals on the very first bar, which allows you not to be late with opening deals. This indicator sends notifications to the trader by phone and email when a signal appears. You get all this functionality for only $147. How to trade with this indicator? Open the H1 timeframe. Currency pa
    Auto Trade Copier
    Vu Trung Kien
    4.74 (88)
    Auto Trade Copie é projetado para copiar negociações entre multi contas/terminais MetaTrader 4 com 100% de precisão. Com esta ferramenta, você pode atuar tanto como um provedor (origem) ou um recebedor (destino). Todas as ações de negociação serão copiadas do fornecedor ao recebedor sem demora. Demo: Versão demonstração para teste pode ser baixado em: https://www.mql5.com/pt/market/product/4904 Referência: Se você precisa copiar entre diferentes locais através da Internet, por favor veja o Tra
    We present you the indicator "Candle closing counter", which will become your indispensable assistant in the world of trading. That’s why knowing when the candle will close can help: If you like to trade using candle patterns, you will know when the candle will be closed. This indicator will allow you to check if a known pattern has formed and if there is a possibility of trading. The indicator will help you to prepare for market opening and market closure. You can set a timer to create a p
    TrendEx Pro
    Md Abdur Rahim
    We do not want to make you confused with an imaginary high profit screenshot from Strategy Tester which has no relation/guarantee of future profit! We just want to tell you the real thing about our EA. TrendEx Pro has been developed to trade on Gold specially, combining multiple strategies algorithm to ensure Trend catching and trading on. It can identify both short and long trends and opens positions accordingly with excellent built-in risk management logic. There is no use of any dangerous met
    Harvest GOLD
    Sayan Vandenhout
    Harvest GOLD USES THE TREND WAVE INDICATOR AND IT CAN IDENTIFY THE BEGINNING AND THE END OF A NEW WAVE TREND MOVEMENT. AS AN OSCILLATOR, THE INDICATOR IDENTIFIES THE OVERBOUGHT AND OVERSOLD ZONES. IT WORKS GREAT TO CATCH THE SHORT TERM PRICE REVERSALS AND USES A MARTINGALE STRATEGY TO CLOSE ALL TRADES IN PROFIT. USE DEFAULT SETTINGS ON H1 OR HIGHER TIME FRAME ON ANY PAIR FOR MORE ACCURATE TRADES WHY THIS EA : Smart entries calculated by 3 great strategies The EA can be run on even a $
    Pattern 123
    Pavel Verveyko
    "Pattern 123" is an indicator-a trading system built on a popular pattern, pattern 123. This is the moment when we expect a reversal on the older trend and enter the continuation of the small trend, its 3rd impulse. The indicator displays signals and markings on an open chart. You can enable/disable graphical constructions in the settings. The indicator has a built-in notification system (email, mobile terminal, standard terminal alert). "Pattern 123" has a table that displays signals from
    Advanced Stochastic Scalper - is a professional indicator based on the popular Stochastic Oscillator. Advanced Stochastic Scalper is an oscillator with dynamic overbought and oversold levels, while in the standard Stochastic Oscillator, these levels are static and do not change. This allows Advanced Stochastic Scalper to adapt to the ever-changing market. When a buy or a sell signal appears, an arrow is drawn on the chart and an alert is triggered allowing you to open a position in a timely mann
    Description: Please tick "Show object descriptions" in chart properties to enable hrays views That utility converts a trendline into a horizontal ray known as tool for drawing supply and demand zones. Simply create a trendline on a chart and once selected, it will get converted. Ray remains horizontal while dragging.  Quick ray plot: press "R" key to create horizontal ray. It will be snapped to the nearest OHLC value Further versions will be improved. For feature request please post new c
    The Arrow Scalper
    Fawwaz Abdulmantaser Salim Albaker
    1 (2)
    Dear Friend..  I share with you this simple Expert Adviser .. it is full automatic  this Expert Adviser following the trend of the pair you install on or any stocks or indices , it is works like that: - when the trend on H4 chart show a start of up trend the expert will wait till the 15M & 1H charts show an up trend the EA will open a buy order directly , and do the same for down trend and open a sell order the buy or sell  order lot size and take profit and stop loss will measured manually  by
    FREE
    Rira Renko
    Vitor Palmeira Abbehusen
    RENKO on Time Chart This indicator is an enhanced Renko, so you can watch the Renko bricks on the chart to understand price movement more clearly the other improvement is automated box size according to ATR (Average True Range) period you can set the ATR number as you want and the box size of Renko changes automatically based on price movement Inputs Mode: Box size is the input to specify the size of the Renko box you want to print on the chart. This input lets you choose the fixed b
    HIBgRID
    Luca Pulito
    5 (2)
    Follow live performance:   Aggressive settings: https://www.mql5.com/en/signals/564559 Revolutionary hybrid grid: more than 13 years backtest with starting balance as low as 100 dollars - VERY IMPORTANT TO BACKTEST DEMO: please read backtest instruction or ask via PM. Description: The HIBgRID is a Hybrid Grid EA based on the mean-reverting characteristics of the pair GBP/CAD during low volatility and low volume period. The EA utilizes the mathematical principles of a Ornstein–Uhlenbeck process t
    Forex Daily Scalping EA is a professional scalping advisor for daily work on the FOREX currency market. In trading, along with experience, traders usually come to understand that the levels of accumulation of stop orders, price and time play a significant role in the market. Recommend ECN broker with LOW SPREAD: IC Market , Exness, NordFX , FXPRIMUS , Alpari , FXTM PARAMETERS: PRICE - the price distance to be covered in the allotted time period; TIME - time allotted in seconds; HL_PERIOD -
    Magic EA MT4
    Kyra Nickaline Watson-gordon
    3 (1)
    Magic EA is an Expert Advisor based on Scalping, Elliot Waves and with filters such as RSI, Stochastic and 3 other strategies managed and decided with the robot smartly. Large number of inputs and settings are tested and optimized and embedded in the program thus inputs are limited and very simple. Using EA doesn't need any professional information or Forex Trading Knowledge. EA can trade on all symbols and all time frames, using special and unique strategies developed by the author. The EA
    This indicator works on MT4 and is very easy to use. When you receive a signal from it, you wait for that candle with the signal to close and you enter your trade at the beginning of the next new candle . A red arrow means sell and a green arrow means buy. All arrows comes with Alert  like for easy identification of trade signal. Are you okay with that? 1 minute candle 1 minute expire
    MACD Color for GOLD
    Chitipat Changsamrit
    MACD Color for GOLD  Use for looking moving-way of graph and checking will be buy or sell  Easy for looking by see the color of trand. Red is down / Blue is up.  Can to use it with every time-frame by 1. Long Trade : Use it with time-frame H1 /  H4 /  Daily  2.Short Trade : Use it with  time-frame  M5 / M15  / M 30 /  H1 and you can see when you will open or close the orders by see this indicator by well by see signal line cut with color line again in opposite. and you can use this indicator for
    This is the Pro version, which replaces the first Rsi version of Rsi I posted, which has great multipliers, average prices and entry points for all currency pairs. Most importantly, it has the ability to preserve capital for you. I wish you a favorable transaction, reaping many profits Tutorial : Instruction for RSI Pro v1.0 1. Lot 1 st trade: volume for 1 st trade. 2. Max lot: Maximum volume for each trade. 3. DCA Step: Step between 2 trades 4. TP: Example: You have X orders with DCA step
    Intro to ProfitKeeper - Equity Basket CloseAll Script, Free edition This is an update from this script  ( mql4 forum | forexfactory :  There were many people requesting some type of equity monitoring tool that can lock in profits after a pre-determined account equity is reached (e.g. close all open trades when profit target is hit). Profitkeeper was built to fulfill this gap for professional and casual traders looking to focus on the bottom line of their equity. This was designed mainly for cos
    Accuwiser
    Arash Nikniazi
    Accuwiser Expert Advisor We have developed a strategy for GOLD which is now available for everyone through Accuwiser Expert advisor. Tight money management and risk management have been applied to this expert. The way we handle losing trades is unique and 3 different methods are applied if any trade goes in loss. Furthermore Entering a trade is time-based and differs in various modes we recommend. Different risk levels which have been provided have no interaction with higher lot size. Only
    Just Copier MT4
    Agung Imaduddin
    5 (4)
    "Just copier" is designed to copy trading without any complicated settings. The copy can be done in one PC. One EA can be set as master (provider) or slave (receiver). The receiver lot can be set to multiple providers lots. Please also check this product at fxina.hostingerapp.com.  Any type of copy is available. MT4 -> MT5 MT4 -> MT4 MT5 -> MT5 MT5 -> MT4 If you want to copy MT4 -> MT5 or MT5 -> MT4, please purchase "Just copier" for MT4 and "Just copier" for MT5 separately. Just Copier can copy
    SignalSailor
    Tatiana Savkevych
    The SignalSailor indicator is your reliable assistant in Forex for quick market analysis. It not only reflects the current market condition but also provides valuable signals about the best times to open trades. Market conditions are constantly changing, and to stay ahead, a trader needs to quickly adapt their strategies. This is precisely why the Klaus indicator was created - it will help you accurately determine the direction of the trend on the price chart. SignalSailor is an indispensable
    Rebate Virtual Grid
    Sergii Onyshchenko
    3 (1)
    This is a Virtual Grid EA  with  positive (for traders) slippage. I recommend it for pair EURUSD. EA may be use as Rebate generator. Works ok during news and gaps (with depo >1000$). Working timeframe M1 . Strategy The system does not use regular takeprofits and stop loss. Martingale is not used. EA use unique indicator (for open "Zero"). Monitoring (5EAs) _ https://www.mql5.com/en/signals/508303 Parameters (one of the safest) Rebate Virtual Grid                          MM_Type    0  MM: 0-
    Binary Options Trading Pad is a very useful tool for trading binary options on the MT4 platform. No need to setup plugins outside MT4 anymore. This is a simple and convenient panel right on MT4 chart. Demo: For testing purpose, please download the free demo version here: https://www.mql5.com/en/market/product/9981 Features One-click trading buttons on the panel. Trade multi-binary option symbols in one panel. Auto recognize all binary options symbols. Show order flow with expiration progress. M
    Credible Cross System   indicator is designed for signal trading. This indicator generates trend signals. It uses many algorithms and indicators to generate this signal. It tries to generate a signal from the points with the highest trend potential. The indicator works based on instant price movements. This indicator is a complete trading product. This indicator does not need any additional indicators. The indicator certainly does not repaint. The point at which the signal is given does not
    Elevate your trading experience with   Dynamic Trader EA MT4 , a cutting-edge trading robot designed to optimize your investment strategy. This advanced algorithm harnesses the power of four key indicators:   RSI   ( Relative Strength Index ),   Stochastic Oscillator ,   MACD   ( Moving Average Convergence Divergence ) and   ATR   ( Average True Range ) to make informed and precise trading decisions. ATR is used to dynamically set stop-loss and take-profit levels based on market volatility. IMP
    Perfect for one minutes high trading and scalping. This indicator is very effective for trading on one minutes, in the hour. A combination of moving averages and STOCHASTICS calculation to produce a very convincing signal every hour. Blue colour signals a buy opportunity. Follow the X signs for possible buy points. The Blue average line serves as possible trend direction and support. Red colour signals a sell opportunity. Follow the X signs for possible sell points. The Red average line serves a
    KT Renko Patterns MT4
    KEENBASE SOFTWARE SOLUTIONS
    2.33 (3)
    KT Renko Patterns scans the Renko chart brick by brick to find some famous chart patterns that are frequently used by traders across the various financial markets. Compared to the time-based charts, patterns based trading is easier and more evident on Renko charts due to their uncluttered appearance. KT Renko Patterns features multiple Renko patterns, and many of these patterns are extensively explained in the book titled Profitable Trading with Renko Charts by Prashant Shah. A 100% automate
    Os compradores deste produto também adquirem
    Trade Assistant MT4
    Evgeniy Kravchenko
    4.43 (180)
    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. 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 adicionais antes da abertura.   Gestão de risco A função de cá
    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
    The product will copy all telegram signal to MT4   ( 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
    TradePanel MT4
    Alfiya Fazylova
    4.91 (85)
    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. Abertura da grade de o
    Live Bot Maker
    Nabeel Zafar
    5 (4)
    Let Your Ideas Earn For You. Convert your Ideas and Strategies in to automated trading bots directly on MT4. Visual Strategy Builder with Instant Results on the chart. This One of a kind strategy builder, allows you to specify rules and visually see the signals based on those rule as you create them. Visit the link for Group, User Manual, Video Examples Why Use LBM LBM is an essential tool for traders of all levels. It allows traders to create strategies quickly and easily, and to test th
    Trade Assistant Pro 36 in 1
    Makarii Gubaydullin
    4.95 (19)
    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 MT5 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 Si
    Copie sinais de qualquer canal do qual seja membro (incluindo privados e restritos) diretamente para o seu MT4.  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 + Demonstração  | Versão MT5 | Versão Discord Se você quiser experim
    Ultimate Trailing Stop EA
    BLAKE STEVEN RODGER
    4.33 (15)
    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 (overr
    TakePropips TradePad Pro
    Eric John Pajarillaga Aldana
    5 (3)
    TakePropips TradePad Pro inclui um poderoso gerenciador comercial, medidor de força da moeda, ferramentas de relatórios de contas, ferramentas de gerenciamento de risco e muito mais! É um dos gerentes e assistentes comerciais forex mais avançados que você jamais encontrará! É a solução perfeita para traders que desejam uma maneira mais eficiente de gerenciar transações comerciais. Você pode baixar o manual do usuário em nosso blog:   https://www.mql5.com/en/blogs/post/751180 Você pode testar e
    BBMA Oma Ally Signals Scanner (BBMA Oma Ally Analyzer Dashboard EA) This is a multi-pair and multi scanner dashboard to find the key signal of BBMA Oma Ally Strategy BBMA consists of the use of 2 indicators: Moving Averages Bollinger Bands BBMA consists of many types of entries: Reentry Extreme Rejection EMA50 GAP (EMA50 to Upper/Lower BB) MHV Full Setup (CSE>TPW>MHV>Direction>Reentry) There are many multi timeframe signals based on this strategy. RRE (Reentry - Reentry - Extreme) REE (Reentry
    The product will copy all  Discord  signal   to MT4   ( which you are member  ) , also it can work as remote copier.  Easy to set up. Work with almost signal formats, support to translate other language to English Work with multi channel, multi MT4. Work with Image signal. Copy order instant, auto detect symbol. Work as remote copier: with signal have ticket number, it will copy exactly via ticket number. How to setup and guide: Let read all details about setup and download Discord To MetaTrade
    Summer 50% discount ($199 -> $99) 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 tra
    The program is use to copy trading from MT4   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, 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 Let read a
    News Trader Pro
    Vu Trung Kien
    4.41 (17)
    News Trader Pro é um robô único que permite a negociação com notícias pela sua estratégia pré-definida. Ele carrega pedaços de notícias de vários sites populares de Forex. Você pode escolher qualquer notícia e programar a estratégia para negociar, então o News Trader Pro vai operar com essa notícia através de uma estratégia selecionada automaticamente quando a notícia for publicada. As notícias dão a oportunidade de ter pips desde que o preço tenha um grande movimento com a publicação. Agora, co
    Gann Model Forecast
    Kirill Borovskii
    5 (1)
    I present to your attention a powerful utility for predicting the future movement of an asset based on W.D. Ganna’s law of vibration. This utility analyzes the selected market model and provides codes for future possible market movement patterns. If you enter the selected code into the appropriate box, you will receive a forecast of the potential market movement. The utility has the ability to display several potential forecast models. The forecast is not yet tied to time and price and gives th
    The Expert Advisor helps manage your account equity. You can set the EA to close all trades at the total account profit or buy/sell line profit or close at a certain predetermined loss percentage… Parameters: Chart Symbol Selection: For Current Chart Only/ All Opened Orders Profit all to close all order USD (0 - not use):  Profit   in money Profit buy to close buy order USD (0 - not use):  Profit     in money Profit sell to close sell order USD (0 - not use):  Profit     in money Loss all to c
    Copie sinais de qualquer canal do qual você seja membro (   sem a necessidade de um Token de Bot ou Permissões de Administrador  diretamente para o seu MT4. Foi projetado com o usuário em mente, oferecendo muitos recursos 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 + Demo  | Versão MT5 | Versão Telegram Se quiser experimentar uma demonstração, vá
    FX28 Trader
    Tsvetan Tsvetanov
    5 (1)
    Apresentamos o FX28 Trader Dashboard: Seu Gerenciador de Operações Definitivo Desbloqueie todo o potencial de sua experiência de negociação com o FX28 Trader Dashboard, um gerenciador de operações abrangente e intuitivo projetado para elevar o seu trading de Forex a novos patamares. Seja você um trader experiente ou esteja começando sua jornada financeira, esta poderosa ferramenta foi desenvolvida para simplificar suas atividades comerciais e aprimorar seu processo de tomada de decisões. Recurs
    RedFox Copier Pro
    Rui Manh Tien
    4.73 (11)
    FREE SIGNAL CHANEL:  https://t.me/redfox_daily_forex_signals Time saving and fast execution Whether you’re traveling or sleeping, always know that Telegram To Mt4 performs the trades for you. In other words, Our   Telegram MT4 Signal Trader  will analyze the trading signals you receive on your selected Telegram channels and execute them to your Telegram to MT4 account. Reduce The Risk Telegram To Mt4   defines the whole experience of copying signals from   Telegram signal copier to mt4  p
    The Expert Advisor will send notifications via Discord when orders are opened/modified/closed on your MetaTrader 4 account. - Send message and screenshot to Discord group/channel.  - Easy to customize message.  - Support custom message for all languages - Support full Emoji.  - Send report Daily, Weekly, Monthly ( must show all history of orders ) Parameters - Discord url Webhook - create webhook on your Discord channel. - Magic number filter - default all, or input magic number to notify with
    The Expert Advisor will help you forward all pop-up alert with screenshot from  MetaTrader 4 to Telegram channel/ group, also forward all notifications to Telegram. Parameters  -  Telegram Bot Token - create bot on Telegram and get token.  -  Telegram Chat ID  - input your Telegram user ID,  group / channel ID  -  Forward Alert - default true, to forward alert.  -  Send message as caption of Screenshot - default false, set true to send message below Screenshot  How to setup and guide  - Telegram
    Trade Copier Pro
    Vu Trung Kien
    4.57 (14)
    Trade Copier Pro é uma ferramenta poderosa para copiar remotamente comércio entre multi-contas em diferentes locais mais internet. Esta é uma solução ideal para provedor de sinais, que querem compartilhar seu comércio com os outros no mundo todo em suas próprias regras. Um provedor pode copiar comércios de multi-receptores e um receptor pode obter comércio de multi-fornecedores também. Provedor e receptor pode gerenciar sua lista de parceiros com potência sistema de gestão de banco de dados buil
    Telegram Signal pro
    Sara Sabaghi
    4.88 (8)
    What is it? Think about it, you can send all the orders/positions info to your telegram channel or group to create your community or VIP signals on telegram. Position info means this EA forward all of your new positions open details (Open price, Open time, Position Type, position Symbol and volume), positions changes ( SL or TP modifying or pending price changes) and position close (Close price, profit or loss, position duration time) and also EA Send NEWS alert (Economic calendar event) on y
    Ultimate Trade Copier
    BLAKE STEVEN RODGER
    5 (1)
    This trade copy utility allows you to instantly and seamlessly replicate and synchronize unlimited orders from multiple master accounts to multiple slave accounts on your local machine. You can create custom channels (or portfolios) with advanced filtering capabilities to copy from multiple master accounts to multiple slave accounts. Moreover, you can tailor these channels with a range of lot sizing and trade condition options to ensure that copied trades outperform the original source. You can
    Online Accounts Manager MT4
    Kyra Nickaline Watson-gordon
    5 (1)
    OneClick Online Account Manager is a powerful utility that helps you to manage all your accounts from a centralized panel. It is suitable for all single account traders and specially for multiple accounts traders. The utility help you to : Monitor status of all accounts on a private web page. Some information such as account connection status, account profit, DD, Balance, Equity, Margin Level, Number of positions and orders, Daily and Weekly profit/loss and also overall summation of all these
    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
    Mentfx Mmanage
    Anton Jere Calmes
    5 (15)
    The added video will show you the full functionality, effectiveness, and simplicity of this 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 c
    G Labs Trade Manager
    Garry James Goodchild
    Trade manager  Auto calculates % risk per trade  Manual lot size input  $ Risk amount  Displays profit to loss ratio  Shows value of stop loss and take profit in pips and dollars  Shows Balance equity and open profit and loss  On screen trade entry lines with entry stop loss and take profit . All with lots size , pip value dollar value and  price level of line  The value of these lines is also displayed in the panel  Buttons on panel for  Close Winners, Close all, Execute .  Trade panel has func
    JoyBoy EA advantage: the first support for small capital work EA, real trading more than 4 years; this EA based on volatility adaptive mechanism, only one single at a time, each single with a stop-loss, an average of about 4 orders per day, holding a single length of about 12 hours. This EA does not use Martingale or Grid strategy Makes it safer for your capital. You can also use this EA to pass prop firm Challenges because of its very low drawdowns and stable profits. Support currency: EURNZ
    Click and Go Trade Manager
    Victor Christiaanse
    5 (9)
    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,
    Mais do autor
    Fast API Copier
    Konstantin Stratigenas
    4 (1)
    This EA connects trading systems on a Windows Server (VPS), providing top-tier trade copying locally or remotely and powerful API integration. Experience lightning-fast performance with a 10ms reaction time for seamless, reliable trading. For seamless operation, use the EA on a hosted server (VPS or cloud). It also works on your own server or computer. Copy Trades: Effortlessly copy trades between terminals, local or remote. Just select the same channel for both terminals and set the Direction
    Simple Signal Provider
    Konstantin Stratigenas
    Trade with your MT5 Account on a custom API-Endpoint. 1. Activate API on your Signal Site. 2. Enter your Username. 3. Enter your Account-Password. 4. Enter the API-Endpoint URL to your MT5 Account (Extras -> Options -> Experts -> Allow WebRequest). Lot Size Settings Auto Lot = 0 and Fixed Lot = 0 : Copy Lot Size. Auto Lot : Option to send normalized Lot-Size depends from Free Margin on Trading-Account. Because other Traders will start with different Account Size. For Example:
    Filtro:
    Deepwave
    55
    Deepwave 2021.01.15 14:29 
     

    First of let me say a big thank you, I read your comments on the chrome web-store page for the "TradingConnector" extension. I am happy you reached out and introduced your solution, the "Tradingview Connector Copier MT4" is freaking awesome! The trades get executed instantly and we don't have to rely on open chrome windows or anything, just beautiful. The connection is very stable and it uses a very reliable way of delivering the alerts. I have been looking for a server-client based solution like this for months, this product is exactly the way i want to implement the translation from TradingView to MT4. A little advise: Take your time to get familiar with the setup and the alert syntax, it is worth it. :)

    Responder ao comentário
    Versão 4.91 2024.09.03
    New input parameter: 'Symbol to Use' for accounts with special symbol names.
    Versão 4.9 2024.09.03
    - New parameter added for copying in the opposite direction as a hedge.
    - Hedge command can now be used multiple times (each time a new position is opened, you can hedge again, open another, and hedge again...).
    - Enhanced stability.
    - Improved grouping of input parameters.
    - Bugfix pending orders on MT4 -> MT4.
    Versão 4.6 2021.07.04
    Small Alert Fix
    Versão 4.4 2021.04.06
    Parameter riskbalance small fix
    Versão 4.3 2021.03.20
    New Parameters:
    riskbalance
    riskpos
    risk
    closepart
    hedge
    closehedge
    hedgeall
    hedgelong, hedgeshort
    hedgealllong, hedgeallshort

    Stop-Loss / Take-Profit in Price, % or in pips
    Versão 3.4 2021.02.07
    MT4 Tradingview Command: closelong, closeshort. fixed
    Versão 3.3 2021.02.05
    Some Trades was missing out on MT5 -> MT4 copy. fixed.
    Versão 3.2 2020.12.22
    - Included Symbols. fixed.
    - Performance improved.
    Versão 3.1 2020.12.21
    - New Parameter Max Lotsize.
    - Transmit and adjust pending Orders for Copier.
    - New Setting Microlot for fixed Microlot.
    Versão 2.8 2020.12.14
    - Case insensitive. Solved.
    - Connect after Re-Init. Solved.
    - More Stable.
    - New MT4 Version.