• 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
    MT4 to Discord Signal Provider , ticaret sinyallerini doğrudan Discord'a göndermek için tasarlanmış kullanıcı dostu ve tamamen özelleştirilebilir bir araçtır. Bu araç, ticaret hesabınızı etkili bir sinyal sağlayıcısına dönüştürür. Mesaj formatlarını tarzınıza uyacak şekilde özelleştirin! Kolay kullanım için önceden tasarlanmış şablonlardan seçim yapın ve hangi mesaj öğelerini dahil etmek veya çıkarmak istediğinize karar verin. [ Demo ] [ Kullanım Kılavuzu ] [ MT5 Versiyonu ] [ Telegram Versiyonu
    Exp COPYLOT CLIENT for MT4
    Vladislav Andruschenko
    4.7 (61)
    MetaTrader 4 için ticaret fotokopisi.       Herhangi bir hesaptan forex işlemlerini, pozisyonlarını, emirlerini kopyalar. En iyi ticari fotokopi makinelerinden biridir.       MT4 - MT4, MT5 - MT4       için       KOPYLOT MT4       sürüm (veya       MT4 - MT5 MT5 - MT5       için       KOPYLOT MT5       sürüm). MT5 sürümü Tam tanım   +DEMO +PDF Nasıl alınır Nasıl kurulur     Günlük Dosyaları nasıl alınır?     Nasıl Test Edilir ve Optimize Edilir     Expforex'in tüm ürünleri için fotokopi  
    Sunan Giri
    Victor Adhitya
    3 (2)
    Sunan Giri EA by Victoradhitya Risk Disclosure : Futures, Forex, Stock, Crypto and Derivative trading contains substantial risk and is not for every investor. An investor could potentially lose all or more than the initial investment. I am not responsible for any financial losses you may incur by using this EA! ea uses a no martingle strategy or martingale strategy depends on your set every trade always uses a hidden SL EA has back test for 5 years Minimum balance $1000
    FREE
    This EA will help you to automatically put stop loss and take profit for all your orders. Stop loss point and take profit points can be selected in the tab of the input parameters. You can specify three symbols with SL and TP values (you can see symbol1 , symbol2 ... in the input tab below). The EA performs checks. If a new order with symbol1 appears, it puts SL and TP with stoploss1 and takeprofit1 values (in points). If a new order with symbol2 appears, it puts SL and TP with stoploss2 and tak
    Scalping Snake Pro is a unique scalping indicator that shows the trader the price reversal moments and does not redraw. This indicator, unlike many others on the Internet, does not redraw its values. It draws signals on the very first bar, which allows you not to be late with opening deals. This indicator sends notifications to the trader by phone and email when a signal appears. You get all this functionality for only $147. How to trade with this indicator? Open the H1 timeframe. Currency pa
    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 MT4 accounts only. For MT5 accounts, you must use Auto Trade Copier for MT5 . Reference: - For MT4 receiver, please download Trade Receiver Fre
    We present you the indicator "Candle closing counter", which will become your indispensable assistant in the world of trading. That’s why knowing when the candle will close can help: If you like to trade using candle patterns, you will know when the candle will be closed. This indicator will allow you to check if a known pattern has formed and if there is a possibility of trading. The indicator will help you to prepare for market opening and market closure. You can set a timer to create a p
    We do not want to make you confused with an imaginary high profit screenshot from Strategy Tester which has no relation/guarantee of future profit! We just want to tell you the real thing about our EA. TrendEx Pro has been developed to trade on Gold specially, combining multiple strategies algorithm to ensure Trend catching and trading on. It can identify both short and long trends and opens positions accordingly with excellent built-in risk management logic. There is no use of any dangerous met
    Harvest GOLD USES THE TREND WAVE INDICATOR AND IT CAN IDENTIFY THE BEGINNING AND THE END OF A NEW WAVE TREND MOVEMENT. AS AN OSCILLATOR, THE INDICATOR IDENTIFIES THE OVERBOUGHT AND OVERSOLD ZONES. IT WORKS GREAT TO CATCH THE SHORT TERM PRICE REVERSALS AND USES A MARTINGALE STRATEGY TO CLOSE ALL TRADES IN PROFIT. USE DEFAULT SETTINGS ON H1 OR HIGHER TIME FRAME ON ANY PAIR FOR MORE ACCURATE TRADES WHY THIS EA : Smart entries calculated by 3 great strategies The EA can be run on even a $
    "Pattern 123" is an indicator-a trading system built on a popular pattern, pattern 123. This is the moment when we expect a reversal on the older trend and enter the continuation of the small trend, its 3rd impulse. The indicator displays signals and markings on an open chart. You can enable/disable graphical constructions in the settings. The indicator has a built-in notification system (email, mobile terminal, standard terminal alert). "Pattern 123" has a table that displays signals from
    Advanced Stochastic Scalper - is a professional indicator based on the popular Stochastic Oscillator. Advanced Stochastic Scalper is an oscillator with dynamic overbought and oversold levels, while in the standard Stochastic Oscillator, these levels are static and do not change. This allows Advanced Stochastic Scalper to adapt to the ever-changing market. When a buy or a sell signal appears, an arrow is drawn on the chart and an alert is triggered allowing you to open a position in a timely mann
    Description: Please tick "Show object descriptions" in chart properties to enable hrays views That utility converts a trendline into a horizontal ray known as tool for drawing supply and demand zones. Simply create a trendline on a chart and once selected, it will get converted. Ray remains horizontal while dragging.  Quick ray plot: press "R" key to create horizontal ray. It will be snapped to the nearest OHLC value Further versions will be improved. For feature request please post new c
    The Arrow Scalper
    Fawwaz Abdulmantaser Salim Albaker
    1 (2)
    Dear Friend..  I share with you this simple Expert Adviser .. it is full automatic  this Expert Adviser following the trend of the pair you install on or any stocks or indices , it is works like that: - when the trend on H4 chart show a start of up trend the expert will wait till the 15M & 1H charts show an up trend the EA will open a buy order directly , and do the same for down trend and open a sell order the buy or sell  order lot size and take profit and stop loss will measured manually  by
    FREE
    Rira Renko
    Vitor Palmeira Abbehusen
    RENKO on Time Chart This indicator is an enhanced Renko, so you can watch the Renko bricks on the chart to understand price movement more clearly the other improvement is automated box size according to ATR (Average True Range) period you can set the ATR number as you want and the box size of Renko changes automatically based on price movement Inputs Mode: Box size is the input to specify the size of the Renko box you want to print on the chart. This input lets you choose the fixed b
    HIBgRID
    Luca Pulito
    5 (2)
    Follow live performance:   Aggressive settings: https://www.mql5.com/en/signals/564559 Revolutionary hybrid grid: more than 13 years backtest with starting balance as low as 100 dollars - VERY IMPORTANT TO BACKTEST DEMO: please read backtest instruction or ask via PM. Description: The HIBgRID is a Hybrid Grid EA based on the mean-reverting characteristics of the pair GBP/CAD during low volatility and low volume period. The EA utilizes the mathematical principles of a Ornstein–Uhlenbeck process t
    Forex Daily Scalping EA is a professional scalping advisor for daily work on the FOREX currency market. In trading, along with experience, traders usually come to understand that the levels of accumulation of stop orders, price and time play a significant role in the market. Recommend ECN broker with LOW SPREAD: IC Market , Exness, NordFX , FXPRIMUS , Alpari , FXTM PARAMETERS: PRICE - the price distance to be covered in the allotted time period; TIME - time allotted in seconds; HL_PERIOD -
    Magic EA MT4
    Kyra Nickaline Watson-gordon
    3 (1)
    Magic EA is an Expert Advisor based on Scalping, Elliot Waves and with filters such as RSI, Stochastic and 3 other strategies managed and decided with the robot smartly. Large number of inputs and settings are tested and optimized and embedded in the program thus inputs are limited and very simple. Using EA doesn't need any professional information or Forex Trading Knowledge. EA can trade on all symbols and all time frames, using special and unique strategies developed by the author. The EA
    This indicator works on MT4 and is very easy to use. When you receive a signal from it, you wait for that candle with the signal to close and you enter your trade at the beginning of the next new candle . A red arrow means sell and a green arrow means buy. All arrows comes with Alert  like for easy identification of trade signal. Are you okay with that? 1 minute candle 1 minute expire
    MACD Color for GOLD
    Chitipat Changsamrit
    MACD Color for GOLD  Use for looking moving-way of graph and checking will be buy or sell  Easy for looking by see the color of trand. Red is down / Blue is up.  Can to use it with every time-frame by 1. Long Trade : Use it with time-frame H1 /  H4 /  Daily  2.Short Trade : Use it with  time-frame  M5 / M15  / M 30 /  H1 and you can see when you will open or close the orders by see this indicator by well by see signal line cut with color line again in opposite. and you can use this indicator for
    This is the Pro version, which replaces the first Rsi version of Rsi I posted, which has great multipliers, average prices and entry points for all currency pairs. Most importantly, it has the ability to preserve capital for you. I wish you a favorable transaction, reaping many profits Tutorial : Instruction for RSI Pro v1.0 1. Lot 1 st trade: volume for 1 st trade. 2. Max lot: Maximum volume for each trade. 3. DCA Step: Step between 2 trades 4. TP: Example: You have X orders with DCA step
    Intro to ProfitKeeper - Equity Basket CloseAll Script, Free edition This is an update from this script  ( mql4 forum | forexfactory :  There were many people requesting some type of equity monitoring tool that can lock in profits after a pre-determined account equity is reached (e.g. close all open trades when profit target is hit). Profitkeeper was built to fulfill this gap for professional and casual traders looking to focus on the bottom line of their equity. This was designed mainly for cos
    Accuwiser Expert Advisor We have developed a strategy for GOLD which is now available for everyone through Accuwiser Expert advisor. Tight money management and risk management have been applied to this expert. The way we handle losing trades is unique and 3 different methods are applied if any trade goes in loss. Furthermore Entering a trade is time-based and differs in various modes we recommend. Different risk levels which have been provided have no interaction with higher lot size. Only
    "Just copier" is designed to copy trading without any complicated settings. The copy can be done in one PC. One EA can be set as master (provider) or slave (receiver). The receiver lot can be set to multiple providers lots. Please also check this product at fxina.hostingerapp.com.  Any type of copy is available. MT4 -> MT5 MT4 -> MT4 MT5 -> MT5 MT5 -> MT4 If you want to copy MT4 -> MT5 or MT5 -> MT4, please purchase "Just copier" for MT4 and "Just copier" for MT5 separately. Just Copier can copy
    SignalSailor
    Tatiana Savkevych
    The SignalSailor indicator is your reliable assistant in Forex for quick market analysis. It not only reflects the current market condition but also provides valuable signals about the best times to open trades. Market conditions are constantly changing, and to stay ahead, a trader needs to quickly adapt their strategies. This is precisely why the Klaus indicator was created - it will help you accurately determine the direction of the trend on the price chart. SignalSailor is an indispensable
    This is a Virtual Grid EA  with  positive (for traders) slippage. I recommend it for pair EURUSD. EA may be use as Rebate generator. Works ok during news and gaps (with depo >1000$). Working timeframe M1 . Strategy The system does not use regular takeprofits and stop loss. Martingale is not used. EA use unique indicator (for open "Zero"). Monitoring (5EAs) _ https://www.mql5.com/en/signals/508303 Parameters (one of the safest) Rebate Virtual Grid                          MM_Type    0  MM: 0-
    Binary Options Trading Pad is a very useful tool for trading binary options on the MT4 platform. No need to setup plugins outside MT4 anymore. This is a simple and convenient panel right on MT4 chart. Demo: For testing purpose, please download the free demo version here: https://www.mql5.com/en/market/product/9981 Features One-click trading buttons on the panel. Trade multi-binary option symbols in one panel. Auto recognize all binary options symbols. Show order flow with expiration progress. M
    Credible Cross System   indicator is designed for signal trading. This indicator generates trend signals. It uses many algorithms and indicators to generate this signal. It tries to generate a signal from the points with the highest trend potential. The indicator works based on instant price movements. This indicator is a complete trading product. This indicator does not need any additional indicators. The indicator certainly does not repaint. The point at which the signal is given does not
    Elevate your trading experience with   Dynamic Trader EA MT4 , a cutting-edge trading robot designed to optimize your investment strategy. This advanced algorithm harnesses the power of four key indicators:   RSI   ( Relative Strength Index ),   Stochastic Oscillator ,   MACD   ( Moving Average Convergence Divergence ) and   ATR   ( Average True Range ) to make informed and precise trading decisions. ATR is used to dynamically set stop-loss and take-profit levels based on market volatility. IMP
    Perfect for one minutes high trading and scalping. This indicator is very effective for trading on one minutes, in the hour. A combination of moving averages and STOCHASTICS calculation to produce a very convincing signal every hour. Blue colour signals a buy opportunity. Follow the X signs for possible buy points. The Blue average line serves as possible trend direction and support. Red colour signals a sell opportunity. Follow the X signs for possible sell points. The Red average line serves a
    KT Renko Patterns MT4
    KEENBASE SOFTWARE SOLUTIONS
    2.33 (3)
    KT Renko Patterns scans the Renko chart brick by brick to find some famous chart patterns that are frequently used by traders across the various financial markets. Compared to the time-based charts, patterns based trading is easier and more evident on Renko charts due to their uncluttered appearance. KT Renko Patterns features multiple Renko patterns, and many of these patterns are extensively explained in the book titled Profitable Trading with Renko Charts by Prashant Shah. A 100% automate
    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
    Ç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
    Ü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
    TakePropips TradePad Pro
    Eric John Pajarillaga Aldana
    5 (3)
    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
    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
    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
    The Expert Advisor will send notifications via Discord when orders are opened/modified/closed on your MetaTrader 4 account. - Send message and screenshot to Discord group/channel.  - Easy to customize message.  - Support custom message for all languages - Support full Emoji.  - Send report Daily, Weekly, Monthly ( must show all history of orders ) Parameters - Discord url Webhook - create webhook on your Discord channel. - Magic number filter - default all, or input magic number to notify with
    The Expert Advisor will help you forward all pop-up alert with screenshot from  MetaTrader 4 to Telegram channel/ group, also forward all notifications to Telegram. Parameters  -  Telegram Bot Token - create bot on Telegram and get token.  -  Telegram Chat ID  - input your Telegram user ID,  group / channel ID  -  Forward Alert - default true, to forward alert.  -  Send message as caption of Screenshot - default false, set true to send message below Screenshot  How to setup and guide  - Telegram
    News Trader Pro is a unique robot that allows you to trade the news by your predefined strategy. It loads every piece of news from several popular Forex websites. You can choose any news and preset the strategy to trade it, and then News Trader Pro will trade that news by selected strategy automatically when the news comes. News release gives opportunity to have pips since the price usually has big move at that time. Now, with this tool, trading news becomes easier, more flexible and more exciti
    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
    I present to your attention a powerful utility for predicting the future movement of an asset based on W.D. Ganna’s law of vibration. This utility analyzes the selected market model and provides codes for future possible market movement patterns. If you enter the selected code into the appropriate box, you will receive a forecast of the potential market movement. The utility has the ability to display several potential forecast models. The forecast is not yet tied to time and price and gives th
    The Expert Advisor helps manage your account equity. You can set the EA to close all trades at the total account profit or buy/sell line profit or close at a certain predetermined loss percentage… Parameters: Chart Symbol Selection: For Current Chart Only/ All Opened Orders Profit all to close all order USD (0 - not use):  Profit   in money Profit buy to close buy order USD (0 - not use):  Profit     in money Profit sell to close sell order USD (0 - not use):  Profit     in money Loss all to c
    Ü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
    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
    EA for Cycle Sniper Indicator This utility is designed to open/close auto trades according to the Cyle Sniper indicator's signals. Different entry rules  with various stop loss, take profit options can be applied. You will find the details in this blogpost.  https://www.mql5.com/en/blogs/post/749655 Some important issues are explained in the video. Please do not hesitate to contact us if you need further information. IMPORTANT NOTE: You can not test the full functions of the EA on the strategy t
    FREE SIGNAL CHANEL:  https://t.me/redfox_daily_forex_signals Time saving and fast execution Whether you’re traveling or sleeping, always know that Telegram To Mt4 performs the trades for you. In other words, Our   Telegram MT4 Signal Trader  will analyze the trading signals you receive on your selected Telegram channels and execute them to your Telegram to MT4 account. Reduce The Risk Telegram To Mt4   defines the whole experience of copying signals from   Telegram signal copier to mt4  p
    The program is use to copy trading from MT4   to MT4 and MT5  on local PC or copy  over the Internet.   Now you can easy copy trades to any where or share to friends. Only run one Flash Server on VPS, also need allow the apps if you turn on Windows Firewall. Can not add more than 20 account copier to server, include both  MT4 and MT5 Get free Copier EA for MT4 and MT5 (only  receive signal),   download here Instants copy, speed smaller 0.1 seconds, easy to setup How to setup and guide Let read a
    Trade Copier Pro is a tool to copy trade remotely to MT4, MT5 and cTrader accounts at different computers/locations over internet. This is an ideal solution for you if you are a signal provider and want to copy your trades to other receivers globally on your own rules. One provider can copy trades to multiple receivers and one receiver can get trade from multiple providers as well. The provider can even set the subscription expiry for each receiver, so that receiver will not be able to receive t
    What is it? Think about it, you can send all the orders/positions info to your telegram channel or group to create your community or VIP signals on telegram. Position info means this EA forward all of your new positions open details (Open price, Open time, Position Type, position Symbol and volume), positions changes ( SL or TP modifying or pending price changes) and position close (Close price, profit or loss, position duration time) and also EA Send NEWS alert (Economic calendar event) on y
    Trade like a time traveler thanks to latency arbitrage Everyone knows that the best way to make money in the markets is by knowing the future. Have you ever wished to know the future price of something in advance? Even if it were just a few days, hours, or minutes ahead? What if it were possible to know it but with less than a second of advance notice? That's precisely what the PZ Latency Arbitrage EA robot does. PZ Latency Arbitrage EA is your personal time machine: but it can only travel into
    Comprehensive on chart trade panel with the unique ability to be controllable from mobile as well. Plus has a library of downloadable configuration, e.g. exit rules, extra panel buttons, pending order setup and more. Please see our product video. Works with all symbols not just currency pairs. Features On chart panel plus controllable from free app for Windows, iPhone and Android Built-in script engine with library of downloadable configuration, e.g. add 'Close All Trades in Profit' button, exit
    Mentfx Mmanage
    Anton Jere Calmes
    5 (15)
    The added video will show you the full functionality, effectiveness, and simplicity of this trade manager. Drag and Drop Trade Manager. Draw your entry and have the tool calculate the rest. Advanced targeting and close portions of a trade directly available in tool (manage trades while you sleep). Market order or limit order on either side with factored spread. Just draw the entry, the tool does the rest. Hotkey setup to make it simple. Draw where you want to enter, and the stop loss, the tool c
    The Best One Scalping Trade Panel functional manual trade panel with risk reward, auto SL by candle ( original solution), lot size calculation, one-click trading, scale in and out of trades (partial close),  Works with all symbols not just currency pairs, perfect works on DAX, NASDAQ, GOLD, ...... I earn every day during live stream on ZakopiecFX - join Me Risk by lot Risk by percent SL by points SL by Candle, Renko, RangeBar ( original solution) TP by point TP by Risk/Reward Auto Trailing b
    Trade manager  Auto calculates % risk per trade  Manual lot size input  $ Risk amount  Displays profit to loss ratio  Shows value of stop loss and take profit in pips and dollars  Shows Balance equity and open profit and loss  On screen trade entry lines with entry stop loss and take profit . All with lots size , pip value dollar value and  price level of line  The value of these lines is also displayed in the panel  Buttons on panel for  Close Winners, Close all, Execute .  Trade panel has func
    JoyBoy EA advantage: the first support for small capital work EA, real trading more than 4 years; this EA based on volatility adaptive mechanism, only one single at a time, each single with a stop-loss, an average of about 4 orders per day, holding a single length of about 12 hours. This EA does not use Martingale or Grid strategy Makes it safer for your capital. You can also use this EA to pass prop firm Challenges because of its very low drawdowns and stable profits. Support currency: EURNZ
    Click and Go Trade Manager, 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,
    News Trade EA MT4
    Konstantin Kulikov
    4.33 (15)
    Birkaç yıldır kullandığım çok yararlı bir robotu tanıtıyorum. Hem yarı otomatik hem de tam otomatik modlarda kullanılabilir. Program, ekonomik takvim haberlerinde esnek ticaret ayarlarını içeriyor. Stratejiler test cihazında kontrol edilemez. Sadece gerçek bir iş. Terminal ayarlarında, haberler sitesini izin verilen URL'ler listesine eklemeniz gerekir. Servisler > Araçlar > Danışmanlar'a tıklayın. "Aşağıdaki URL'ler için WebRequest'e İzin Ver:" kutucuğunu işaretle. Aşağıdakini ekleyin (boşluğ
    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.