• Übersicht
  • Bewertungen (2)
  • Diskussion (6)
  • Neue Funktionen

Fast API Copier

4
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: 127.0.0.1 (MT5) or http://27.0.0.1 (MT4)
  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.

    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 2
    michaelronnfeldt
    19
    michaelronnfeldt 2020.11.25 22:32 
     

    Works well. I miss some extra functionality like being able to set a Stop loss.

    Empfohlene Produkte
    This expert basically copies all trades from a prop trading account to a private live account (Master Slave Copier). USP! What it makes unique is the fact, that this EA can revert the trades and calculate orignal lots in way, that you earn money for every lost prop firm challange trade. For example:   If you lose a 100K challange and you paid 500$ for it, the EA recovers those losses on your private live account. If you win the challange, sure, you lost around 500$ on your private live account b
    Der MT5 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 ] [ MT4-Vers
    Sunan Giri For MT5
    Victor Adhitya
    5 (1)
    Sunan Giri EA for MT5 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
    PROMOTION!! $499 until 1 Mar. After that, EA will be $1,050 Developed and tested for over 3 years, this is one of the safest EAs on the planet for trading the New York Open. Trading could never be easier.  Trade On NASDAQ US30 (Dow Jones Industrial Average) S&P 500  What Does The EA do? The EA will open a Buy Stop Order and a Sell Stop Order(With SL and TP) on either side of the market just a few seconds before the NY Open.  As soon as 1 of the 2 trades is triggered, the EA automatically delete
    Auto Trade Copier for MT5
    Vu Trung Kien
    4.27 (22)
    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 MT5 accounts only. For MT4 accounts, you must use Auto Trade Copier (for MT4). Reference: - For MT4 receiver, please download Trade Receiver Fr
    Exp COPYLOT CLIENT for MT5
    Vladislav Andruschenko
    4 (22)
    Handelskopierer für MT5 ist ein  Handel   Kopierer für die Plattform МetaТrader 5  . Es kopiert Devisengeschäfte  zwischen   alle Konten   MT5  - MT5, MT4  - MT5 für die COPYLOT MT5 Version (oder MT4  - MT4 MT5  - MT4 für die COPYLOT MT4 - Version) Zuverlässiger Kopierer! MT4-Version Gesamte Beschreibung   +DEMO +PDF Wie kauft man Wie installiert man     So erhalten Sie Protokolldateien     So testen und optimieren Sie     Alle Produkte von Expforex Sie können kopieren Trades auch im МТ4
    "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 fr
    Turnaround Technique
    Razvan-andrei Tomegea
    Introducing the Turnaround Technique EA, a powerful trading tool designed for traders seeking to identify and capitalize on market reversals using the Relative Strength Index (RSI) and the Money Flow Index (MFI). This strategy is ideal for both novice and experienced traders looking to enhance their trading performance with a straightforward yet effective approach. By applying the strategy across multiple markets, traders can diversify their portfolio and take advantage of opportunities in diff
    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 MT5
    Kyra Nickaline Watson-gordon
    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
    NOTE : 5 copies left for the current price, next price 1750$.  This bot will be sold in limited edition to prevent the accumulation of users in the same broker. Golden Shine is designed for scalping GOLD/BITCOIN   by placing pending orders based on high low at certain periods   by taking advantage of strong momentum.   Why Golden Shine : Golden Shine is a fully automatic trade system. Does not use any risky strategies such as martingale, grid or multiple orders. Every trade is protected by stop
    ATrend
    Zaha Feiz
    4.75 (4)
    ATREND: How It Works and How to Use It How It Works The " ATREND " indicator for the MT5 platform is designed to provide traders with robust buy and sell signals by utilizing a combination of technical analysis methodologies. This indicator primarily leverages the Average True Range (ATR) for volatility measurement, alongside trend detection algorithms to identify potential market movements. Leave a massage after purchase and receive a special bonus gift. 8 copies left for 30$ price  Key Fe
    Just Copier MT5
    Agung Imaduddin
    4.75 (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
    Dieser Indikator zeigt Ihnen die TP- und SL-Werte (in dieser Währung), die Sie bereits für jede Order in den Charts (geschlossen zur Transaktions-/Orderzeile) festgelegt haben, was Ihnen sehr dabei helfen wird, Ihren Gewinn und Verlust für jede Order zu schätzen. Und es zeigt Ihnen auch die PIPs-Werte. das angezeigte Format ist „Währungswerte unserer Gewinn- oder Verlust-/PIPs-Werte“. Der TP-Wert wird in grüner Farbe und der SL-Wert in roter Farbe angezeigt. Bei Fragen oder weiteren Informati
    Sensey
    Yaroslav Varankin
    Sensey Candlestick Pattern Recognition Indicator Sensey is an advanced tool capable of accurately identifying candlestick patterns. Not only does it recognize patterns, but it also detects price highs and lows within a specified time frame. Sensey operates seamlessly across multiple timeframes and is compatible with all currency pairs, futures, and commodities. Unlike some indicators, Sensey does not repaint historical data, ensuring reliable analysis even in cryptocurrency markets. You can wit
    Elevate your trading experience with Dynamic Trader EA MT5 , 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. IMPORTANT! Read
    KT Renko Patterns MT5
    KEENBASE SOFTWARE SOLUTIONS
    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
    | Fully-automated Smart Money Concept (ICT) inspired trading solution with multi-strategy capabilities | Built by a grid trader >> for grid traders.  This is MT5 version, click  here  for  Blue CARA MT4  (settings and logics are same in both versions)     Real monitoring signal  -->  Cara Gold Intro Blue CARA EA   ('CARA') - short for  C omprehensive  A lgorithmic   R esponsive   A dvisor is a next-gen  multi-currency    multi-timeframe  EA base on the widely known (and perhaps the most popul
    The Expert Advisor is used to create Renko chart, realtime updates, easy for technical analysis. Backtest your strategy with all indicators with Renko chart in MetaTrader 5. Parameters Box Size : input the number of box size. Show Wicks : if true , draw a candle with high/low. History Start: input the date to creat first candle. Maximum Bars: limit number of bars on renko chart How to use Attach the Expert Advisor to a chart (timeframe M1), for which you want to create a renko. Input box siz
    Royal Wave Pro M5
    Vahidreza Heidar Gholami
    3.5 (4)
    Royal Wave is a Trend-Power oscillator which has been programmed to locate and signal low-risk entry and exit zones. Its core algorithm statistically analyzes the market and generates trading signals for overbought, oversold and low volatile areas. By using a well-designed alerting system, this indicator makes it easier to make proper decisions regarding where to enter and where to exit trades. Features Trend-Power Algorithm Low risk Entry Zones and Exit Zones Predictions for Overbought and Over
    Gold Veritas MT5
    Marat Baiburin
    3.19 (21)
    Discount on all my products until 01.05.  Gold Veritas   ist ein vollautomatischer Forex Expert Advisor für ruhige Stunden. Überwachung der Arbeit des Beraters:  https://www.mql5.com/en/users/bayburinmarat/seller Richtige GMT-Einstellung:   https://www.mql5.com/ru/blogs/post/743531 Alle Parameter, die für die verständlichste und einfachste Optimierung erforderlich sind, stehen in nur 6 Einstellungen zur Verfügung.Sie können den Berater an Ihre Vorlieben anpassen: Passen Sie das Risikoniveau an o
    Der Trade Copier Agent wurde entwickelt, um Trades zwischen mehreren MetaTrader(4/5)-Konten/Terminals zu kopieren. Mit diesem Tool können Sie entweder als Anbieter (Quelle) oder als Empfänger (Ziel) agieren. Alle Handelsaktionen werden ohne Verzögerung vom Anbieter zum Empfänger kopiert. Mit diesem Tool können Sie Trades zwischen mehreren MetaTrader-Terminals auf demselben Computer mit blitzschnellen Kopiergeschwindigkeiten von weniger als 0,5 Sekunden kopieren. Installations- und Eingabehandbu
    Copier MT5 DEMO
    Volodymyr Hrybachov
    This is a DEMO version of the copier with a restriction - copies only BUY orders. Paid version:  https://www.mql5.com/en/market/product/45792 Copier MT5  is the fastest and most reliable copier of transactions between several MetaTrader 4 (MT4) and MetaTrader 5 (MT5) accounts installed on one computer or VPS server. Transactions are copied from the MASTER account to the SLAVE account, copying occurs due to the exchange of information through a text file with a speed of less than 0.5 sec., The p
    FREE
    The new update makes this indicator a complete tool for studying, analyzing and operating probabilistic patterns. It includes: On-chart Multi-asset percentage monitor. Configurable martingales. Twenty-one pre-configured patterns, including Mhi patterns and C3. An advanced pattern editor to store up to 5 custom patterns. Backtest mode to test results with loss reports. Trend filter. Hit operational filter. Martingale Cycles option. Various types of strategies and alerts. Confluence between patter
    Dienstprogramm für automatisches Auftrags- und Risikomanagement. Ermöglicht es Ihnen, das Maximum aus den Gewinnen herauszuholen und Ihre Verluste zu begrenzen. Erstellt von einem praktizierenden Trader für Trader. Das Dienstprogramm ist einfach zu bedienen und funktioniert mit allen Marktaufträgen, die manuell von einem Händler oder mit Hilfe von Beratern eröffnet wurden. Kann Trades nach magischer Zahl filtern. Das Dienstprogramm kann mit einer beliebigen Anzahl von Aufträgen gleichzeitig arb
    Upgraded - Stars added to indentify Areas you can scale in to compound on your entry  when buying or selling version 2.4 Upgraded Notifications and alerts added version 2.3 *The indicator is suitable for all pairs fromm  Deriv pairs (Vix,jump,boom & crash indices) , Currencies, cryptos , stocks(USA100, USA30 ), and metals like gold etc. How does it work? Increasing the period make it more stable hence will only focus on important entry points However  lowering the period will mean the indica
    How to use Pair Trading Station Pair Trading Station is recommended for H1 time frame and you can use it for any currency pairs. To generate buy and sell signal, follow few steps below to apply Pair Trading Station to your MetaTrader terminal. When you load Pair Trading Station on your chart, Pair Trading station will assess available historical data in your MetaTrader platforms for each currency pair. On your chart, the amount of historical data available will be displayed for each currency pai
    Awesome Oscillator by Bill Williams with the ability to fine-tune and replace the averaging algorithms of the indicator, which significantly expands the possibilities of using this oscillator in algorithmic trading and brings it closer in its properties to such an indicator as the MACD. To reduce price noise, the final indicator is processed with an additional Smooth averaging. The indicator has the ability to give alerts, send mail messages and push signals when the direction of movement of th
    FTMO Trading EA MT5
    Samuel Kiniu Njoroge
    5 (1)
    Enhance your trading with ftmo trading ea , the cutting-edge price action expert advisor designed to elevate your trading experience to new heights. Harnessing the power of advanced algorithms and meticulous analysis of price movements, ftmo trading ea empowers traders with unparalleled insights into the market. Gone are the days of relying solely on indicators or lagging signals. With ftmo trading ea, you gain access to real-time data interpretation, it makes informed decisions swiftly and co
    Blue Shark is a trading robot  for the trading on Forex. It a   Trend Following   system and works in this way: 1. Identify the trend 2. Wait for a retracement 3. Cover profits Blue Shark MT5 is a fully automated trading system that doesn't require any special skills from you. Just fire up this EA and rest. You don't need to set up anything, EA will do everything for you. EA is adapted to work on small deposits from $500. REQUIREMENTS FOR YOUR ACCOUNT Leverage >= 1:500 Balance >= $500 (or
    Käufer dieses Produkts erwarben auch
    Trade Assistant MT5
    Evgeniy Kravchenko
    4.38 (164)
    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. Sie können die Demoversion auf der Beschreibungsseite herunterladen  Manual, Description, Download demo Linienfunktion Zeigt auf dem Chart die Eröffnungslinie, Stop Loss, Take Profit. Mit dieser Funktion ist es einfach, eine
    Forex Trade Manager MT5
    InvestSoft
    4.97 (420)
    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
    TradePanel MT5
    Alfiya Fazylova
    4.85 (113)
    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ä
    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
    Easy Strategy Builder 5
    Gheis Mohammadi
    5 (4)
    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
    Unlimited Trade Copier Pro MT5 is a tool to copy trade remotely to multiple MT4, MT5 and cTrader accounts at different computers/locations over internet. This is an ideal solution for you if you are a signal provider and want to copy your trades to other receivers globally on your 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 n
    HINN Lazy Trader
    Georg Vahi
    5 (1)
    Set price targets, and leave everything else to HINN Lazy Trader! This tool is designed for automatic position sizing from specified levels to designated targets. Using a VPS is recommended (*). The demo version   limited in functionality, be sure to watch this video before using -->  https://youtu.be/geLQ6dUzAr8 A community for users, product discussion, update news, and first line of support are organized in a free Discord: https://discord.gg/zFhEZc7QDQ Use Webmoney For payments in cryptocu
    Trade Assistant 38 in 1
    Makarii Gubaydullin
    4.89 (18)
    Multifunktionswerkzeug: 65+ Funktionen, einschließlich: Lot-Rechner, Price Action, Risiko/Gewinn-Verhältnis, Trade Manager, Angebot und Nachfrage Zonen Demo version   |   Anwenderhandbuch   |    MT4 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 Handelsprozesse
    Mentfx Mmanage mt5
    Anton Jere Calmes
    4.25 (8)
    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
    Kopieren Sie Signale aus jedem Kanal, dem Sie als Mitglied angehören (einschließlich privater und eingeschränkter), direkt auf Ihren MT5.  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 optisch ansprechenden grafischen Benutzeroberfläche präsentiert. Passen Sie Ihre Einstellungen an und beginnen Sie innerhalb weniger Minuten mit der Ver
    The product will copy all  Discord  signal   to MT5   ( 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 MT5. 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
    RiskGuard Management
    MONTORIO MICHELE
    5 (12)
    ATTENTION the expert does not work in strategy tester, for a trial version visit my profile. Manual RiskGuard Management   RiskGuard management was born with the idea of ​​helping traders from their initial journey to becoming expert and aware traders. Compatible with any operating system whether Mac or Windows. The operations panel is integrated into the graph giving the possibility to choose size and position between right and left, while the various buttons light up when they can be used,
    YuClusters
    Yury Kulikov
    4.93 (41)
    Attention: You can view the program operation in the free version  YuClusters DEMO .  YuClusters is a professional market analysis system. The trader has unique opportunities to analyze the flow of orders, trade volumes, price movements using various charts, profiles, indicators, and graphical objects. YuClusters operates on data based on Time&Sales or ticks information, depending on what is available in the quotes of a financial instrument. YuClusters allows you to build graphs by combining da
    -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
    Ultimate Trailing Stop EA MT5
    BLAKE STEVEN RODGER
    4.5 (6)
    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
    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
    -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
    MT5-StreamDeck offers the possibility to use a certain number of pre-programmed Hot-keys with a clearly defined role. So by the push of a button you can open a trade with a pre-defined lot size, stoploss and take profit. Close all your trades, close the ones in profit, or in loss, set Break-even or set a trailing stop. All this with a Hot key button. See the feature list for all the actions that can take place at the push of a button. Ideal for Quick Scalping or day trading with set risk manage
    « 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
    RedFox Copier Pro MT5
    Rui Manh Tien
    5 (1)
    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 MT5 performs the trades for you. In other words, Our   Telegram MT5 Signal Trader  will analyze the trading signals you receive on your selected Telegram channels and execute them to your Telegram to MT5 account. Reduce The Risk Telegram To Mt5   defines the whole experience of copying signals from   Telegram signal copier to MT5 pl
    Trade like a time traveler thanks to latency arbitrage Everyone knows that the best way to make money in the markets is by knowing the future. Have you ever wished to know the future price of something in advance? Even if it were just a few days, hours, or minutes ahead? What if it were possible to know it but with less than a second of advance notice? That's precisely what the PZ Latency Arbitrage EA robot does. PZ Latency Arbitrage EA is your personal time machine: but it can only travel into
    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
    ManHedger MT5
    Peter Mueller
    4.8 (5)
    THIS EA IS A SEMI-AUTO EA, IT NEEDS USER INPUT. Manual & Test Version Please DON'T BUY this product before testing or watching my video about it. Contact me for user support & advices! MT4 Version  With this Expert Advisor, you can: Implement your own Zone Recovery strategy to capitalize on trending markets. Create Grid trading strategies, to profit from ranging markets. Place orders easily and clearly. Display your trades/strategies on the chart. Display your Take Profits/Stop Losses as a perc
    Kopieren Sie Signale aus jedem Kanal, dem Sie als Mitglied angehören ( ohne die Notwendigkeit eines Bot-Tokens oder Administratorberechtigungen  direkt auf Ihren MT5. Es wurde mit dem Benutzer im Sinn entworfen 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! Benutzerhandbuch +
    Trader Evolution
    Siarhei Vashchylka
    5 (4)
    " Trader Evolution " - A utility designed for traders who use wave and technical analysis in their work. One tab of the utility is capable of money management and opening orders, and the other can help in making Elliott wave and technical analysis. Manual (Be sure to read before purchasing) | Version for MT4 Advantages 1. Trading in a few clicks. Immediate and pending orders are available in the panel 2. Money management. The program automatically selects the appropriate lot size 3. Simpli
    Partial Close Expert   ist ein Tool, das viele Funktionen in einem automatisierten System vereint. Dieser EA kann Händlern helfen, ihre Positionen effektiver zu verwalten, indem er mehrere Optionen für das Risikomanagement und die Maximierung potenzieller Gewinne bietet. Mit Partial Close Expert können Trader a       teilweise geschlossen       Ebene, um Gewinne zu sichern, a       Trailing-Stop       Ebene zum Schutz von Gewinnen und zur Begrenzung von Verlusten, a       die Gewinnzone erreiche
    FiboPlusWaves MT5
    Sergey Malysh
    5 (1)
    Produktserie unter dem Markennamen FiboPlusWave Fertiges Handelssystem auf der Grundlage von Elliott-Wellen und Fibonacci-Niveaus . Einfach und erschwinglich. Abbildung den Markup der Elliott-Wellen (Haupt- oder Alternativvariante) in einem Diagramm an. Ausbau von horizontalen Ebenen, Stütz- und Widerstandslinien, Kanal. Überlagerung der Fibonacci-Niveaus auf die Wellen 1, 3, 5, A Warnsystem (am Bildschirm, E-Mail, Push-Benachrichtigungen). Merkmale : Ohne auf die Elliott-Wellen-Theorie einzugeh
    Live Forex Signals ist für den Handel mit den Signalen der Website konzipiert   https://live-forex-signals.com/en und https://foresignal.com/en . Live Forex Signal for MetaTrader 4   https://www.mql5.com/en/market/product/81445 Daten Username   und   Password   wenn Sie ein Abonnement für Websites haben live-forex-signals.com/foresignal.com . dann sollten Sie diese Optionen mit Ihren Anmeldeinformationen ausfüllen. Wenn es kein Abonnement gibt, lassen Sie die Felder leer; Comment   Kommentar
    Ultimate MT5 to Telegram (UMT) sends controlled trades (via symbol, magic, comment) to your telegram channel. It sends open and closed trades, including pending orders and TP/SL modifications, along with chart screenshots, to any telegram channel. Additionally, you can send trade reports of open trades and summary profit/pip reports for day, week, or month. You can customize the design of the trade actions or reports with variables and emoticons.  A beautiful panel allows you to visualize all
    Trade Copier Pro MT5
    Vu Trung Kien
    3.67 (3)
    Trade Copier Pro MT5 is a tool to copy trade remotely to multiple MT4, MT5 and cTradfer accounts at different computers/locations over internet. This is an ideal solution for you if you are a signal provider and want to copy your trades to other receivers globally on your 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 abl
    Weitere Produkte dieses Autors
    Fast API Copier MT4
    Konstantin Stratigenas
    5 (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:
    kw901102
    75
    kw901102 2021.05.22 12:20 
     

    Der Benutzer hat keinen Kommentar hinterlassen

    Konstantin Stratigenas
    615
    Antwort vom Entwickler Konstantin Stratigenas 2021.05.22 17:20
    Thanks for your Review! For Closing an Order the Syntax is (3 Examples):
    close tradesymbol=eurusd
    closelong tradesymbol=eurusd
    closeshort tradesymbol=eurusd You need Parameter tradesymbol for closing an Order. On the "Experts" Tab you see every Transaction and you can see if there is some Error. I will make some Tutorial in Future. If you want some nice USDCHF Pinescript just PN me.
    michaelronnfeldt
    19
    michaelronnfeldt 2020.11.25 22:32 
     

    Works well. I miss some extra functionality like being able to set a Stop loss.

    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.
    Version 4.6 2021.07.04
    Small Alert Fix
    Version 4.5 2021.07.04
    Pyramiding works with Parameter:
    - risk
    - microlot

    Pyramiding works in Netting Account.

    For example:
    if pyramiding = 3 and risk = 10% the maximum is 30%
    or: if pyramiding = 3 and lot = 0.1 the maximum is 0.3 Lot
    or: if pyramiding = 2 and microlot = 100 the maximum is microlot 50
    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.2 2020.12.22
    Included Symbols. fixed.
    Version 3.1 2020.12.22
    - New Setting Max Lotsize.
    - New Setting Microlot for fixed Microlot.
    - Receive and adjust pending Orders for Copier.
    - Pending Order Support (selllimit, sellstop, buylimit, buystop).
    - New Parameter "price" defines and adjusts Pending Order Price.
    Version 2.8 2020.12.14
    - Suffix Error fixed
    - Volume Error fixed
    Version 2.7 2020.12.14
    - Suffix Support
    - Other Deposit Currency Support like JPY
    - Small Fix
    Version 2.6 2020.12.08
    - Case insensitive. Solved.
    - Connect after Re-Init. Solved.
    - More Stable.
    - New MT4 Version.
    Version 2.5 2020.12.08
    - Faster Ping
    - Hedge Option
    - Min. Order Size Support
    - Move Stoploss / Takeprofit
    Version 2.1 2020.12.07
    - Faster Execution
    - Faster Connection
    - More Stable
    Version 2.0 2020.12.05
    Please Update for Security Reason
    - Copy Trades to Friends, other Terminals
    - 10 different Channels for more Flexibility
    - Filter for Symbols
    - 3 Methods of Lot Calculation