• 미리보기
  • 리뷰 (2)
  • 코멘트 (6)
  • 새 소식

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.


















    리뷰 2
    michaelronnfeldt
    19
    michaelronnfeldt 2020.11.25 22:32 
     

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

    추천 제품
    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
    MT5 to Discord Signal Provider 는 Discord로 직접 거래 신호를 보내는 데에 설계된 사용자 친화적이고 완전히 맞춤화할 수 있는 유틸리티입니다. 이 도구는 귀하의 거래 계좌를 효율적인 신호 제공자로 변환합니다. 귀하의 스타일에 맞게 메시지 형식을 사용자 정의하세요! 사용 편의성을 위해 사전에 디자인된 템플릿을 선택하고 포함하거나 제외할 메시지 요소를 선택할 수 있습니다. [ 데모 ] [ 매뉴얼 ] [ MT4 버전 ] [ Telegram 버전 ] 설정 간편한 설정을 위해 저희의 상세한 사용자 가이드 를 따르세요. Discord API에 대한 사전 지식이 필요 없습니다; 필요한 모든 도구를 제공합니다. 주요 기능 구독자 업데이트를 위한 주문 세부 정보를 사용자 정의합니다. 각 계층이 다른 수준의 신호 접근을 제공하는 브론즈, 실버, 골드와 같은 계층적 구독 모델을 구현합니다. 주문이 실행된 차트의 스크린샷을 첨부합니다. 더 명확하게 하기 위해 이 스크린
    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 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)
    MT5용 트레이드 복사기는 metaТrader 5 플랫폼용 트레이드 복사기입니다   . 그것은 사이의   외환 거래를 복사합니다       모든 계정   COPYLOT MT5 버전의 경우   MT5   -   MT5, MT4   -   MT5 (또는 COPYLOT MT4 버전의 경우   MT4 -   MT4 MT5   -  MT4) 믿을 수 있는 복사기! MT4 버전 전체 설명   +DEMO +PDF 구입 방법 설치하는 방법     로그 파일을 얻는 방법     테스트 및 최적화 방법     Expforex의 모든 제품 МТ4 터미널에서 거래를 복사할 수도 있습니다(   МТ4   -   МТ4, МТ5   -   МТ4   ):   COPYLOT CLIENT for MT4 이 버전은 МТ5   -   МТ5, МТ4   -   МТ5   터미널 간을 포함합니다. 거래 복사기는 2/3/10 터미널 사이의 거래/포지션을 복사하기 위해 만들어졌습니다. 데모 계정 및 투자 계
    Pattern 123 MT5
    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 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
    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
    이 표시기는 차트의 모든 주문에 대해 이미 설정한 TP 및 SL 값(해당 통화로)을 표시하여 모든 주문에 대한 손익을 추정하는 데 많은 도움이 됩니다(거래/주문 라인에 닫힘). 또한 PIP 값도 표시됩니다. 표시된 형식은 "이익 또는 손실 / PIP 값의 통화 값"입니다. TP 값은 녹색으로 표시되고 SL 값은 빨간색으로 표시됩니다.. 질문이나 자세한 내용은 fxlife.asia@hotmail.com  or  fxlife.asia@yahoo.com 으로 판매자에게 언제든지 문의하십시오. (그리고 곧 표시기에 추가될 다음 기능은 "자동 또는 반자동 TP 및 SL 설정"이며 고객은 무료로 업데이트 버전을 받을 것입니다. 감사합니다...) (또는 표시에 일부 기능을 추가해야 한다고 생각하시면 언제든지 말씀해 주십시오...)
    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   는 조용한 시간을 위한 전자동 Forex Expert Advisor입니다. 고문의 작업 모니터링:  https://www.mql5.com/en/users/bayburinmarat/seller 올바른 GMT 설정:   https://www.mql5.com/ru/blogs/post/743531 가장 이해하기 쉽고 간단한 최적화에 필요한 모든 매개변수는 단 6가지 설정에서 사용할 수 있습니다.위험 수준을 조정하거나 특정 브로커에 대해 직접 사용자 정의하는 선호도에 조언자를 조정할 수 있습니다. XAUUSD, XAUJPY, XAUAUD, XAUEUR 등 4개 통화 쌍의 매개변수가 이미 EA 코드에 내장되어 있습니다. 모든 브로커가 거래를 위해 이러한 쌍을 제공하는 것은 아닙니다. 기본 설정을 사용하거나 원하는 대로 설정을 변경할 수 있습니다. 장점: 보류 중인 주문을 사용할 수 있습니다
    Trade Copier Agent는 여러 MetaTrader(4/5) 계정/터미널 간에 거래를 복사하도록 설계되었습니다. 이 도구를 사용하면 제공자(소스) 또는 수신자(대상) 역할을 할 수 있습니다. 모든 거래 행위는 지연 없이 제공자에서 수신자로 복사됩니다. 이 도구를 사용하면 0.5초 미만의 매우 빠른 복사 속도로 동일한 컴퓨터의 여러 MetaTrader 터미널 간에 거래를 복사할 수 있습니다. 무역 복사기 에이전트 설치 및 입력 가이드 복사를 시작하기 전이나 주문이 없을 때 공급자 계정의 설정을 적용하십시오! 주문이 있는 동안 모든 변경 사항은 수신자 계정에 영향을 미칩니다. 예: 공급자 계정이 구매 주문을 적용한 다음 구매를 비활성화하면 수신자 계정의 모든 구매 주문이 닫힙니다. EA에 대한 알림을 받으려면 URL(   http://autofxhub.com   ) MT4 터미널을 추가하십시오(스크린샷 참조). MT5 버전   https://www.mql5.com/en
    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
    자동 주문 및 위험 관리를 위한 유틸리티입니다. 이익을 최대한 활용하고 손실을 제한할 수 있습니다. 트레이더를 위한 실무 트레이더가 만들었습니다. 유틸리티는 사용하기 쉽고 거래자가 수동으로 또는 고문의 도움을 받아 열린 시장 주문과 함께 작동합니다. 매직 넘버로 거래를 필터링할 수 있습니다. 유틸리티는 동시에 원하는 수의 주문을 처리할 수 있습니다. 다음과 같은 기능이 있습니다. 1. 손절매 및 이익 수준 설정 2. 후행 정지 수준으로 거래를 마감합니다. 3. 손익분기점 설정. 유틸리티는 다음을 수행할 수 있습니다. 1. 각 주문에 대해 개별적으로 작업(각 주문에 대해 수준이 별도로 설정됨) 2. 단방향 주문 바스켓으로 작업(레벨은 모든 주문에 대해 공통으로 설정되며 별도로 구매 및 판매) 3. 다방향 주문 바구니로 작업(레벨은 모든 주문에 대해 공통으로 설정되며 BUY 및 SELL 함께) 옵션: STOPLOSS - =-1이
    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
    PROMO: ONLY 10 LEFT AT $90! Next price:        $199 Price will be kept high to limit number of users for this strategy. This EA starts trading at the open of   London (UK) Session . It is based on analysis of advanced statistical distributions combined with short to medium term reversal patterns which have mean-reversion attributes. The EA includes several smart features and allows you to trade with a fixed or automatic lot size. The EA is not sensitive to spreads but can be backtested on bo
    To download MT4 version please click here . - This is the exact conversion from TradingView: "Chandelier Exit" By "everget". - This is a non-repaint and light processing load indicator - input options related to coloring and labels are removed to fit into MetaTrader graphics.  - Buffers are available for processing within EAs. - You can message in private chat for further changes you need.
    이 제품의 구매자들이 또한 구매함
    Trade Assistant MT5
    Evgeniy Kravchenko
    4.38 (164)
    거래당 위험 계산, 라인을 사용한 손쉬운 신규 주문, 부분 청산 기능을 통한 주문 관리, 7가지 유형의 트레일링 스탑 및 기타 유용한 기능을 제공합니다. 주의, 응용 프로그램은 전략 테스터에서 작동하지 않습니다. 설명 페이지에서 데모 버전을 다운로드할 수 있습니다.  Manual, Description, Download demo 라인 기능       - 차트에 개시선, 손절매, 차익실현을 표시합니다. 이 기능을 사용하면 새로운 주문을 쉽게 하고 개봉 전에 추가 특성을 볼 수 있습니다. 위기 관리       -       위험 계산 기능은 설정된 위험과 손절매 주문의 크기를 고려하여 새 주문의 볼륨을 계산합니다. 이를 통해 손절매 크기를 설정하고 동시에 설정된 위험을 존중할 수 있습니다. 로트 계산 버튼 - 위험 계산을 활성화/비활성화합니다. 필요한 위험 값은 위험 필드에 0에서 100 사이의 백분율 또는 예금 통화로 설정됩니다. 설정 탭에서 위험 계산 옵션을 선택합니다.
    가격이 순식간에 변할 수 있는 시장에서 주문은 가능한 한 간단해야 한다고 생각하십니까? Metatrader에서는 주문을 열 때마다 시작 가격, 손절매 및 이익실현 및 거래 규모를 입력하는 창을 열어야 합니다. 금융 시장 거래에서 자본 관리는 초기 예금을 유지하고 곱하기 위해 필수적입니다. 따라서 주문을 하고 싶을 때 얼마나 큰 거래를 열어야 하는지 궁금할 것입니다. 이 단일 거래에서 위험을 감수해야 하는 예치금의 비율은 얼마입니까? 이 거래에서 얼마나 많은 이익을 얻을 수 있으며 위험 대비 이익 비율은 얼마입니까? 거래 규모를 설정하기 전에 거래 규모가 어떻게 되어야 하는지에 대한 질문에 대한 답을 얻기 위해 필요한 계산을 수행합니다. 이 모든 작업을 자동으로 수행하는 도구가 있다고 상상해 보십시오. 차트를 열고 시장 분석을 하고 진입점, 방어점(손절매) 및 목표(이익 실현)를 수평선으로 표시하고 마지막에 위험 수준을 정의합니다. 이 거래에서 감당할 수 있는 가용 자본의 %로, 이
    TradePanel MT5
    Alfiya Fazylova
    4.85 (114)
    Trade Panel은 다기능 거래 보조원입니다. 이 애플리케이션에는 수동 거래를 위한 50개 이상의 기능이 포함되어 있으며 대부분의 거래 작업을 자동화할 수 있습니다. 구매하기 전에 데모 계정에서 데모 버전을 테스트할 수 있습니다. 데모는 여기 에서 확인하세요. 전체 지침은 여기 에서 확인하세요. 거래 . 한 번의 클릭으로 기본적인 거래 작업을 수행할 수 있습니다: 보류 주문 및 포지션 열기 주문 그리드 열기 보류 주문 및 포지션을 마감합니다. 포지션 전환(매수를 청산하여 매도를 개시하거나 매도를 청산하여 매수를 개시). 포지션 고정(반대 포지션을 열어 SELL과 BUY 포지션의 볼륨을 동일하게 만듭니다). 모든 포지션을 부분 청산합니다. 모든 포지션의 이익실현 및/또는 손절매를 공통 수준으로 설정합니다. 모든 포지션의 손절매를 손익 분기점 수준으로 설정합니다. 주문 및 포지션을 열 때 다음을 수행할 수 있습니다. 설정된 위험에 따라 거래량 자동 계산을 사용합니다. 한 번의 클릭으
    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
    가입한 모든 채널에서 (개인 및 제한된 채널 포함) 시그널을 바로 MT5로 복사합니다.   이 도구는 사용자를 고려하여 설계되었으며 거래를 관리하고 모니터하는 데 필요한 많은 기능을 제공합니다. 이 제품은 사용하기 쉽고 시각적으로 매력적인 그래픽 인터페이스로 제공됩니다. 설정을 사용자 정의하고 제품을 몇 분 안에 사용할 수 있습니다! 사용자 가이드 + 데모  | MT4 버전 | 디스코드 버전 데모를 시도하려면 사용자 가이드로 이동하십시오. Telegram To MT5 수신기는 전략 테스터에서 작동하지 않습니다! Telegram To MT5 특징 여러 채널에서 동시에 신호를 복사합니다. 개인 및 제한된 채널에서 신호를 복사합니다. Bot 토큰이나 채팅 ID가 필요하지 않습니다.   (원하는 경우에는 사용할 수 있습니다) 위험 % 또는 고정된 로트로 거래합니다. 특정 심볼을 제외합니다. 모든 신호를 복사할지 또는 복사할 신호를 사용자 정의할지 선택할 수 있습니다. 모든 신호
    Attention: this is a multicurrency EA, which trades by several pairs from one chart!  Therefore, in order to avoid duplicate trades, it is necessary to attach EA only to one chart, ---> all trading in all pairs is conducted only from one chart! we can trade simultaneously in three different pairs, as by default (EURUSD + GBPUSD + AUDUSD), which take into account the correlation when entering the market for all three; we can trade only EURUSD (or any currency pair) and at the same time take into
    Hedge Ninja
    Robert Mathias Bernt Larsson
    5 (1)
    Make sure to join our Discord community over at www.Robertsfx.com , you can also buy the EA at robertsfx.com WIN NO MATTER IN WHICH DIRECTION THE PRICE MOVES This robot wins no matter in which direction the price moves by following changing direction depending on in which direction price moves. This is the most free way of trading to this date. So you win no matter which direction it moves (when price moves to either of the red lines as seen on the screenshot, it wins with the profit target yo
    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
    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
    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
    News Filter Tool
    Apex Software Ltd
    5 (1)
    뉴스 이벤트 인사이트로 거래를 강화하세요 빠르게 변화하는 거래 세계에서 뉴스 이벤트는 시장 가격에 큰 영향을 미칠 수 있습니다. 이러한 이벤트가 가격 변동에 미치는 영향을 이해하는 것은 변동성이 큰 시기에 거래를 관리하는 데 중요합니다. News Tool EA는 과거 및 향후 뉴스 이벤트에 대한 통찰력을 제공하여 정보에 기반한 거래 결정을 내릴 수 있도록 설계되었습니다. 이 EA는 전략 테스터에서 실행할 수 없습니다. 사용자 가이드 주요 기능: 과거 뉴스 영향 분석 과거 특정 뉴스 이벤트에 대한 가격 움직임이 어떻게 반응했는지 이해하세요. 이벤트가 주로 강세 또는 약세 추세를 따르는지 분석하고, 조정 가능한 시간 프레임을 통해 평균 가격 영향을 포인트 또는 퍼센트로 확인할 수 있습니다. 시각적 그래프를 통해 뉴스 이벤트와 가격 반응을 함께 관찰하여 시장에 대한 더 깊은 통찰을 얻을 수 있습니다. 실시간 뉴스 통합 MT5에서 직접 다가오는 뉴스 이벤트에 대한 실시간 업데이트를
    Trade Assistant 38 in 1
    Makarii Gubaydullin
    4.89 (18)
    다기능 도구: 로트 계산기, 가격 조치, R/R 비율, 무역 관리자, 공급 및 수요 영역을 포함한 65개 이상의 기능 데모 버전   |   사용자 매뉴얼   |   MT5 버전 이 유틸리티는 전략 테스터에서 작동하지 않습니다.   여기에서 데모   버전을 다운로드하여 제품을 테스트할 수 있습니다. Contact me   질문/개선 아이디어가 있는 경우/버그가 발견된 경우   저에게 연락 하십시오. 거래 프로세스를 간소화, 가속화 및 자동화하십시오. 이 대시보드로 표준 터미널 기능을 확장하십시오. 유틸리티는 외환, 주식, 지수, 암호화폐 등 모든 거래 수단에서 작동합니다. 1. 새로운 거래 열기 : 로트/리스크/RR 계산: 1. Lot 계산기 (리스크 규모에 따른 거래량 계산) 2. 리스크 계산기 (로트 규모에 따른 리스크 금액) 3. 위험/보상 비율(RR) 4. 주문에 대한 활성화 트리거 + StopLimit 구매 / StopLimit 판매 5. 가상 SL / TP 레벨
    -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
    RiskGuard Management
    MONTORIO MICHELE
    5 (13)
    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,
    Adam FTMO MT5
    Vyacheslav Izvarin
    5 (2)
    ADAM EA Special Version for FTMO Please use ShowInfo= false for backtesting ! Our 1st EA created using ChatGPT technology Trade only GOOD and checked PROP FIRMS  Default parameters for Challenge $100,000 Tested on EURUSD and GBPUSD only  Use 15MIN Time Frame Close all deals and Auto-trading  before Weekend at 12:00 GMT+3  Friday For Prop Firms MUST use special Protector  https://www.mql5.com/en/market/product/94362 -------------------------------------------------------------------------------
    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
    Effortlessly calculate lot sizes and manage trades to save time and avoid costly errors The Trade Pad Pro EA is a tool for the Metatrader Platform that aims to help traders manage their trades more efficiently and effectively. It has a user-friendly visual interface that allows users to easily place and manage an unlimited number of trades, helping to avoid human errors and enhance their trading activity. One of the key features of the Trade Pad Pro EA is its focus on risk and position managem
    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
    Gold Pip Sniper MT5
    Muhammed Sharookh Chittethukudiyil
    기간 한정 특가: 현재 가격 $119는 첫 5회 구매 시에만 제공됩니다! 그 후 가격은 $999로 인상됩니다. 이 독점적인 기회를 놓치지 마세요. 특가가 끝나기 전에 재빨리 행동하세요! Rich Market Minds Scalper EA: 새로운 시장 동향을 위한 정밀 스캘핑.   Rich Market Minds Scalper EA는 속도와 정확성으로 새롭고 떠오르는 시장 동향을 활용하도록 전문적으로 제작되었습니다. 이 자동화된 거래 도구는 주요 시장 움직임을 식별하도록 설계되어 거래자가 빠른 거래를 실행하여 빠르게 수익을 낼 수 있습니다. 고급 알고리즘과 실시간 분석을 통해 EA는 위험을 최소화하고 수익을 극대화하므로 단기 시장 변화를 활용하려는 거래자에게 적합합니다. 숙련된 거래자이든 방금 시작하는 거래자이든 이 Scalper EA는 빠르게 움직이는 거래 세계에서 효율적인 성과를 보장합니다.  SymbolXAUUSDTimeframeH1 설정 기본 설정 브로커 제
    -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
    Trade Sync MT5
    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
    Breakevan Utility
    Jose Luis Thenier Villa
    BreakEvan Utility  Is a simple tool in a panel with this utilities: This utility will draw a Golden Line in the chart applied showing the breakeven price, considering all the positions opened for that specific symbol. Also the information panel shows: Balance Breakeven Price for that chart Force Breakeven (for that symbol) as ON/OFF Force Breakeven Global (takes into account all trades opened) as ON/OFF Total Lots opened for Symbol Total Lots opened Global And two buttons: Force Breakeven: W
    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
    The Expert Advisor will send notifications via Discord when orders are opened/modified/closed on your MetaTrader 5 account. - Send message and screenshot to Discord group/channel.  - Easy to customize message.  - Support custom message for all languages - Support full Emoji.  Parameters - Discord url Webhook - create webhook on your Discord channel. - Magic number filter - default all, or input magic number to notify with comma, like: 111,222,333. - Symbol filter - default all, or input symbo
    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
    Binance Future용 Mt5 봇(전문가) 시스템은 Binance Future 시장에서 실행됩니다. 이를 자신의 코드에 쉽게 통합하여 작업을 자동화할 수 있습니다. 수동 조작 패널을 사용할 수 있습니다. 헤지 모드 호환. 모든 작업은 화면에서 수동으로 수행할 수 있습니다. 많은 암호화폐를 동시에 제어하는 가장 효과적인 방법입니다. 화면은 바이낸스 화면이 있는 템플릿 형식입니다. 링크에서 템플릿 파일을 다운로드할 수 있습니다. https://drive.google.com/file/d/1WHqGhym0QIK31l7kwfit9_tXb7YbqSuT/view?usp=sharing 이 프로그램은 설치가 필요합니다. https://www.mql5.com/tr/market/product/68694 https://www.mql5.com/tr/market/product/73887 매개변수 API 키 = 바이낸스 API 키 비밀 키 =
    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
    Trading Chaos Expert
    Gennadiy Stanilevych
    5 (10)
    This software has no equals in the world and represents a universal trade "console" covering trading signals, automated market entry, setting of Stop Loss and Take Profit, as well as Trailing Profit for multiple trades at the same time in a single open window. Intuitive control of the Expert Advisor in "three clicks" ensures a comprehensive use of all its functions on different computers, including tablets PCs. Interacting with additional signal indicators that mark the chart to give a real mark
    회원인 모든 채널에서 신호를 복사하세요 ( 봇 토큰이나 관리자 권한이 필요하지 않음  MT5로 직접 이동합니다. 사용자를 고려하여 설계되었으며 필요한 많은 기능을 제공합니다 이 제품은 사용하기 쉽고 시각적으로 매력적인 그래픽 인터페이스로 제공됩니다. 설정을 사용자 정의하고 제품을 몇 분 안에 사용을 시작하세요! 사용자 가이드 + 데모  | MT4 버전 | 텔레그램 버전 데모를 시도하려면 사용자 가이드로 이동하십시오. Discord   에서 MT5로는 전략 테스터에서 작동하지 않습니다. Discord   에서 MT5로의 기능 회원인 모든 채널에서 복사합니다. 봇 토큰이나 채팅 ID가 필요하지 않습니다 위험 % 또는 고정 로트를 사용하여 거래하세요 특정 심볼 제외 모든 신호를 복사하거나 복사할 신호를 사용자 정의하세요 모든 신호를 인식하도록 단어 및 구를 구성합니다 (기본 설정은 99%의 신호 제공 업체에 작동해야 함) 원하는 경우 시간 및 날짜 설정을 구성하여 신호를 복사
    제작자의 제품 더 보기
    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:
    필터:
    kw901102
    75
    kw901102 2021.05.22 12:20 
     

    사용자가 평가에 대한 코멘트를 남기지 않았습니다

    Konstantin Stratigenas
    615
    개발자의 답변 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.

    리뷰 답변
    버전 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.
    버전 4.6 2021.07.04
    Small Alert Fix
    버전 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
    버전 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.2 2020.12.22
    Included Symbols. fixed.
    버전 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.
    버전 2.8 2020.12.14
    - Suffix Error fixed
    - Volume Error fixed
    버전 2.7 2020.12.14
    - Suffix Support
    - Other Deposit Currency Support like JPY
    - Small Fix
    버전 2.6 2020.12.08
    - Case insensitive. Solved.
    - Connect after Re-Init. Solved.
    - More Stable.
    - New MT4 Version.
    버전 2.5 2020.12.08
    - Faster Ping
    - Hedge Option
    - Min. Order Size Support
    - Move Stoploss / Takeprofit
    버전 2.1 2020.12.07
    - Faster Execution
    - Faster Connection
    - More Stable
    버전 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