• 概述
  • 评论 (1)
  • 评论 (3)
  • 新特性

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.


    评论 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. :)

    推荐产品
    MT4 to Discord Signal Provider 是一款用户友好、完全可定制的工具,专为直接向 Discord 发送交易信号而设计。这个工具将您的交易账户转变为一个高效的信号提供者。 自定义消息格式以适应您的风格!为了方便使用,您可以从预先设计的模板中选择,并决定包括或排除哪些消息元素。 [ 演示 ] [ 手册 ] [ MT5 版本 ] [ Telegram 版本 ] 设置 遵循我们详细的 用户指南 进行简单设置。 不需要预先了解 Discord API;我们提供所有必要工具。 主要特性 为订阅者更新自定义订单详情。 实施分层订阅模型,如铜牌、银牌、金牌,每一层都提供不同级别的信号访问。 附加执行订单的图表截图。 在这些截图上显示已关闭的订单,以增加清晰度。 提供延迟发送新订单消息的选项,以便在发送前进行最后调整。 透明和详细的订单信息: 带截图的新市场订单。 订单修改(止损、获利)。 已关闭和部分关闭的订单。 新的和修改的挂起订单。 挂起订单的激活和删除。 关于历史订单的详细报告。 每个订单的可定制评论。 注意: * 截图包括图表上的任何对象,如指标。 ** 在报
    Exp COPYLOT CLIENT for MT4
    Vladislav Andruschenko
    4.7 (61)
    MetaTrader 4 的交易复制器。     它从任何账户复制外汇交易、头寸、订单。 它是最好的贸易复印机之一     MT4 - MT4,MT5 - MT4     为了   复制 MT4     版本(或     MT4 - MT5 MT5 - MT5     为了   复制MT5     版本)。 MT5版本 详细描述   +DEMO +PDF 如何购买 如何安装     如何获取日志文件     如何测试和优化     Expforex 的所有产品 复印机 版本       MetaTrader 5 终端 (   МТ5 - МТ5, МТ4 - МТ5   )-   Copylot 客户端 MT5 独特的复制算法将所有交易从主账户准确复制到您的客户账户。 该产品还以其高运行速度而著称,并且具有强大的错误处理能力。 一组强大的功能。 该程序可以在多个终端绑定上运行。 使用它作为您在一个账户上交易的多个账户的交易 的同步器 , - COPYLOT 会将您的交易复制到其他终端。 从已关闭的账户中复制 Invest 密码; 部分关闭仅从 mt4 到 mt4
    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 是一種獨特的剝頭皮指標,可向交易者顯示價格反轉時刻且不會重繪。與 Internet 上的許多其他指標不同,該指標不會重新繪製其值。它在第一個柱上繪製信號,這樣您就不會遲到開倉交易。當信號出現時,該指標通過電話和電子郵件向交易者發送通知。您只需 147 美元即可獲得所有這些功能。 如何使用該指標進行​​交易? 打開 H1 時間框架。貨幣對 GBPUSD 或 EURUSD。我們正在等待指標將繪製藍線的第一個柱。我們開立交易買入並設置 TakeProfit +20 點。止損將是相反方向的信號,即紅線。要打開賣出交易,請等待指標繪製紅線的第一個柱。之後,我們開立交易出售。止盈 20 點。止損將是相反方向的信號,即藍線。 該指標是否正在重繪? 不,該指標不會重繪。 這個指標是遲到的信號嗎? 不,這個指標沒有滯後。它在第一個柱上顯示信號。 這個指標可以用在你的機器人上嗎? 是的你可以。該指示器使用內存緩衝區,可以將其集成到任何機器人中。 客戶通過購買該指標得到什麼? 您獲得此指標 + 您在鏈接 https://www.mql5.com/en/market
    Auto Trade Copier
    Vu Trung Kien
    4.74 (88)
    自动交易复制器旨在以 100% 的准确度在多个 MT4/MT5 账户/终端之间复制交易。提供商和接收方账户必须位于同一台 PC/VPS 上。使用此工具,您可以将交易复制到同一台 PC/VPS 上的接收方账户。所有交易操作都将从提供商复制到接收方,不会有任何延迟。此版本仅适用于 MT4 账户。对于 MT5 账户,您必须使用 MT5 的自动交易复制器。参考: 参考: 对于 MT4 接收器,请下载“Trade Receiver Free” 这里 . 对于 MT5 接收器,请下载“Trade Receiver Free MT5”  这里 . 对于同一台 PC/VPS 上的 MT5 提供商,请检查“Auto Trade Copier MT5” 这里 . 如果您需要通过互联网在不同的 PC/VPS 上进行账户复制,请查看“Trade Copier Pro” 这里 . 如果您需要通过互联网在不同的 PC/VPS 账户之间进行复制,且接收方数量不限,请查看“无限交易复制器专业版” 这里 . 以下是重点功能 在 MT4 和 MT5 账户之间复制。 一个提供商可以将交易复制到多个接收者的账户。 一
    我们为您提供一个指标"蜡烛收盘台",它将成为您在贸易领域不可或缺的助手。 这就是为什么知道蜡烛何时关闭会有所帮助的原因: 如果你喜欢使用蜡烛花纹进行交易,你就会知道蜡烛何时关闭。 此指标将允许您检查是否形成了已知模式以及是否存在交易的可能性。 该指标将帮助您做好市场开放和市场关闭的准备。 可以设置一个计时器来创建计划新闻的预览,这样就可以检查市场对此的反应。 您可以设置指示灯,以便在蜡烛关闭前几秒钟发送警报/警告。 通知/警报/警报可以发送到: 屏幕警报 电子邮件 移动应用 MT4烛台计时器指示器为什么有用 那么烛台计时器什么时候有用呢?如果你长期交易,你可能不需要蜡烛计时器指示器,因为你的参赛不会受到一分钟或一小时的太大影响。但是,如果你在短时间内是黄牛或交易员,那么你知道时机非常重要。 外汇市场24小时开放,只在周末关门,有些策略可能会受到您入仓时出现错误时机的严重影响。 MT4蜡烛计时器指示器可以显示当前蜡烛中的剩余时间,以便为下一次蜡烛打开做好准备。 可以从这一指标中受益的一些情况例子有: 预定消息传出 地理市场开闭 预定发生的事件,通常是金融、经济或
    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
    Evgeny Belyaev
    4.53 (15)
    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 颜色 用于查看图表的走势和检查将要买入或卖出 看 trand 的颜色很容易看。 红色向下/蓝色向上。 可以在很短的时间内使用它 1. 多头交易:与时间框架 H1 / H4 / 每日一起使用 2.Short Trade : 使用时间框架 M5 / M15 / M 30 / H1 您可以通过查看此指标来了解何时打开或关闭订单 ---------------------------- 黄金的 MACD 颜色 用于查看图表的走势和检查将要买入或卖出 看 trand 的颜色很容易看。 红色向下/蓝色向上。 可以在很短的时间内使用它 1. 多头交易:与时间框架 H1 / H4 / 每日一起使用 2.Short Trade : 使用时间框架 M5 / M15 / M 30 / H1 您可以通过查看此指标来了解何时打开或关闭订单
    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
    Muhammed Emin Ugur
    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
    该产品的买家也购买
    Trade Assistant MT4
    Evgeniy Kravchenko
    4.43 (180)
    它有助于计算每笔交易的风险,容易安装新的订单,具有部分关闭功能的订单管理, 7 种类型的追踪止损和其他有用的功能。 注意,该应用程序在策略测试器中不起作用。 Manual, Description, Download demo 线条功能  - 在图表上显示开仓线、止损线、止盈线。 有了这个功能,就可以很容易地设置一个新的订单,并在开仓前看到它的附加特性。   风险管理  - 风险计算功能在考虑到设定的风险和止损单的大小的情况下,计算新订单的成交量。它允许你设置任何大小的止损,同时观察设定的风险。 批量计算按钮 - 启用 / 禁用风险计算。 在 " 风险 " 一栏中设置必要的风险值,从 0 到 100 的百分比或存款的货币。 在 " 设置 " 选项卡上选择风险计算的变量: $ 货币, % 余额, % 资产, % 自由保证金, % 自定义, %AB 前一天, %AB 前一周, %AB 前一个月。   R/TP 和 R/SL - 设置止盈和止损的关系。 这允许你设置相对于损失的利润大小。 例如, 1 : 1 - 这决定了 TP = SL 的大小。 2 : 1 - 这意味着 TP 是
    您认为在价格可以瞬间变化的市场中,下单应该尽可能简单吗? 在 Metatrader 中,每次您要开单时,您都必须打开一个窗口,您可以在其中输入开盘价、止损和止盈以及交易规模。 在金融市场交易中,资本管理对于维持您的初始存款并使其倍增至关重要。 因此,当您想下订单时,您可能想知道应该开多大的交易? 在这单笔交易中,您应该承担多少百分比的存款? 您可以从这笔交易中获利多少,利润风险比是多少? 在您设置交易规模之前,您需要进行必要的计算,以获得交易规模应该是多少的问题的答案。 想象一下,您有一个工具可以自动完成所有这些工作。 您打开图表,进行市场分析并用水平线标记入场点、防御点(止损)和目标(止盈),最后您定义风险水平,例如 作为可用资本的百分比,您可以在此交易中承担,此时程序提供: 定义风险和止损规模的可接受交易规模 以点数、点数和账户货币计的止损和获利值 风险回报率 现在剩下的就是点击面板上的相应按钮来打开交易。 如果您是黄牛,需要在不设置防御或目标的情况下快速打开和关闭交易,那么您可以在交易管理器面板中轻松掌握一切,您可以在其中定义固定订单参数并通过单击“购买”或 “卖出”按钮。 关闭
    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)
    交易面板是一个多功能的交易助手。 该应用程序包含 50 多个手动交易功能,并允许您自动执行大多数交易操作。 购买之前,您可以在模拟帐户上测试演示版本。 演示 此处 。 完整说明 此处 。 贸易。 让您一键执行基本交易操作: 开立挂单和开仓。 打开订单网格。 平仓挂单和持仓。 仓位反转(平仓买入并开仓卖出,或平仓卖出并开仓买入)。 锁定仓位(通过开立相反仓位使卖出和买入仓位的交易量相等)。 对所有仓位进行部分平仓。 将所有头寸的止盈和/或止损设置为同一水平。 将所有仓位的止损设置为盈亏平衡水平。 开仓订单和仓位时,您可以: 根据既定风险自动计算订单量。 一键打开多个订单。 将计算出的交易量分配给多个订单。 使用面板创建的线条和标记在图表上可视化未来订单的交易水平位置。 开仓时,设置最大点差限制。 使用止盈规模与止损规模的自动比率。 使用虚拟止损和止盈。 将当前点差添加到止损和止盈。 使用 ATR 指标计算止盈和止损。 设置待处理订单的到期日期。 使用挂单跟踪(挂单自动移动到价格后面指定的距离)。 平仓订单和平仓时,您可以: 一键按订单或仓位类型关闭。 只需点击一下,即可仅平仓盈利或无利可
    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)
    多功能工具:超过65个功能,其中包括:手数计算,价格行为,盈亏比,交易管理,供需区域。 演示版   |   用户手册   |  MT5版 该实用程序在策略测试器中不起作用:您可以在此处下载 演示版来测 试产品。 任何问题 / 改进意见 / 如果发生了故障或错误  都可以联系我 Trading functions require permitted auto trading (including on the broker's side) 简化,加快并且自动化你的交易过程。利用这款工具的控制功能就能增强普通交易端的执行力。 建立一笔新的交易:手数 / 风险 / 盈亏计算 1. 手数计算工具 (基于风险规模的交易量计算) 2. 风险计算工具 (基于手数大小的风险额计算) 3. 盈亏比 4. 订单的激活和触发,买入或卖出限价/买入或卖出止损:MT4也适用 5. 虚拟的止损/止盈 (隐藏的止损,止盈:交易商不可见) 6.  智能的止损/入场点:当价格柱在收盘时已超越了才入场 (避免无效触发) 7. 隐藏掉挂单 (虚拟的订单) 8. 预订挂单:在市场关闭的时候你也可以下挂单 (适
    将信号从您所属的任何渠道(包括私人和受限渠道)直接复制到您的 MT4。 该工具在设计时充分考虑了用户的需求,同时提供了管理和监控交易所需的许多功能。 该产品采用易于使用且具有视觉吸引力的图形界面。 自定义您的设置并在几分钟内开始使用该产品! 用户指南 + 演示  |     MT5版本  |     不和谐版本 如果您想尝试演示,请参阅用户指南。 Telegram To MT4 接收器在策略测试器中不起作用! Telegram 至 MT4 功能 一次复制多个通道的信号 从私人和受限频道复制信号 不需要机器人令牌或聊天 ID(如果出于某种原因需要,您仍然可以使用这些) 使用风险百分比或固定手数进行交易 排除特定符号 选择复制所有信号或自定义要复制的信号 配置单词和短语以识别所有信号(默认值应适用于 99% 的信号提供商) 配置时间和日期设置以仅在需要时复制信号 设置一次打开的最大交易量 交易和头寸管理 使用信号或自动设置的管理 通过设置每月、每周、每天、每小时或每分钟的最大交易次数,停止过度交易和报复性交易。 支持市价订单和挂单 每日最大利润目标(以美元为单位)以确保头寸并停止
    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 包括一个强大的交易管理器、货币强度计、账户报告工具、风险管理工具等等! 它是您将遇到的最先进的外汇交易经理和交易助手之一!对于想要更有效地管理贸易交易的交易者来说,它是完美的解决方案。 您可以在我们的博文中下载用户手册: User Manual 您可以在 Strategy Tester 上测试此交易系统(启用可视模式)。如果您喜欢在实时图表上进行测试,也可以给我发消息以获取 7 天试用版。 视频教程也可在说明下方获得更多详细信息。 如果您有任何疑问或需要帮助,请随时与我联系,我很乐意提供帮助。 TradePad Pro 适用于所有外汇对、金属、商品、指数和加密货币。 主要特点 订单管理 - 公开市场或挂单,轻松调整止盈、止损和手数大小。 获利计算 - 手动点数、ATR 乘数和风险回报率。 止损计算- 手动点,   ATR 乘数和供应/需求。 批量计算 - 手动点,   每笔交易的风险百分比和风险金额。 账户保护 - 回撤保护允许您设置账户回撤的最大限额以避免进一步损失。利润保护为您的账户设置最大利润限额以避免过度交易。 编辑订
    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)
    新闻操盘手专业版 是一个独特的机器人,让您使用您预先定义的策略进行消息交易。它从几个流行的外汇网站加载的每条消息的片断。您可以选择任何消息和预设的策略进行交易,之后新闻操盘手专业版根据选定的策略,在新闻来临时自动进行交易。 新闻发布给出了赚点数的机会,因为在那个时刻,价格通常有大动作。现在,利用这款工具,新闻交易变得比以往任何时候更容易,更灵活,更令人兴奋。不要等待,不要错失,不要再迷惑了。每周只需针对重要新闻设置一次,这个工具将完全按照您的计划进行精准交易。 演示版: 由于这不是一个自动交易机器人 (它是半自动), 您需要下载单独的演示版本: https://www.mql5.com/zh/market/product/5931 参考: 如果您只需要加载新闻 (无需交易), 您可以购买新闻加载机专业版: https://www.mql5.com/zh/market/product/5463 功能 包括所有 新闻加载机专业版 的功能 (查看详情)。 针对每条新闻构建您自己的策略,具有非常灵活的参数。 支持五种高级策略,带有大量控制参数 (止损, 止盈, 尾随, 网格间隔, 手数缩放
    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
    将信号从任何您是会员的渠道(无需机器人令牌或管理员权限)直接复制到您的 MT4。 它的设计以用户为中心,同时提供您需要的许多功能 该产品采用易于使用且具有视觉吸引力的图形界面。 自定义您的设置并在几分钟内开始使用该产品! 用户指南 + 演示  | MT5版本 | 电报版本 如果您想尝试演示,请参阅用户指南。 Discord To MT4 在策略测试器中不起作用。 Discord MT4 功能 从您是会员的任何频道复制。 无需机器人令牌或聊天 ID 使用风险百分比或固定手数进行交易 排除特定符号 选择复制所有信号或自定义要复制的信号 配置单词和短语以识别所有信号(默认值应适用于 99% 的信号提供商) 配置时间和日期设置以仅在需要时复制信号 设置一次打开的最大交易量 交易和头寸管理 使用信号或自动设置的管理 通过设置每月、每周、每天、每小时或每分钟的最大交易次数,停止过度交易和报复性交易。 支持市价订单和挂单 每日最大利润目标(以美元为单位)以确保头寸并停止过度交易 确保仓位的每日最大利润目标(%) 最大开放交易以限制风险和敞口。 使用 RR、点数或价格自动获取部分内容 使用固
    FX28 Trader
    Tsvetan Tsvetanov
    5 (1)
    介绍FX28 Trader Dashboard – 您的终极交易管理工具 通过FX28 Trader Dashboard,解锁您交易体验的全部潜力,这是一款全面而直观的交易管理工具,旨在将您的外汇交易提升到新的水平。无论您是经验丰富的交易员还是刚刚开始您的金融之旅,这个强大的工具旨在简化您的交易活动并提高您的决策过程。 主要特点: 用户友好界面: FX28 Trader Dashboard拥有用户友好的界面,适应各个层次的交易员。通过几次点击轻松导航各种功能和工具,确保您只需轻松几下就完全掌控了交易。 实时市场数据: 利用实时市场数据源,始终保持领先地位,为您提供有关货币对、趋势和市场波动的最新信息。做出明智的决策,充满信心地执行交易。 高级交易分析: 通过高级分析深入了解您的交易绩效。跟踪交易历史,分析趋势,并识别模式,以优化您的策略和改善您的结果。 风险管理工具: 用我们强大的风险管理工具保护您的投资。轻松设置止损和获利订单,自定义仓位大小,并轻松实施风险收益比,确保自律和受控的交易方法。 多时间框架分析: FX28 Trader Dashboard允许您同时分析不同时间框架的市
    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 是一个强大的工具,多账户之间进行远程复制的贸易超过互联网不同的位置。这是一个信号提供商的理想解决方案,谁想要与全球范围内对自己规则的人分享他的贸易。一个供应商的交易可以复制到多接收器和一个接收器可以得到贸易额从多供应商也是如此。 供应商和接收器可与供电内置的数据库管理系统来管理他的合作伙伴名单。 这个工具允许全局配置模式(copy过来互联网)和本地模式(在同一台PC/服务器内复制)之间进行选择。 要求: MetaTrader4的4.00版构建670或以上。 参考: 如果你只需要在本地复制与更低的价格,你可以检查Auto Trade Copier在: https://www.mql5.com/en/market/product/4676 以下是亮点功能:     在一个工具提供商或接收器之间转换角色。     一个供应商的交易可以复制到多接收器和一个接收器可以从多个供应商收到交易。     供应/接收器可通过供电数据库管理系统,而无需额外的工具管理自己的接收器/供应商名单(添加,删除,编辑,启用/禁用)。     全球模式(copy过来互联
    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,
    作者的更多信息
    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:
    筛选:
    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. :)

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