• Genel bakış
  • İncelemeler (1)
  • Yorumlar (3)
  • Yenilikler

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.


    İncelemeler 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. :)

    Önerilen ürünler
    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
    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
    Bu, alış ve satış emirleri ağını belirleyen normal bir paneldir. Bu uzman danışman, ayarlarda belirli bir kar emrini kapatır. Daha sonra, emirler arasındaki mesafenin merdiven parametresi tarafından belirtilen puanlarla artmaya başladığını içeren Merdiven adı verilen bir parametre vardır (burada, ana ayarlarda 10 puan değerindedir), 10 puan için ikinci emir, 20 puan için üçüncü emir, 40 puan için dördüncü emir vb. O zaman, bu danışmanda burada ne olduğunu bilmeniz gerekir, çünkü bu ayarlarda
    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) adı verilen ünlü bir stratejinin modelini kullanır - bekleyen emirlerin artan lotla alternatif olarak yerleştirilmesi. Strateji iki zıt bekleyen emrin verilmesinde yatmaktadır. Fiyat belirli bir yönde hareket ettiğinde bekleyen bir emir tetiklenirken diğer emrin lot büyüklüğü artar. EA, üç tür bekleyen açılış emri sağlar (TypeofTrade) Yerleştirme sonrası otomatik açılma (Anlık açılış AutoTrade) Manuel açma sonrası açma ve yönetim (Manuel açma ManualTrade) Yüks
    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.
    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
    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
    Utility for automatic closing of deals by trailing stop levels.  Allows you to take the maximum from the profit. Created by a professional trader for traders.   Utility   works with any market orders opened manually by a trader or using advisors. Can filter trades by magic number. The utility can work with any number of orders simultaneously. MT5 version  https://www.mql5.com/ru/market/product/56488 WHAT THE UTILITY CAN DO: set virtual   trailing stop   levels from 1 pip set       real   trailin
    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
    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 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
    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
    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   позволяет симулировать ручную торговлю в Тестере Стратегий 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
    Bu ürünün alıcıları ayrıca şunları da satın alıyor
    Trade Assistant MT4
    Evgeniy Kravchenko
    4.43 (180)
    It helps to calculate the risk per trade, the easy installation of a new order, order management with partial closing functions, trailing stop of 7 types and other useful functions. Attention, the application does not work in the strategy tester. Manual, Description, Download demo Line function -   shows on the chart the Opening line, Stop Loss, Take Profit. With this function it is easy to set a new order and see its additional characteristics before opening.   Risk management  - The risk
    Fiyatın saniyeler içinde değiştiği finansal piyasalarda emirleri vermekte aynı şekilde kolay olması gerektiğini düşünüyor musunuz? Metatrader programında her emir açmak istediğinizde emir fiyatını, zararı durdur emrini, kar al emrini ve işlem hacmini gireceğini pencereyi açmak zorundasınız. Finansal marketlerde işlem yaparken sermaye yönetimi sermayenizi doğru yönetmek için çok önemlidir. Bunun için işlem açmadan önce doğru işlem hacmini hesaplamanız gerekir.  Bu hesaplamaları sizin için yapabil
    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)
    Ticaret Paneli çok işlevli bir ticaret asistanıdır. Uygulama, manuel ticaret için 50'den fazla işlev içerir ve çoğu ticaret eylemini otomatikleştirmenize olanak tanır. Satın almadan önce Demo sürümünü bir demo hesabında test edebilirsiniz. Demo burada . Talimatların tamamı burada . Ticaret. Tek tıklamayla temel alım satım işlemlerini gerçekleştirmenize olanak tanır: Bekleyen emirleri ve pozisyonları açın. Bir sipariş tablosu açılıyor. Bekleyen emirleri ve pozisyonları kapatın. Pozisyonların ters
    Üye olduğunuz herhangi bir kanaldan (özel ve kısıtlı olanlar dahil) sinyalleri doğrudan MT4'ünüze kopyalayın.  Bu araç, kullanıcıyı göz önünde bulundurarak tasarlanmış olup işlemleri yönetmek ve izlemek için ihtiyacınız olan birçok özelliği sunar. Bu ürün, kullanıcı dostu ve görsel olarak çekici bir grafik arayüzünde sunulmaktadır. Ayarlarınızı özelleştirin ve ürünü birkaç dakika içinde kullanmaya başlayın! Kullanıcı Kılavuzu + Demo  | MT5 Sürümü | Discord Sürümü Demo denemek istiyorsanız lüt
    Fiyat eylemi araç seti EA, öncelikle scalpers için tasarlanmıştır, ancak durdurma seviyenize göre doğru hesaplanmış lot büyüklüğü ile pazara hızlı bir şekilde girmek için tüm zaman dilimlerinde kullanılabilir. emirler) ve ardından durakları ayarlayın ve piyasa hareket ettikçe kar elde edin. Kullanılacak tüm özelliklerin, ayarların ve en iyi uygulama stratejisinin tam listesi için burayı tıklayın: https://www.mql5.com/en/blogs/post/748072 Riske Dayalı Giriş Hızlı sipariş düğmeleri, hesabınız
    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 , güçlü bir ticaret yöneticisi, para birimi gücü ölçer, hesap raporlama araçları, risk yönetimi araçları ve daha fazlasını içerir! Karşılaşacağınız en gelişmiş forex ticaret yöneticisi ve ticaret asistanlarından biridir! Ticari işlemleri yönetmenin daha verimli bir yolunu isteyen tacirler için mükemmel bir çözümdür. Kullanım kılavuzunu blog yazımızdan indirebilirsiniz:   https://www.mql5.com/en/blogs/post/751180 Bu ticaret sistemini Strateji Test Aracında test edebilirsi
    Çok amaçlı araçlar: Lot hesaplayıcı, fiyat analizi, risk/ödül oranı, pozisyon yönetici, arz  talep bölgelerini de içeren 65'den fazla fonksiyon Deneme sürümü   |   Kullanım Kılavuzu   |   MT5 Yardımcı program, strateji test cihazında çalışmaz: Ürünü test etmek için   Demo Sürümünü BURADAN   indirebilirsiniz. Sorularınız için iletişim İşlem sürecinizi kolaylaştırın, hızlandırın ve otomatikleştirin. Terminalin standart  özelliklerini bu program ile genişletin Yeni işlem açma : Lot / Risk / Risk
    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
    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
    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 Tanıtımı - Sizin için Ticaret Yöneticiniz FX28 Trader Dashboard ile Forex ticaretinizi yeni zirvelere taşıyacak kapsamlı ve sezgisel bir ticaret yöneticisini keşfedin. Deneyimli bir tüccar olun veya finansal yolculuğunuza yeni başlayan biri olun, bu güçlü araç, ticaret faaliyetlerinizi basitleştirmek ve karar alma sürecinizi geliştirmek için tasarlanmıştır. Ana Özellikler: Kullanıcı Dostu Arayüz: FX28 Trader Dashboard, tüm ticaret seviyelerine uygun kullanıcı dostu bir ara
    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
    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
    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 » — 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, 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
    Üye olduğunuz herhangi bir kanaldan Sinyal Kopyalayın (   Bot Token veya Yönetici İzinleri gerekmiyor  düz MT4'ünüze. Kullanıcıyı düşünerek tasarlanmış ve ihtiyacınız olan birçok özellik sunmaktadır Bu ürün, kullanımı kolay ve görsel olarak çekici bir arayüzde sunulmaktadır. Ayarlarınızı özelleştirin ve ürünü dakikalar içinde kullanmaya başlayın! Kullanıcı Kılavuzu + Demo  | MT5 Sürümü | Telegram Sürümü Demo versiyonunu denemek istiyorsanız, Kullanıcı Kılavuzuna bakın. Discord'tan MT4'e gönde
    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
    Yazarın diğer ürünleri
    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
    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:
    Filtrele:
    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. :)

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