• Übersicht
  • Bewertungen (1)
  • Diskussion (3)
  • Neue Funktionen

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.


    Bewertungen 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. :)

    Empfohlene Produkte
    Der MT4 to Discord Signal Provider ist ein benutzerfreundliches, vollständig anpassbares Werkzeug, das speziell dafür entwickelt wurde, Handelssignale direkt an Discord zu senden. Dieses Tool verwandelt Ihr Handelskonto in einen effizienten Signalanbieter. Passen Sie die Nachrichtenformate Ihrem Stil an! Wählen Sie für eine einfache Verwendung aus vorgefertigten Vorlagen und entscheiden Sie, welche Nachrichtenelemente einbezogen oder ausgeschlossen werden sollen. [ Demo ] [ Handbuch ] [ MT5-Vers
    Exp COPYLOT CLIENT for MT4
    Vladislav Andruschenko
    4.7 (61)
    Handelskopierer für MetaTrader 4. Er kopiert Devisengeschäfte, Positionen und Bestellungen von beliebigen Konten. Es ist eines der besten Handelskopiergeräte  MT4 - MT4, MT5 - MT4 für die Version COPYLOT MT4  (oder MT4 - MT5 MT5 - MT5 für die Version COPYLOT MT5 ). MT5-Version Gesamte Beschreibung   +DEMO +PDF Wie kauft man Wie installiert man     So erhalten Sie Protokolldateien     So testen und optimieren Sie     Alle Produkte von Expforex Kopiererversion für das MetaTrader 5- Terminal
    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 (89)
    Auto Trade Copier is designed to copy trades to multiple MT4, MT5 and cTrader accounts/terminals with 100% accuracy. The provider and receiver accounts must be on the same PC/VPS. With this tool, you can copy trades to receiver accounts on the same PC/VPS. All trading actions will be copied from provider to receiver perfectly. This version can be used on MT4 accounts only. For MT5 accounts, you must use Auto Trade Copier for MT5 . Reference: - For MT4 receiver, please download Trade Receiver Fre
    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
    EA Rsi Pro VIP
    Nguyen Van Manh
    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
    Käufer dieses Produkts erwarben auch
    Trade Assistant MT4
    Evgeniy Kravchenko
    4.43 (180)
    Sie hilft bei der Berechnung des Risikos pro Handel, der einfachen Einrichtung einer neuen Order, der Orderverwaltung mit Teilschließungsfunktionen, Trailing-Stop von 7 Typen und anderen nützlichen Funktionen. Achtung, die Anwendung funktioniert nicht im Strategietester. Manual, Description, Download demo Linienfunktion Zeigt auf dem Chart die Eröffnungslinie, Stop Loss, Take Profit. Mit dieser Funktion ist es einfach, eine neue Order einzurichten und ihre zusätzlichen Eigenschaften vor der
    Forex Trade Manager MT4
    InvestSoft
    4.98 (372)
    Denken Sie, dass in Märkten, in denen sich der Preis in Sekundenbruchteilen ändern kann, die Auftragserteilung so einfach wie möglich sein sollte? Wenn Sie im Metatrader eine Order eröffnen möchten, müssen Sie ein Fenster öffnen, in dem Sie den Eröffnungskurs, Stop-Loss und Take-Profit sowie die Größe der Transaktion eingeben müssen. Beim Handel an den Finanzmärkten ist die Verwaltung Ihres Kapitals unerlässlich, um Ihre Ersteinzahlung zu erhalten und zu vervielfachen. Wenn Sie also eine Order
    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
    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
    TradePanel MT4
    Alfiya Fazylova
    4.91 (85)
    Trade Panel ist ein multifunktionaler Handelsassistent. Die Anwendung enthält mehr als 50 Funktionen für den manuellen Handel und ermöglicht Ihnen die Automatisierung der meisten Handelsaktionen. Vor dem Kauf können Sie die Demoversion auf einem Demokonto testen. Demo hier . Vollständige Anweisungen hier . Handel. Ermöglicht Ihnen die Durchführung grundlegender Handelsvorgänge mit einem Klick: Ausstehende Aufträge und Positionen öffnen. Offenes Raster von Aufträgen. Schließen ausstehender Aufträ
    50% off. Original price: $375 Reward Multiplier is a semi-automatic trade manager based on pyramid trading that opens additional orders with the running profit of your trades to maximize return exponentially without increasing the risk. Unlike other similar EAs, this tool shows potential profit/loss and reward to risk ratio before even entering the first trade! Download Demo here  (starting lot is fixed at 0.01) Guide + tips here MT5 version   here You only open the first order. When your
    Kopieren Sie Signale von jedem Kanal, dem Sie angehören (einschließlich privater und eingeschränkter Kanäle) direkt auf Ihren MT4.  Dieses Tool wurde mit dem Benutzer im Hinterkopf entwickelt und bietet viele Funktionen, die Sie benötigen, um die Trades zu verwalten und zu überwachen. Dieses Produkt wird in einer benutzerfreundlichen und visuell ansprechenden grafischen Benutzeroberfläche präsentiert. Passen Sie Ihre Einstellungen an und starten Sie die Nutzung des Produkts innerhalb weniger Mi
    Trade Assistant Pro 36 in 1
    Makarii Gubaydullin
    4.95 (19)
    Multifunktionswerkzeug: 65+ Funktionen, einschließlich: Lot-Rechner, Price Action, Risiko/Gewinn-Verhältnis, Trade Manager, Angebot und Nachfrage Zonen Demo version   |   Anwenderhandbuch   |    MT5 Das Dienstprogramm funktioniert nicht im Strategietester: Sie können die   Demoversion HIER   herunterladen, um das Produkt zu testen. Bei Fragen kontaktieren Sie mich / Verbesserungsvorschläge / im Fall eines gefundenen Fehlers Vereinfachen, beschleunigen und automatisieren Sie Ihre Handelsprozes
    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
    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
    Trade Sync MT4
    Anna Kolchina
    5 (1)
    « Trade Sync » — Really fast copying and precise synchronization of trades. Simple installation and configuration of the application within 5 seconds allows you to copy trades between different MetaTrader terminals installed on one Windows PC or Windows VPS at maximum speed. «Trade Sync» contains a large number of options for customizing the application to your specific needs and allows you to cope with even complex user tasks. Separate use: Trade Sync MT4 - allows you to copy (Мt4 > Мt4), Trade
    If you need an advisor on any arrow indicator signals - this utility will definitely help you.  You will be able, with the help of this utility to form an unlimited number of EAs on YOUR signals , with your set of settings, with your copyright and complete source code . You will be able to use the resulting EAs unlimitedly , including adding them to the Market and other resources. Generated Martingale EA with the help of this script - here Free simple version of the generation script to help yo
    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
    Forex Market View Dashboard and CSM
    Opengates Success International
    5 (1)
    FFXMV Dashboard + CSM is a custom indicator combined with Currency Strength Meter . It is created to give the Traders a full view of what is going on in the market. It uses a real time data to access the market and display every bit of information needed to make a successful trading. Before attaching this Indicator to your window chart, go to your MT4's Market Watch panel and HIDE all the Currency pairs you don't need or trade and leave the rest there. The reason is that FFMV Dashboard will DISP
    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
    News Trapper EA
    Noha Mohamed Fathy Younes Badr
    5 (7)
    Hi, all.  News trapper EA It is an expert for trading news very safe expert  Automated Trading on the news of the economic calendar. It shows stable trading during last 10  years. EA doesn't use dangerous technologies like martingale, grid. The Expert is very simple to use. how to install it     and set files     read the blog         after purchase contact me to add you to   VIP   channel  The program contains flexible settings for trading on the news of the economic calendar. It cannot be ch
    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
    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
    TakePropips TradePad Pro
    Eric John Pajarillaga Aldana
    5 (3)
    TakePropips TradePad Pro enthält einen leistungsstarken Handelsmanager, Währungsstärkemesser, Kontoberichtstools, Risikomanagementtools und mehr! Es ist einer der fortschrittlichsten Forex-Handelsmanager und Handelsassistenten, denen Sie jemals begegnen werden! Es ist die perfekte Lösung für Händler, die Handelstransaktionen effizienter verwalten möchten. Sie können das Benutzerhandbuch in unserem Blogbeitrag herunterladen:   https://www.mql5.com/en/blogs/post/751180 Sie können dieses Handelss
    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
    MT4 to Discord
    Trinh Dat
    4 (5)
    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
    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
    ADAM for FTMO 40
    Vyacheslav Izvarin
    5 (1)
    ADAM EA Special Version for FTMO  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/94887 ---------------------------------------------------------------------------------------------------------------------------
    DFGX Dashboard
    Tsvetan Tsvetanov
    5 (2)
    Take your trading to the next level with DFGX - our second generation Dynamic Fibonacci Grid. This new, powerful and easy to use application is specially designed and optimized for contrarian intraday trading, scalping and news trading on the Forex market. This system is the ideal solution for active professional traders and scalpers who are looking for innovative ways to optimize their strategy. The system also provides excellent opportunity for new traders who want to learn to trade in a syste
    Kopieren Sie Signale aus jedem Kanal, dem Sie als Mitglied angehören (   ohne die Notwendigkeit eines Bot-Tokens oder Administratorberechtigungen  direkt auf Ihren MT4. Es wurde mit dem Benutzer im Hinterkopf entwickelt und bietet viele Funktionen, die Sie benötigen. Dieses Produkt wird in einer benutzerfreundlichen und visuell ansprechenden grafischen Benutzeroberfläche präsentiert. Passen Sie Ihre Einstellungen an und beginnen Sie innerhalb von Minuten mit der Nutzung des Produkts! Benutzer
    Price Action Toolkit
    LEE SAMSON
    4.6 (5)
    Das Price Action Toolkit EA ist in erster Linie für Scalper konzipiert, kann aber in allen Zeitrahmen verwendet werden, um schnell in den Markt mit korrekt berechneter Losgröße auf der Grundlage Ihres Stop-Levels einzutreten. Es ermöglicht Ihnen den schnellen Einstieg in Trades (sofort oder bei Kerzenhochs und -tiefs mit Pending Orders) und dann Stops anpassen und Gewinne mitnehmen, wenn sich der Markt bewegt. Für eine vollständige Liste aller Funktionen, Einstellungen und Best-Practice-Strat
    AIF Manage Equity
    Lam Truong Giang
    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
    News Trade EA MT4
    Konstantin Kulikov
    4.33 (15)
    Ich stelle einen nützlichen Roboter vor, den ich selbst seit mehreren Jahren benutze. Er kann sowohl im halbautomatischen als auch im vollautomatischen Modus verwendet werden. Das Programm enthält flexible Handelseinstellungen mit den Nachrichten des Wirtschaftskalenders. Es kann im Strategietester nicht überprüft werden. Es ist nur echte Arbeit. In den Terminaleinstellungen müssen Sie die Nachrichtenseite zur Liste der zulässigen URLs hinzufügen. Klicken Sie auf Dienstleistungen > Einstellun
    Weitere Produkte dieses Autors
    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:
    Auswahl:
    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. :)

    Antwort auf eine Rezension
    Version 4.91 2024.09.03
    New input parameter: 'Symbol to Use' for accounts with special symbol names.
    Version 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.
    Version 4.6 2021.07.04
    Small Alert Fix
    Version 4.4 2021.04.06
    Parameter riskbalance small fix
    Version 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
    Version 3.4 2021.02.07
    MT4 Tradingview Command: closelong, closeshort. fixed
    Version 3.3 2021.02.05
    Some Trades was missing out on MT5 -> MT4 copy. fixed.
    Version 3.2 2020.12.22
    - Included Symbols. fixed.
    - Performance improved.
    Version 3.1 2020.12.21
    - New Parameter Max Lotsize.
    - Transmit and adjust pending Orders for Copier.
    - New Setting Microlot for fixed Microlot.
    Version 2.8 2020.12.14
    - Case insensitive. Solved.
    - Connect after Re-Init. Solved.
    - More Stable.
    - New MT4 Version.