• 미리보기
  • 리뷰 (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
    이것은 구매 및 판매 주문 네트워크를 배치하는 일반 패널입니다. 이 전문가 고문은 설정에 정의 된 이익 순서를 닫습니다. 그런 다음 사다리라는 매개 변수가 있습니다.이 매개 변수에는 사다리 매개 변수에 의해 표시된 점(여기서 주요 설정에서는 10 점)으로 주문 사이의 거리가 증가하기 시작하므로 두 번째 순서는 10 점,세 번째 순서는 20 점,네 번째 순서는 40 점 등이 포함됩니다. 그런 다음 설정에 있지 않기 때문에 이 고문에 무엇이 있는지 알아야 하지만 이 고문이 제안한 전략의 논리에 영향을 미칩니다.. 의이 고문이 다섯 개 주문을 엽니 다 여기 설정에서 가정 해 봅시다... 또는 구매... 또는 판매... 좋아.. 그러나,주문을 열 때,그것은 이전에 열린 주문의 절반으로 다음 오픈 주문의 로트를 증가시킬 것입니다. 즉,설정에서 0.1 로트를 설정하면 계획에 따라 5 개의 주문이 열리고 현재 가격에 가까운 첫 번째 주문은 0.1 로트의 가격으로 열립니다. 두 번째는 주어진
    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) 수동 개봉 후 개봉 및 관리 (수동 개봉 ManualTrade) 높음/낮음 수준으로 열기(과거 막대 TFTrade의 경우 높음 낮음) OCO(One-Cancels-the-Other) 주문은 두 개의 주문으로 구성된 조건부 주문의 일종입니다. 두 번째 주문이 체결되면 첫 번째 주문은 자동으로 취소됩니다. 스윙 - 전체 설명 MT5 version 구입 방법 설치하는 방법     로그 파일을 얻는 방법     테스트 및 최적화 방법     Expforex의 모든 제품 작동 원리 시작
    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핍에서 가상 후행 정지 수준 설정 실제 후행 정지 수준 설정 각 주문에 대해 개별적으로 작업(후행 정지 수준은 각 주문에 별도로 배치됨) 단방향 주문 바스켓으로 작업(후행 정지 수준은 모든 주문에 대해 공통으로 설정되며 별도로 구매 및 판매) 양방향 주문 바스켓으로 작업(추적 정지 수준은 모든 주문에 대해 공통으로 설정되며 BUY 및 SELL을 함께 사용) 테스트 및 작업을 위해 차트의 버튼을 사용할 수 있습니다. 옵션:
    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
    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)
    Library to add the Information Panel to your Expert Advisor for MetaTrader 4. We can not guarantee that the information and interface of the program will give you a profit on deals, but we will definitely say that even the simplest interface of the program can strengthen the first impression. Detailed description and instructions for adding our panel to your Expert Advisor are in our blog: LIB - EAPADPRO Step-by-step instruction Detailed description of our panel and instructions for using EAPADP
    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
    Smart close filters
    Smaylle Rafael Coelho Mariano
    This MQL4 script is designed for automated trading management with enhanced control over position handling and execution timing. The script allows users to automatically modify open trades by adjusting Stop-Loss and Take-Profit levels according to predefined settings. It provides several features to customize trade management: 1. **Stop-Loss and Take-Profit Modification**: The script can automatically adjust Stop-Loss and Take-Profit levels based on either the trade's open price or the curren
    FREE
    이 제품의 구매자들이 또한 구매함
    Trade Assistant MT4
    Evgeniy Kravchenko
    4.43 (180)
    거래당 위험 계산, 라인을 사용한 손쉬운 신규 주문, 부분 청산 기능을 통한 주문 관리, 7가지 유형의 트레일링 스탑 및 기타 유용한 기능을 제공합니다. 주의, 응용 프로그램은 전략 테스터에서 작동하지 않습니다. Manual, Description, Download demo 라인 기능       - 차트에 개시선, 손절매, 차익실현을 표시합니다. 이 기능을 사용하면 새로운 주문을 쉽게 하고 개봉 전에 추가 특성을 볼 수 있습니다. 위기 관리       -       위험 계산 기능은 설정된 위험과 손절매 주문의 크기를 고려하여 새 주문의 볼륨을 계산합니다. 이를 통해 손절매 크기를 설정하고 동시에 설정된 위험을 존중할 수 있습니다. 로트 계산 버튼 - 위험 계산을 활성화/비활성화합니다. 필요한 위험 값은 위험 필드에 0에서 100 사이의 백분율 또는 예금 통화로 설정됩니다. 설정 탭에서 위험 계산 옵션을 선택합니다. $ 통화, % 잔액, % 지분, % 자유 마진, % 사용
    가격이 순식간에 변할 수 있는 시장에서 주문은 가능한 한 간단해야 한다고 생각하십니까? 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)
    Trade Panel은 다기능 거래 보조원입니다. 이 애플리케이션에는 수동 거래를 위한 50개 이상의 기능이 포함되어 있으며 대부분의 거래 작업을 자동화할 수 있습니다. 구매하기 전에 데모 계정에서 데모 버전을 테스트할 수 있습니다. 데모는 여기 에서 확인하세요. 전체 지침은 여기 에서 확인하세요. 거래 . 한 번의 클릭으로 기본적인 거래 작업을 수행할 수 있습니다: 보류 주문 및 포지션 열기 주문 그리드 열기 보류 주문 및 포지션을 마감합니다. 포지션 전환(매수를 청산하여 매도를 개시하거나 매도를 청산하여 매수를 개시). 포지션 고정(반대 포지션을 열어 SELL과 BUY 포지션의 볼륨을 동일하게 만듭니다). 모든 포지션을 부분 청산합니다. 모든 포지션의 이익실현 및/또는 손절매를 공통 수준으로 설정합니다. 모든 포지션의 손절매를 손익 분기점 수준으로 설정합니다. 주문 및 포지션을 열 때 다음을 수행할 수 있습니다. 설정된 위험에 따라 거래량 자동 계산을 사용합니다. 한 번의 클릭으
    당신이 멤버인 어떤 채널에서든(비공개 및 제한된 채널 포함) 신호를 직접 MT4로 복사하세요.  이 도구는 사용자를 고려하여 설계되었으며 거래를 관리하고 모니터하는 데 필요한 많은 기능을 제공합니다. 이 제품은 사용하기 쉽고 시각적으로 매력적인 그래픽 인터페이스로 제공됩니다. 설정을 사용자 정의하고 제품을 몇 분 안에 사용하십시오! 사용자 가이드 + 데모  | MT5 버전 | Discord 버전 데모를 시도하려면 사용자 가이드로 이동하십시오. Telegram To MT5 수신기는 전략 테스터에서 작동하지 않습니다! Telegram To MT4 특징 한 번에 여러 채널에서 신호를 복사합니다. 비공개 및 제한된 채널에서 신호를 복사합니다. Bot 토큰이나 채팅 ID가 필요하지 않습니다(필요한 경우 계속 사용할 수 있음). 위험 % 또는 고정된 로트를 사용하여 거래합니다. 특정 심볼을 제외합니다. 모든 신호를 복사할지 복사할 신호를 사용자 정의할지 선택합니다. 모든 신호를 인식하
    가격 조치 도구 키트 EA는 주로 스캘퍼를 위해 설계되었지만 모든 시간대에 사용하여 정지 수준에 따라 올바르게 계산된 로트 크기로 시장에 빠르게 진입할 수 있습니다. 주문) 그런 다음 시장이 움직일 때 스탑을 조정하고 이익을 얻습니다. 사용할 모든 기능, 설정 및 모범 사례 전략의 전체 목록을 보려면 여기를 클릭하십시오. https://www.mql5.com/en/blogs/post/748072 위험 기반 진입 빠른 주문 버튼을 사용하면 계정의 위험 비율을 기반으로 포지션을 잡을 수 있습니다. 선택한 위험과 손절매까지의 거리를 기반으로 로트 크기를 자동으로 계산합니다. 따라서 브로커가 0.01 로트 크기 사용을 허용하는지 확인해야 합니다. 0.10 또는 1.00 로트 증분을 사용해야 하는 경우 작동하지 않습니다. 빠른 거래 실행 버튼 차트에 빠른 거래 실행 버튼을 배치하여 즉시 거래를 자동으로 열거나 닫거나 조정할 수 있습니다. 일반 진입 버튼뿐만 아니라 모든 포지션을
    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
    TakePropips TradePad Pro
    Eric John Pajarillaga Aldana
    5 (4)
    TakePropips TradePad Pro 에는 강력한 거래 관리자, 통화 강도 측정기, 계정 보고 도구, 위험 관리 도구 등이 포함되어 있습니다! 그것은 당신이 만나게 될 가장 진보된 외환 거래 관리자이자 거래 도우미 중 하나입니다! 보다 효율적인 무역 거래 관리 방법을 원하는 트레이더를 위한 완벽한 솔루션입니다. 다음 블로그 게시물에서 사용 설명서를 다운로드할 수 있습니다.   https://www.mql5.com/en/blogs/post/751180 Strategy Tester에서 이 거래 시스템을 테스트할 수 있습니다(비주얼 모드 활성화). 실시간 차트에서 테스트하고 싶다면 저에게 메시지를 보내 7일 평가판을 받을 수도 있습니다. 자세한 내용은 설명 아래에 비디오 자습서도 제공됩니다. 질문이 있거나 도움이 필요한 경우 언제든지 저에게 연락해 주시면 기꺼이 도와드리겠습니다. TradePad Pro는 모든 Forex 쌍, 금속, 상품, 지수 및 암호화폐에서 작동합니다.
    Trade Assistant Pro 36 in 1
    Makarii Gubaydullin
    4.95 (19)
    다기능 도구: 로트 계산기, 가격 조치, R/R 비율, 무역 관리자, 공급 및 수요 영역을 포함한 65개 이상의 기능 데모 버전   |   사용자 매뉴얼   |   MT5 버전 이 유틸리티는 전략 테스터에서 작동하지 않습니다. 여기에서 데모 버전을 다운로드하여 제품을 테스트할 수 있습니다. Contact me   질문/개선 아이디어가 있는 경우/버그가 발견된 경우 저에게 연락 하십시오. 거래 프로세스를 간소화, 가속화 및 자동화하십시오. 이 대시보드로 표준 터미널 기능을 확장하십시오. 유틸리티는 외환, 주식, 지수, 암호화폐 등 모든 거래 수단에서 작동합니다. 1. 새로운 거래 열기 : 로트/리스크/RR 계산: 1. Lot 계산기 (리스크 규모에 따른 거래량 계산) 2. 리스크 계산기 (로트 규모에 따른 리스크 금액) 3. 위험/보상 비율(RR) 4. 주문에 대한 활성화 트리거 + StopLimit 구매 / StopLimit 판매 5. 가상 SL / TP 레벨 (숨겨진 SL
    Forex Market View Dashboard and CSM
    Opengates Success International
    5 (1)
    FFXMV Dashboard + CSM is a custom indicator combined with Currency Strength Meter . It is created to give the Traders a full view of what is going on in the market. It uses a real time data to access the market and display every bit of information needed to make a successful trading. Before attaching this Indicator to your window chart, go to your MT4's Market Watch panel and HIDE all the Currency pairs you don't need or trade and leave the rest there. The reason is that FFMV Dashboard will DISP
    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
    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
    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
    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
    FX28 Trader
    Tsvetan Tsvetanov
    5 (1)
    FX28 Trader Dashboard 소개 - 귀하의 궁극적인 트레이드 매니저 FX28 Trader Dashboard는 외환 거래를 새로운 차원으로 끌어올릴 수 있는 포괄적이고 직관적인 트레이드 매니저로 귀하의 거래 경험의 전체 잠재력을 발휘합니다. 귀하가 경험이 풍부한 트레이더이든, 금융 여정을 시작한 지 얼마 안 된 초보자이든, 이 강력한 도구는 귀하의 거래 활동을 효율적으로 정리하고 의사 결정 과정을 향상시키기 위해 개발되었습니다. 주요 특징: 사용자 친화적 인터페이스: FX28 Trader Dashboard는 모든 수준의 트레이더에게 적합한 사용자 친화적 인터페이스를 자랑합니다. 다양한 기능과 도구를 쉽게 탐색하여 몇 번의 클릭으로 거래를 완전히 통제할 수 있습니다. 실시간 시장 데이터: 실시간 시장 데이터 피드를 통해 통화 쌍, 트렌드 및 시장 변동에 대한 최신 정보를 얻어 자신감 있게 거래를 실행하세요. 고급 트레이드 분석: FX28 Trader Dashboard를 사
    Contact/message me if you encounter any issue using the product or need extra feature to add on the base version. There is a demo version of this panel Dashboard Trading Made Simple Demo in my product list, please try it out to get familiar with all functionalities free, LINK . This system basically utilizes TDI as the main indicator to generate trading signal mainly on H1 and H4 timeframes. The signal will be further filtered and trimmed. Stochastic; Heiken Ashi candle direction and candle s
    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
    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
    50% off. Original price: $375 Reward Multiplier is a semi-automatic trade manager based on pyramid trading that opens additional orders with the running profit of your trades to maximize return exponentially without increasing the risk. Unlike other similar EAs, this tool shows potential profit/loss and reward to risk ratio before even entering the first trade! Download Demo here  (starting lot is fixed at 0.01) Guide + tips here MT5 version   here You only open the first order. When your
    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
    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
    ATTENTION   the expert does not work in strategy tester, for a trial version visit my profile. ATTENTION the expert must remain with the operations history in " COMPLETE HISTORY " 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 posit
    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
    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
    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,
    ADAM for FTMO 40
    Vyacheslav Izvarin
    5 (1)
    ADAM EA Special Version for FTMO  Our 1st EA created using ChatGPT technology Trade only GOOD and checked PROP FIRMS  Default parameters for Challenge $100,000 Tested on EURUSD and GBPUSD only  Use 15MIN Time Frame Close all deals and Auto-trading  before Weekend at 12:00 GMT+3  Friday For Prop Firms MUST use special Protector  https://www.mql5.com/en/market/product/94887 ---------------------------------------------------------------------------------------------------------------------------
    DFGX Dashboard
    Tsvetan Tsvetanov
    5 (2)
    Take your trading to the next level with DFGX - our second generation Dynamic Fibonacci Grid. This new, powerful and easy to use application is specially designed and optimized for contrarian intraday trading, scalping and news trading on the Forex market. This system is the ideal solution for active professional traders and scalpers who are looking for innovative ways to optimize their strategy. The system also provides excellent opportunity for new traders who want to learn to trade in a syste
    회원으로서 어떤 채널에서도 신호를 복사하세요 (   Bot 토큰이나 관리자 권한이 필요하지 않음  바로 MT4로. 사용자를 고려하여 설계되었으며 관리 및 모니터링에 필요한 많은 기능을 제공합니다. 이 제품은 직관적이고 시각적으로 매력적인 그래픽 인터페이스로 제공됩니다. 설정을 사용자 정의하고 제품을 몇 분 안에 사용을 시작하세요! 사용자 가이드 + 데모  | MT5 버전 | 텔레그램 버전 데모를 시도하려면 사용자 가이드로 이동하세요. 디스코드를 MT4로 보내는 것은 전략 테스터에서 작동하지 않습니다. 디스코드   MT4 기능 회원으로서 어떤 채널에서도 복사하세요. Bot 토큰이나 채팅 ID가 필요하지 않음 위험 % 또는 고정된 로트로 거래하세요 특정 기호 제외 모든 신호를 복사할 것인지 또는 복사할 신호를 사용자 정의하세요 모든 신호를 인식하기 위해 단어 및 구문을 구성하세요 (기본 설정은 신호 제공자의 99%에 대해 작동해야 함) 원하는 경우 시간 및 날짜 설정을 구성하여
    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
    제작자의 제품 더 보기
    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.