• 概述
  • 评论 (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. :)

    推荐产品
    OTRX Fimathe Backtest is a tool for the Trader or Enthusiast who uses the Fimathe technique created by Trader Marcelo Ferreira to carry out his training and validate if he can obtain profitability. In this tool you will be able to: 1. Define whether you are looking for a buy or sell entry. (Trend). 2. Define by clicking twice on the horizontal lines where your Reference Zone and your Neutral Zone will be. 3. Monitor the entry, subcycle and exit of the trade. 4. Trading Summary, Daily,
    FREE
    Close by percentage MT4
    Konstantin Kulikov
    4.86 (7)
    Hello friends. I wrote this utility specifically for use in my profile with a large number of Expert Advisors and sets ("Joint_profiles_from_grid_sets" https://www.mql5.com/en/blogs/post/747929 ). Now, in order to limit losses on the account, there is no need to change the "Close_positions_at_percentage_of_loss" parameter on each chart. Just open one additional chart, attach this utility and set the desired percentage for closing all trades on the account. The utility has the following function
    FREE
    这是一个常规面板,放置买卖订单网络。 这个专家顾问关闭设置中定义的利润订单。 然后,有一个名为Ladder的参数,其中包括订单之间的距离开始增加由梯形参数指示的点(这里,在主要设置中,它是10点),这意味着二阶是10点,三阶是20点,四阶 然后,你需要知道这个顾问是什么,因为这不是在设置中,但它会影响这个顾问提出的策略的逻辑。. 假设在这里的设置中,顾问将打开五个订单。.. 或购买。.. 或出售。.. 好。.. 但是,当打开订单时,它会将下一个打开订单的手数增加先前打开订单的一半。 也就是说,如果您在设置中设置了0.1手,那么根据方案将打开五个订单,第一个更接近当前价格的订单将以0.1手的价格打开。 第二,对于给定的步骤,这里50点的步骤将以0.15手的价格打开。 第三个,在另一个50点之后,将以大约0.22手的价格开盘。 第四个,以0.33手的价格通过50点的设定步骤。 第五个,以0.49手的价格设定50点。 也就是说,通过打开订单,这个顾问将增加每个后续订单的一半数量的前一个订单每次。 这种交易的逻辑是什么? (我通常使用日间交易和未平仓头寸,在上午10:00之前的某个时间。
    Market Profile 3
    Hussien Abdeltwab Hussien Ryad
    3 (2)
    Market Profile 3 MetaTrader 4 indicator  — is a classic Market Profile implementation that can show the price density over time, outlining the most important price levels, value area, and control value of a given trading session. This indicator can be attached to timeframes between M1 and D1 and will show the Market Profile for daily, weekly, monthly, or even intraday sessions. Lower timeframes offer higher precision. Higher timeframes are recommended for better visibility. It is also possible t
    FREE
    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
    Exp Swing
    Vladislav Andruschenko
    4.28 (39)
    它使用称为 Swinger (Pendulum, Cheburashka) 的著名策略模型 - 交替放置增加手数的挂单。 策略在于放置两个相反的挂单。当价格向某个方向移动时,触发一个挂单,同时增加另一个订单的手数。 EA 提供三种类型的挂单(TypeofTrade) 放置后自动开仓(即时开仓AutoTrade) 手动开仓后的开仓管理(Manual opening ManualTrade) 按高/低水平开盘(过去的 TFTrade 柱线的高低) OCO(一个取消另一个)订单是一种由两个订单组成的条件订单。如果第二个订单被执行,第一个订单就会自动取消。 Swing - 完整说明 MT5 version 如何购买 如何安装     如何获取日志文件     如何测试和优化     Expforex 的所有产品 这个怎么运作? 开始时,EA 发出两个订单 - 买入止损 和 卖出止损 ,距离当前价格的距离为 StopOrderDeltaifUSE。 如果 Buy Stop 触发,则 Sell Stop 将被删除,并且将放置一个交易量为 BuyStop   *   Martin
    FREE
    Auto trade V20 is a trading tool like Robot or Expert Advisor that is used for automatic trading, this type is Martingale EA, the recommended broker is FBS, EU Pair, default setting. If you want to find the best setting, please look for it by backtesting it, so that you find the best setting and help your trading become more profitable, please try this tool to help you trade. minimum deposit 200 $ cen lot 0.01, pipstep in points.
    Night Scalper EA Lite
    Robots4Forex Ltd
    2.33 (3)
    The Night Scalper EA Lite is a fully automated Expert Advisor that trades at night and relies on price reversion. The EA trades using market orders and has the option to use time averaging to improve performance. This EA works best on EURUSD using the M5 timeframe, but will also work on AUDUSD, GBPUSD, NZDUSD, USDCAD, USDCHF and likely many more. A VPS is advisable when trading this system and a low spread and commission based broker is best. Check the comments for back test results and optimiz
    FREE
    ProfileVolumesMarket
    Sergey Zhukov
    5 (3)
    The ProfileVolumesMarket indicator calculates tick volume on each price level in a selected range. Volume is vital when determining strength and therefore significance of price levels. The calculation range is set by a trader by means of moving two vertical lines. Thus the indicator allows to track important levels on different steps of a symbol price formation. A histogram of volume profile can be displayed on the chart (or removed from the chart) if you press "ON" ("OFF") button. When you chan
    If you run an EA on a VPS, it is necessary to quickly notice if the server loses the connection to the broker. The ServerGuard24 EA checks the connection to the broker once a minute and sends the result to our monitoring server. There we notify you by e-mail, SMS, push and much more. The setup is super easy: 1. register at www.serverguard24.de 2. create a "Cron" check 3. copy the URL that is shown to you during the "Cron" check into the properties of the EA. And you can be sure tha
    FREE
    EasyFXTrade Demo Trading Utility Only available for EURUSD... Tool Debeloped for Manual Trading in Forex and Crypto. EasyFXTrade provides a better way for trading, it's the ultimate tool:  Parameters: 1. These first 2 parameters are the TP and SL of a tool that gives the risk of an operation(see screenshots for more info)  Benefit Tool Points: points of the TP of the blue rectangle, this rectangle can be resizable. Loss Tool Points: points of the SL of the red rectangle this recta
    FREE
    The Saz_Timer indicator belongs to the Saz_Forex suite of professional indicators designed by Traders, for Traders. This indicator will show minutes and seconds of real time on the chart window. The indicator uses the OnTimer() event so it can update even while no ticks received on the chart. The text is shown toward the bottom right of the chart, encircled red in the screenshot. Inputs: Text Colour, allows selection of the colour for the text.
    FREE
    通過追踪止損水平自動關閉交易的實用程序。讓您從您的利潤中獲得最大收益。由專業交易者為交易者創建。該實用程序適用於交易者手動或使用顧問打開的任何市場訂單。可以通過幻數過濾交易。該實用程序可以同時處理任意數量的訂單。 MT5 版本 https://www.mql5.com/ru/market/product/56488 公用事業可以做什麼: 從 1 點設置虛擬追踪止損水平 設置真正的追踪止損水平 分別處理每個訂單(追踪止損水平分別放置在每個訂單上) 處理一籃子單向訂單(追踪止損水平對所有訂單設置通用,分別買入和賣出) 處理一籃子雙向訂單(追踪止損水平對所有訂單設置通用,一起買入和賣出) 對於測試和工作,您可以使用圖表上的按鈕。 選項: TRAILING_STOP - 價格變動的點數; TRAILING_STEP - 每一步利潤增加的點數; BASKET - 一籃子訂單或每個訂單單獨; MULTIDIRECTIONAL - 雙向或單向訂單; 虛擬 - 真實或虛擬的止損和止盈; MAGIC_NUMBER - 訂單的幻數,如果 = -1,則它適用於所有訂單; ORDERS_
    The indicator enables measurement and analysis of accumulated volume (tick), in any chosen swing. The user's task is to mark individual measuring sections with the help of a "crayon's". The indicator automatically sums the volumes of individual candles. Volume analysis is a basic element of the VSA (volume spread analysis) technique. A method of using an indicator is shown on the film. Parameters description Anchor_mode - If true, one end of the measuring line is always hooked on the current c
    Easy Backtest 2 Pro try the demo version now! Easy Backtest 2 Pro   is a great alternative for all those expensive testing software that exist on the market!. You can    test your new strategy in   Strategy Tester   in your   MT4 , using all available historical data. Beyond the basic functions such as: BUY, SELL PENDING ORDERS STOP LOSE, TAKE PROFIT AUTO RISK MANAGMANT AUTO LOT SIZE  You can modify  each of them at any time, exactly like in live trading. Advanced features PRO such as: P
    FREE
    Deposit Load Info
    Makarii Gubaydullin
    Potential loss on all active and pending trades:  if SL levels will be reached (or the current floating loss if the SL level is not set) My   #1 Utility:  65+ features, including this indicator  |   Contact me  for any questions  |  MT5 version In the input settings   you can adjust: Calculateion method : account currency / pips / points / % of the balance Position on the chart:   bottom left / bottom right / top left / top right corner Font:   color, size and style Optionally you can include
    Moving VVC mt4
    Andriy Sydoruk
    The   Visual Volatility Clustering   indicator clusters the market based on volatility. The indicator does not redraw and gives accurate data, does not use closing prices. Uses the opening prices or the highs or lows of the previous completed bar. Therefore, all information will be clear and unambiguous. The essence of the indicator is to divide the price market into certain areas according to a similar type of volatility. This can be done in any way. In this example, the indicator is configure
    Mr Beast Witcher Zones MT4/MT5 Descripción: El indicador Mr Beast Witcher Zones para MetaTrader 4/5 está diseñado para identificar y trazar líneas de liquidez clave en el mercado, proporcionando posibles puntos de entrada óptimos para operaciones. Basado en un análisis profundo del comportamiento del precio y las zonas de liquidez, este indicador ayuda a los operadores a tomar decisiones más informadas y precisas en sus estrategias de trading. Características principales: Identificación de Zonas
    Manual zig zag
    Andrey Koshcheev
    5 (6)
    Manual Zig-zag allows you to build a zig-zag with the mouse, to build it is necessary to turn on the zig-zag and left-click. The file must be placed in the \ MQL4 \ Indicators folder then in the terminal from the list of indicators put it on the chart. A zigzag can be built so that this zigzag can only be seen on the current time frame or in all halves at once. You can change the color and thickness of the line while on the chart without getting into the settings. You can quickly remove e
    FREE
    This is a basic tool that displays the Pip Value and Margin  required for each symbol. It displays the same information for both a standard lot and the amount based on lot amount entered in the input section. It allows you to use different colors for each line Font Size FontType (Based on what fonts are installed in the system folder on the pc. Set to Ariel by default if the font entered is not available.) Allows X &Y coordinates so you can decide where on the chart the info is displayed.
    FREE
    Zigzag Extremum points
    Oleg Popov
    4.81 (32)
    New version 8.00 is available. In this version, I tried to take into account the wishes of the user. Each of you can also take part in the improvement of this advisor. In the default settings, the adviser opens trades when the extremum point is broken       standard indicator       Zigzag. When the upper point of the zigzag extremum is broken, it opens a buy deal, and when the lower point of the zigzag extremum is broken, it opens a sell deal. In addition to the standard ZigZag indicator, whi
    FREE
    Details of each condition Type 1. Set no use Hedging Martingale, to open the order by yourself only through the push button. TP and SL follow setting. Set Setting_Hedging =false;     Use_Signal =false;  Type 2. Semi Auto Recovery Zone You have to open the order by yourself only through the push button. If in the wrong direction and Set true on Hedging Martingale, EA will fix the order with the zone system by use Hedging Martingale Set Setting_Hedging =true;     Use_Signal =false;  Type 3. Us
    NeuroExtMT4
    Dmytryi Voitukhov
    https://t.me/mql5_neuroExt   actual version Signal  https://www.mql5.com/ru/signals/1516213 You can use any tool. The bases will be automatically created at the start of the Learn. If you need to start learning from 0 - just delete the base files. Initial deposit - from 200 ye. Options: DO NOT ATTEMPT TO TEST WITHOUT NEURAL NETWORK TRAINING! it is enough for the balance graph after training to be horizontal. generating a training base is extremely simple.  there is a ready-made training
    FREE
    Program Overview: This program is a trading tool designed to monitor and analyze the 7 major currency pairs. It is a variant of a similar program used for tracking stock indices, but this version focuses on the seven major currency pairs. The program helps in identifying and calculating significant price movements (gaps) between the high and low prices of these currency pairs over a specified time frame. It then provides insights through comments and alerts based on the calculated gaps. Major Cu
    Real-time spread tracking and monitoring software Displays spread values in form of histograms on current timeframe of chart Convenient for analyzing spread changes, as well as for comparing trading conditions of different brokers By placing on desired chart, the spread changes at different trading times are displayed Additionally Fully customizable Works on any instrument Works with any broker
    FREE
    Details of each condition Type 1. Set no use Hedging Martingale, to open the order by yourself only through the push button. TP and SL follow setting. Set Setting_Hedging =false; Set Setting_TrailingStop =false; if not use. Type 2. Semi Auto Recovery Zone You have to open the order by yourself only through the push button. If in the wrong direction and Set true on Hedging Martingale, EA will fix the order with the zone system by use Hedging Martingale Set Setting_Hedging =true; Set Setting_T
    Please note: This demo will work only on EURUSD live chart. It will not run in the strategy tester. ChartTrader is a professional trading tool that every trader needs in their toolbox. It has been developed to work with the MetaTrader 4 platform. ChartTrader offers a number of options to make placing orders in the Forex market quick and easy. The GUI sits on the chart window, so there is no need to navigate to separate windows when placing orders. The program allows you to set pending and insta
    FREE
    TSim
    Sergey Kruglov
    Утилита  TSim   позволяет симулировать ручную торговлю в Тестере Стратегий MetaTrader 4. В панеле можно устанавливать размеры лота, тейпрофита и стоплосса. Панель имеет кнопки Sell   и Buy для выставления рыночных ордеров, а также кнопки CloseSell, CloseBuy и CloseAll для быстрого закрытия ордеров. Под панелью отображается список открытых ордеров. Внимание. Панель работает только в Визуальном режиме Тестера Стратегий MetaTrader 4.
    FREE
    Lib4 EAPadPRO for MT4
    Vladislav Andruschenko
    5 (2)
    用于将信息面板添加到您的 MetaTrader 4 EA 的库。 我们不能保证程序的信息和界面会让您在交易中获利,但我们可以肯定地说,即使是最简单的程序界面也能增强第一印象。 将我们的面板添加到您的 智能交易系统的 详细说明和说明在我们的博客中:   LIB - EAPADPRO 分步说明 我们面板的详细说明和使用 EAPADPRO 的说明 MetaTrader 5 库版本 添加的过程包括 10 个步骤 ,我们的文章中详细介绍了它们。 安装库 从此站点安装库; 打开您的智能交易系统; 打开我们的示例和安装代码的分步指南,文件 Exp - EAPADPRO LIBRARY TEST(可以在博客中找到)   ; 按照建议中的说明执行每个步骤,或使用我们网站上的分步说明。 EAPADPRO 个性化 本段描述了您可以在我们的面板中更改的所有内容: versionea   - 面板中显示的智能交易系统版本; BMPLOGO   - 显示在面板上的 BMP 60x60 顾问的徽标; icon   - 您的专家的图标,显示在专家的属性中; defEANAME - 面板中显示的您的智能 交易系统的
    FREE
    By applying this expert onto any char window, you are able to force download the historical data upon all time-frame (PERIOD_M1, PERIOD_M5, PERIOD_M15, PERIOD_M30, PERIOD_H1, PERIOD_H4, PERIOD_D1, PERIOD_W1, PERIOD_MN1) of 28 major pairs. The 28 major pairs are the combination of the 8 major currencies. 8 major currencies "USD", "EUR", "GBP", "JPY", "AUD", "NZD", "CAD", "CHF" 28 pairs "AUDCAD","AUDCHF","AUDJPY","AUDNZD","AUDUSD","CADCHF","CADJPY" "CHFJPY","EURAUD","EURCAD","EURCHF","EURGBP",
    FREE
    该产品的买家也购买
    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 是
    Custom Alerts 是一款多功能的多市场监控工具,可识别所有八种主要货币(美元、加元、英镑、欧元、瑞士法郎、日元、澳元和新西兰元)、黄金 (XAU)、基于这些货币的所有 28 种外汇和黄金货币对以及 US30、UK100、WTI、比特币等多达七种指数中的有前景的设置。该工具可完全自定义。该工具从我们的 FX Power、FX Volume 和 IX Power 指标中收集数据,并在发生重大事件时通知您。  开始使用前,您必须在终端上安装好使用过的指标,以便从多市场扫描仪提供的所有选项中获益。 有关功能和各种警报选项的更多详情,请参阅 ->   自定义警报常见问题                                                                                                        Custom Alerts 是一款多功能的多市场监控工具,可识别所有八种主要货币(美元、加元、英镑、欧元、瑞士法郎、日元、澳元和新西兰元)、黄金 (XAU)、基于这些货币的所有 28 种外汇和黄金货币对以及
    您认为在价格可以瞬间变化的市场中,下单应该尽可能简单吗? 在 Metatrader 中,每次您要开单时,您都必须打开一个窗口,您可以在其中输入开盘价、止损和止盈以及交易规模。 在金融市场交易中,资本管理对于维持您的初始存款并使其倍增至关重要。 因此,当您想下订单时,您可能想知道应该开多大的交易? 在这单笔交易中,您应该承担多少百分比的存款? 您可以从这笔交易中获利多少,利润风险比是多少? 在您设置交易规模之前,您需要进行必要的计算,以获得交易规模应该是多少的问题的答案。 想象一下,您有一个工具可以自动完成所有这些工作。 您打开图表,进行市场分析并用水平线标记入场点、防御点(止损)和目标(止盈),最后您定义风险水平,例如 作为可用资本的百分比,您可以在此交易中承担,此时程序提供: 定义风险和止损规模的可接受交易规模 以点数、点数和账户货币计的止损和获利值 风险回报率 现在剩下的就是点击面板上的相应按钮来打开交易。 如果您是黄牛,需要在不设置防御或目标的情况下快速打开和关闭交易,那么您可以在交易管理器面板中轻松掌握一切,您可以在其中定义固定订单参数并通过单击“购买”或 “卖出”按钮。 关闭
    TradePanel MT4
    Alfiya Fazylova
    4.91 (86)
    交易面板是一个多功能的交易助手。 该应用程序包含 50 多个手动交易功能,并允许您自动执行大多数交易操作。 购买之前,您可以在模拟帐户上测试演示版本。 演示 此处 。 完整说明 此处 。 贸易。 让您一键执行基本交易操作: 开立挂单和开仓。 打开订单网格。 平仓挂单和持仓。 仓位反转(平仓买入并开仓卖出,或平仓卖出并开仓买入)。 锁定仓位(通过开立相反仓位使卖出和买入仓位的交易量相等)。 对所有仓位进行部分平仓。 将所有头寸的止盈和/或止损设置为同一水平。 将所有仓位的止损设置为盈亏平衡水平。 开仓订单和仓位时,您可以: 根据既定风险自动计算订单量。 一键打开多个订单。 将计算出的交易量分配给多个订单。 使用面板创建的线条和标记在图表上可视化未来订单的交易水平位置。 开仓时,设置最大点差限制。 使用止盈规模与止损规模的自动比率。 使用虚拟止损和止盈。 将当前点差添加到止损和止盈。 使用 ATR 指标计算止盈和止损。 设置待处理订单的到期日期。 使用挂单跟踪(挂单自动移动到价格后面指定的距离)。 平仓订单和平仓时,您可以: 一键按订单或仓位类型关闭。 只需点击一下,即可仅平仓盈利或无利可
    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
    Unlimited Trade Copier Pro 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 not b
    TPSpro Trade PRO
    Roman Podpora
    5 (4)
    下载演示版本 说明 -   https://www.mql5.com/ru/blogs/post/758419 处于测试模式     (在测试器中)面板功能   未激活 。我们仅提供了面板本身的视觉显示。 一款能够根据给定的止损水平即时计算头寸规模或风险的工具对于专业交易员和新手交易员来说都至关重要。TRADE PRO 交易实用程序提供快速准确的计算,帮助您在时间敏感且波动的市场中做出决策。 主要功能: 原创。简单。有效。 原始、方便地打开主交易面板:将鼠标移到图表右侧,然后单击适当的方向即可下达未来订单。 快速安装市价单 使用 TRADE PRO 设置您的余额或资本的风险百分比,或指定具体的风险金额。在图表上直观地定义止损水平,让该工具自动计算每种货币对的最佳头寸规模。该工具还可以根据指定的风险/回报率自动设置利润目标(止盈)。 下达多个限价订单以分担总风险     (网格模式)。 无论您进行多笔买入或卖出交易还是遵循网格策略,交易面板都提供了下达多笔限价订单的功能,让您可以将主要风险分散到各个部分,并可进行调整。 在现有的市价单上添加额外的限价单。 为了您的方便,如果您已经有
    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
    Telegram To MT4 Receiver
    Levi Dane Benjamin
    5 (3)
    将信号从您所属的任何渠道(包括私人和受限渠道)直接复制到您的 MT4。 该工具在设计时充分考虑了用户的需求,同时提供了管理和监控交易所需的许多功能。 该产品采用易于使用且具有视觉吸引力的图形界面。 自定义您的设置并在几分钟内开始使用该产品! 用户指南 + 演示  |     MT5版本  |     不和谐版本 如果您想尝试演示,请参阅用户指南。 Telegram To MT4 接收器在策略测试器中不起作用! Telegram 至 MT4 功能 一次复制多个通道的信号 从私人和受限频道复制信号 不需要机器人令牌或聊天 ID(如果出于某种原因需要,您仍然可以使用这些) 使用风险百分比或固定手数进行交易 排除特定符号 选择复制所有信号或自定义要复制的信号 配置单词和短语以识别所有信号(默认值应适用于 99% 的信号提供商) 配置时间和日期设置以仅在需要时复制信号 设置一次打开的最大交易量 交易和头寸管理 使用信号或自动设置的管理 通过设置每月、每周、每天、每小时或每分钟的最大交易次数,停止过度交易和报复性交易。 支持市价订单和挂单 每日最大利润目标(以美元为单位)以确保头寸并停止
    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
    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
    For more info join to http://discord.io/reitakfx where you can get info how to set, how to trade or for your questions -------------------------------- If you want this panel and all my other products for FREE , create account here http://bit.ly/reitakfxroboforex and then write me and I will send you all my actual and future product for FREE + VIP on my  DISCORD   -------------------------------------- Set in panel what margin will use to trade. When you ready to trade, just click to buy or se
    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
    智能交易副驾驶: 这是一个智能交易助手,可以帮助您日常的交易管理。智能交易副驾驶配备了用户友好的交易面板,具有现代化的设计并采用了尖端技术。 智能交易副驾驶具有多种功能: 1. 风险管理支持:根据指定的风险百分比和止损自动计算适当的手数,帮助交易者有效管理风险。 2. 风险收益比预览:在开仓前显示潜在的利润和亏损,帮助交易者做出更好的决策。 3. 自动手数计算:根据止损和期望的风险自动调整手数,确保一致的风险管理。 4. 全面的订单管理:允许交易者轻松开立、修改和关闭各种类型的订单,包括市价单和挂单。 5. 保本和平仓跟踪止损:包括一键保本和平仓跟踪止损功能,以锁定利润并减少亏损。 6. 隐藏止损/止盈:允许交易者隐藏止损和止盈水平,防止被经纪商“止损猎杀”。 7. 佣金和点差计算:在开仓前提供佣金和点差信息,帮助交易者了解交易成本。 8. 最大点差过滤:当点差过高时,防止开仓,保护交易者免受不利的市场条件影响。 9. 可定制的风险设置:交易者可以选择按余额的百分比或自定义余额承担风险,提供灵活的风险管理方式。 10. 交易备注:允许为交易添加备注,以便更好地跟踪和组织交易记
    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
    FX28 Trader
    Tsvetan Tsvetanov
    5 (1)
    介绍FX28 Trader Dashboard – 您的终极交易管理工具 通过FX28 Trader Dashboard,解锁您交易体验的全部潜力,这是一款全面而直观的交易管理工具,旨在将您的外汇交易提升到新的水平。无论您是经验丰富的交易员还是刚刚开始您的金融之旅,这个强大的工具旨在简化您的交易活动并提高您的决策过程。 主要特点: 用户友好界面: FX28 Trader Dashboard拥有用户友好的界面,适应各个层次的交易员。通过几次点击轻松导航各种功能和工具,确保您只需轻松几下就完全掌控了交易。 实时市场数据: 利用实时市场数据源,始终保持领先地位,为您提供有关货币对、趋势和市场波动的最新信息。做出明智的决策,充满信心地执行交易。 高级交易分析: 通过高级分析深入了解您的交易绩效。跟踪交易历史,分析趋势,并识别模式,以优化您的策略和改善您的结果。 风险管理工具: 用我们强大的风险管理工具保护您的投资。轻松设置止损和获利订单,自定义仓位大小,并轻松实施风险收益比,确保自律和受控的交易方法。 多时间框架分析: FX28 Trader Dashboard允许您同时分析不同时间框架的市
    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 (4)
    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
    发现信号很好,但提供商的信号太小?您需要更大的持仓量,但终端设置太差?信号手数管理器将通过所需交易量的重复订单来增加提供商的头寸交易量。 只需设置手数大小和用于复制订单的信号名称即可。 Signal Lot Manager 是一个批量乘数实用程序,用于在您的终端上复制订单。来源可以选择任何顾问、手动交易、单独的交易信号。它具有广泛的功能、简单的设置以及高速度和可靠性。 Signal Lot Manager 安装和输入指南 如果您想获取有关 EA 的通知,请将我们的 URL 添加到 MT4/MT5 终端(参见屏幕截图)。 MT4版本     https://www.mql5.com/en/market/product/34864 MT5版本     https://www.mql5.com/en/market/product/41610 一般输入: 信号标题:信号的名称(您可以从信号顺序注释中复制它)。 最大限度。滑点:开仓交易可接受的最大滑点。因此,如果当前价格超过最高价格。与信号订单的入场价格相比的滑点距离,交易不会被复制。这对于防止复制交易出现不必要的滑点非常有用,特别是在高
    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. 预订挂单:在市场关闭的时候你也可以下挂单 (适
    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
    Riskless Pyramid
    Snapdragon Systems Ltd
    5 (1)
    Introduction This powerful MT4 trade mangement EA offers a way potentially to aggressively multiply trade profits in a riskfree manner. Once a trade has been entered with a defined stoploss and take profit target then the EA will add three pyramid add-on trades in order to increase the overall level of profit. The user sets the total combined profit target to be gained if everything works out. This can be specified either as a multiple of the original trade profit or as a total dollar amount. Fo
    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
    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
    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,
    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
    News Trapper EA
    Noha Mohamed Fathy Younes Badr
    4.86 (14)
    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.      sale will end after 48 h 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 econ
    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
    作者的更多信息
    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.