• Übersicht
  • Bewertungen (3)
  • Diskussion (40)
  • Neue Funktionen

Excel to Orders for MT5

5

Why do you need this script?

If you have lots of analyzed orders in Excel where need to be placed on MT5 , this script will be very handy and time saver for you.

All your orders are processed in seconds and your order's results are written to an output file.

How it works?

1. Prepare  .xls file and save it as

...MQL5\Files\Excel_to_Orders.csv

Input csv structure:

    1. Ref no (string) [ free format unique ref no , it is up to you. ]
    2. Symbol (string)
    3. Cmd (string) [ BUY , SELL  , BUY_LIMIT , SELL_LIMIT , BUY_STOP , SELL_STOP , BUY_STOP_LIMIT , SELL_STOP_LIMIT ]
    4. Volume (double)
    5. Price (double)
    6. Slippage (int)
    7. Stoploss (double)     0 (Zero):Means No Stoploss value 
    8. Takeprofit (double)  (Zero):Means No Takeprofit value 
    9. Comment (string)
    10. Magic (int)
    11. Stoploss Pips (int)     (Zero):Means No Stoploss value calculation
    12. Takeprofit Pips (int)  (Zero):Means No Takeprofit value calculation
    13. Stop Limit (double)   valid for only BUY_STOP_LIMIT , SELL_STOP_LIMIT orders.
    14. Expire Datetime (string)  valid for only Pending Orders  , 9999.mm.dd hh:mm  : means NO Expire Datetime.

Download Sample File

Input Sample:

Ref no (String);symbol (string);cmd (int);volume (double);price (double);slippage (int);stoploss (double);takeprofit (double);comment (string);magic (int);slPips (int);tpPips (int);stopLimit(double);expireDatetime (string)

ref101;EURUSD;BUY;0.01;0;5;1.09;1.12;my eur comment;35600;200;200;0;2000.01.01 11:11

ref102;EURUSD;SELL;0.02;0;5;1.12;1.09;my eur comment;35601;300;300;0;2000.01.01 11:11

ref103;EURUSD;BUY_LIMIT;0.01;1.1;5;1.09;1.12;my eur comment;35602;400;400;0;9999.01.01 11:11

ref104;EURUSD;SELL_LIMIT;0.02;1.12;5;1.14;1.09;my eur comment;35603;500;500;0;2000.01.01 11:11

ref105;EURUSD;BUY_STOP;0.01;1.13;5;1.11;1.14;my eur comment;35604;600;600;0;2000.01.01 11:11

ref106;EURUSD;SELL_STOP;0.02;1.09;5;1.11;1.07;my eur comment;35605;700;700;0;2021.07.17 21:31

ref107;USDRUB;BUY;0.02;0;5;0;0;this ruble ;35605;5000;7000;0;2000.01.01 11:11





2. Run

Excel to Orders

script on any currently opened chart window in your terminal.

After initiating the script , your records are processed one by one and result .csv file is created in the same sub-directory of MT5

...MQL5\Files\Excel_to_Orders_Results.csv

Result csv structure:

  1. Ref no (string)
  2. Symbol (string)
  3. Cmd (int)
  4. Volume (double)
  5. Price (double)
  6. Slippage (int)
  7. Stoploss (double)
  8. Takeprofit (double)
  9. Comment (string)
  10. Magic No(int)
  11. Stoploss Pips (int)      
  12. Takeprofit Pips (int)   
  13. Stop Limit (double)  
  14. Expire Datetime (string)   
  15. Ticket (int)
  16. Error Code (int)
  17. Error Description (string)

Last 3 columns are appended at the end of your input record.

Output Sample:

Ref no (String);symbol (string);cmd (int);volume (double);price (double);slippage (int);stoploss (double);takeprofit (double);comment (string);magic (int);slPips (int);tpPips (int);stopLimit(double);expireDatetime (string);Ticket (int);Error code (int);Error description (string)

ref101;EURUSD;BUY;0.01;0;5;1.09;1.12;my eur comment;35600;200;200;0;2000.01.01 11:11;0;10016;Invalid stops

ref102;EURUSD;SELL;0.02;0;5;1.12;1.09;my eur comment;35601;300;300;0;2000.01.01 11:11;0;10016;Invalid stops

ref103;EURUSD;BUY_LIMIT;0.01;1.1;5;1.09;1.12;my eur comment;35602;400;400;0;9999.01.01 11:11;1018720324;10009;Request executed

ref104;EURUSD;SELL_LIMIT;0.02;1.12;5;1.14;1.09;my eur comment;35603;500;500;0;2000.01.01 11:11;0;10015;Invalid price

ref105;EURUSD;BUY_STOP;0.01;1.13;5;1.11;1.14;my eur comment;35604;600;600;0;2000.01.01 11:11;0;10015;Invalid price

ref106;EURUSD;SELL_STOP;0.02;1.09;5;1.11;1.07;my eur comment;35605;700;700;0;2021.07.17 21:31;1018720330;10009;Request executed

ref107;USDRUB;BUY;0.02;0;5;0;0;this ruble ;35605;5000;7000;0;2000.01.01 11:11;0;10016;Invalid stops



3. You may open your result file

...MQL5\Files\Excel_to_Orders_Results.csv

with excel to view the return codes of your order records.

Please report any bug issue or free of charge development request (volkanyurci@gmail.com) upon your needs.


Bewertungen 3
Percy Diego Zeballos Rico
230
Percy Diego Zeballos Rico 2023.03.03 17:03 
 

Excellent product, super practical, easy to understand. It works perfectly. Thanks to the author. It really helps the operation a lot. Thank you 5*

surya sastrawan ida bagus
23
surya sastrawan ida bagus 2022.04.28 08:55 
 

You know what? This script save me 1 hour every morning, my alghorithm produce a lot of pending orders on 6 pairs and manually it took me nearly 1 hour to input all those orders, with this script all those down to only 5 minutes!!! God you save me Volkan Yurci, thanks a lot man!

Harold Tsai
31
Harold Tsai 2022.03.29 19:09 
 

Work perfectly. Really appreciate it!

Empfohlene Produkte
Close ALL MT5
Evgenii Aksenov
This is a simple and very effective utility for closing orders with one click. You will need it if you have a number of open orders on your balance and it takes too long to close them manually, which might lead to an extra loss of money on the account. The utility consists of an external panel with two buttons " Close by Filter"   and " Close ALL" , which is convenient to move around the graph. You can set the Close ALL utility so that orders are closed as soon as the specified profit or loss va
FREE
Deal multiplier Mt5
Mikhail Mitin
4.43 (7)
The utility opens copies of open trades. It is very convenient if you use the   Signals   service and want to increase the volume of transactions. Settings: Symbols: all symbols only current symbol Orders: Buy Sell Magic Any Magic Input Magic Lot size Original - lot size from original order; Fix Lot - fix lot size (input); Lot X Mult - lot size X koef; Stop Loss From sender - Stop Loss from original; Without - without Stop Loss; Plus Fix - Stop Loss from original order + fix points; Fix Point
FREE
Reverse
Konstantin Chernov
3.33 (3)
A script for quick reversing positions and/or orders. If you need to reverse a position with the same volume, open an opposite position of a different volume, this script will save you from routine! Allow AutoTrading before running the script. Instructions: Run the script on the chart. This script is a limited version of the market product https://www.mql5.com/en/market/product/638 and allows reversing only positions. Input parameters are not required. Parameters such as changing the type of exi
FREE
Correlation for SH
Vladimir Khlystov
5 (1)
Script for quickly selecting a tool with high correlation. The script is placed on the tool to which you need to select the second correlating one. Then you can change the number of bars to calculate and the timeframe. The script iterates through all available symbols in the market overview and returns the 20 most correlated ones. You can use the selected pairs to trade with THE new SH expert Advisor
FREE
Presentation The URL html and xml to csv is designed to get contents from URLs with html or xml content, and to download it to an output format as a txt or as a csv file. It enables to get the whole web sites page, starting with the http protocol, in a document for a further use and in additional with downloading directly on the MetaTrader applications and on the desktop. It is a good advantage for taking the most data from events and economic calendars, and also publications related to the inst
FREE
ZoomIN MT5
Maxim Polishchuk
5 (4)
The ZoomIN MT5 indicator is designed for quickly viewing the selected bar on the smaller timeframes in a pop-up window. Once launched, the indicator works in the background, does not take up space on the chart and does not consume system resources. When the indicator is activated by the Shift + i combination (can be changed in the settings), a pop-up window with a chart of a smaller timeframe is created. The displayed timeframe can be changed by a left-click on the magnifying glass icon. To hide
FREE
This indicator is especially for the binary trading. Time frame is 1 minutes and exp time 5 or 3 minutes only. You must be use martingale 3 step. So you must put lots size is 10 % at most. You should use Mt2 trading platform to connect with my indicator to get more signal without human working. This indicator wining rate is over 80% but you may get 100% of profit by using martingale 3 step. You should use MT2 Trading Platform to connect meta trader platform and binary platform . You can get mt2
FREE
AQ RiskOptimizer MT5
HIT HYPERTECH INNOVATIONS LTD
Risk Optimizer is the absolute solution for applying risk management on your account. Bad risk management is the main reason that causes traders to lose money. Risk Optimizer calculates and suggests the correct lot size for each position according to your personal, customized risk profile. You can give directly your preferred risk as percentage (%) for each position or you can trust our algorithms to calculate and optimize according to your risk category selection. But it is not only that! Selec
FREE
Account Summary MT5
Ziheng Zhuang
4.67 (3)
This is a MetaTrader 5 script. It helps to summarize all trades into every symbol. Input Select Period: This is 7-option input. It includes Last Month, This Month, Last Week, This Week, Today, All History, and Date Specified. Specify Starting Date: Enter a date if you selected Date Specified in "Select Period" input. Specify Ending Date: Enter a date if you selected Date Specified in "Select Period" input. The summary is saved into a file in MQL5\Files folder. MT4 Version:   https://www.mql5.c
FREE
Auto Create Limit Orders
Ali Gokay Duman
5 (1)
You can use this tool to create as many pending orders (limit order) as you want in one button press. All inputs must be in points. You can use this useful tool when such as FED speech times. User Inputs: MagicNumber = Magic number DeviationPoint = Deviation point number for limit orders Level = You can choise how many level do you want to create pending orders. BuyOrder = true/false SellOrder = true/false StartDistance = Distance between each level. StepDistance = Distance to be added incremen
FREE
Know the Candle Close Time
Benbyaanda Silvere Henri Sedric Kabore
This indicator allows to know the remaining time before the closing of the candle. It works on every timeframe. It is very usefull when your trading strategy depend of the close or the open of a specific candle. So use it like you want. Don't forget to leave a comment or a request for a EA or an indicator. Also spread it to your friends and don't hesitate to visit my profile to see others tools.
FREE
Calc for MT5
Radim Kucera
4.88 (8)
This indicator is designed to provide all useful information about symbol, account, positions and profit. It is developed for improving trader's money management. Parameters Calc can be divided to separate blocks. Each block is possible to hide, set its own color and other properties. Block symbol: This block displays information about actual SPREAD, POINT VALUE (in deposit currency for 1 lot), SWAP LONG and SHORT. Show symbol info - display/hide this block Color of symbol info - color of this
FREE
Forex Calculator ist ein Muss für jeden Trader. Mit diesem Skript können Sie das prozentuale Risiko einer Einzahlung in Abhängigkeit vom eingestellten Stop-Loss in Pips berechnen. Mit einem Forex-Rechner können Sie das Risiko leicht berechnen, bevor Sie ein Geschäft eröffnen. Die Informationen werden als Popup-Fenster angezeigt, das das erforderliche Los für die Eröffnung eines Geschäfts anzeigt. Auf diese Weise sparen Sie Zeit bei Berechnungen und können sich beim Öffnen eines endgültigen
FREE
Account Info Free for MT5
Denis Zyatkevich
4.5 (2)
Overview The script displays information about the trade account: Information about the trade account: Account - account number and type (Real, Contest or Demo); Name - name of the account owner; Company - name of a company that provide the access to trading; Server - trade server name; Connection State - connection state; Trade Allowed - shows whether trading is allowed on the account at the moment; Experts Allowed - shows whether it is allowed to trade using Expert Advisors; Balance - account
FREE
Export Deals to CSV - Excell File location: HistoryDeals/<SERVER>/<LOGIN>.<DATETIME>.csv Works as an Script, reading all DEALS in history and exporting it as a plain text CSV file There's no option to change. There's no WebRequest. There's no DLL use. I need to write 300 characters to allow this product being exposed at MQL5 market place. It's simple to use, plug it in graph and wait completion.
FREE
One Click MT5
Marzena Maria Szmit
One Click Close MT5 is an EA which allows you close orders quickly. EA display on chart two buttons. The first button "Close All Positions" is using to close all opened orders. The second button "Close Profit Positions" is using to close only profitable orders. EA is closing orders for all available symbols, not only for chart symbol. In EA params you can set distance from upper chart frame (Y Offset) and from left chart frame (X Offset). For installation EA it is only need to copy One Click Clo
FREE
TradeHistoryParsing
MetaQuotes Ltd.
3.5 (2)
The TradeHistoryParsing is a utility for working with the trade history obtained from the MetaTrader 5 terminal. The product is based on the " RegularExpressions in MQL5 " library. It allows to quickly get the required data on your trading history. The filtering results are displayed as a table, a summary of mathematical statistics is provided below the table. Working with the tool Export the trade report as an html file and place it into the "sandbox". After that, when launching the EA, speci
FREE
Current Price
Keni Chetankumar Gajanan -
5 (1)
Current Price  shows the Bid or Ask in custom size at a specified location on the chart. The functionality included are: Allows the option to show current spread with the price. Option to show or hide the last digit (pipette) from price. Show the last digit as a superscript. Customizable font and size. Display the price in custom bullish and bearish color. Position the text on a specified window or location on the chart. Product Links: MT4 version Please note: The indicator will show error
FREE
CT Script
Achmad Hidayat
This utility for MT5, for MT4 you can get here . This script is useful for getting information about the correlation (whether positive or negative) between all 28 forex instruments. It also provides information about the Average Daily Range (ADR) for each instrument. You can set the time frame, the amount of data, the type of data used (there are 5 options : Median, Typical, Weighted, HLOC/4 and Stochastic), the level of correlation and color. To use this EA you should attach it on any chart
FREE
Regua MT5
Edgar Lima Uggioni
5 (2)
Convenient tool for measuring the number of points between the prices directly on the chart. Displays in the measurement between points in percentage, points (financial) and time (bars ). Compatible with all graphical timeframes. When fixed on the chart is displayed in all timeframes. Press Ctrl, click the first point, move the mouse and will now display the measurement. Click again and fix. Very fast tool that does not occupy much space. Input Parameters Line Color Line Style Text Color Text Si
FREE
Session Timer
Keni Chetankumar Gajanan -
4 (3)
Session Timer  shows the current time in major markets. The selectable cities with its session timings are: City Abbr. Open Close Sydney SYD 7 or 8 AM 4 or 5 PM Tokyo TKY 9 AM 6 PM Frankfurt FFM 8 AM 5 PM London LON 8 AM 5 PM New York NYC 8 AM 5 PM The functionality included are: Handles Daylight savings (DST) update for the cities. Highlights the opening and closing of markets by custom color. Shows the market closure on the weekend with a custom color. Selection to show time with per second up
FREE
The utility is designed for two purposes: Automatic setting of stop loss and take profit levels. Automatic modification of stop loss and take profit levels when a certain profit is reached. Application: When the utility is started, the default values are configured as follows. Stops type:  Default Manual Automatic on/off level moving   - enable/disable moving levels with the price. (true) when begin move tp/sl levels  -  the number of points missing until the take profit level. (25 points) De
FREE
LT Pointer Sync
Thiago Duarte
5 (1)
Pointer Sync is a pointer synchronizer between open charts. It makes the MT5 cross (activated by the middle mouse button) to be replicated on all open charts. In addition, it is possible to create horizontal lines (letter H) and vertical lines (letter V), very useful for studying. The appearance of the lines is customizable. It is a simple and free utility. Enjoy! This is a free indicator, but it took hours to develop. If you want to pay me a coffee, I appreciate a lot   <3 PayPal, Skrill, Net
FREE
Hidden V0lume MT5
Christian Ricard
This indicator allows to hide Volume (on all MT5 timeframes) from a date define by the user with a vertical line (Alone) or a panel (with "Hidden Candles").  The color of each bar depends if this one is higher or lower of the previous bar. Indicator Inputs: No inputs for this indicator Information on "Volume" indicator is available in this post:   https://www.mql5.com/en/forum/134260 ************************************************************* Hey traders!!  Give me your feeds!  We are a commun
FREE
Quick Style MT5
Maxim Polishchuk
5 (7)
The Quick Style utility is designed for facilitation and acceleration of working with the properties of graphical objects. Left-click a graphical object while holding the Shift key to open the quick access window for configuring the object properties. In the window, you can change the color, style and line width with one click, including those of other graphical objects. All changes are displayed immediately. To close the Quick Style , simply click the free space on the chart. The utility is eas
FREE
Data Downloader For MT5
Mounir Cheikh
4.67 (3)
This tool will allow you to export the Historical data (Open, High, Low, Close, Volume) for any financial instrument present in your MetaTrader 5. You can download multiple Symbols and TimeFrames in the same csv file. Also, you can schedule the frequency of download (every 5 minutes, 60 minutes, etc.). No need to open a lot of charts in order to get the last data, the tool will download the data directly. The CSV File will be stored in the folder: \MQL5\Files . How it works Select the Symbols
FREE
Slippage Calculator
BM Trading GmbH
4.63 (8)
Wenn Du Scalping-Strategien verwendest (oder irgendeine Strategie, die Stop-Orders zum Öffnen oder Schließen von Positionen verwendet), musst Du deine Slippage kennen. Slippage ist die Differenz zwischen dem Preis deiner Pending Order und dem Preis, den dein Broker zur Ausführung deiner Order verwenden. Dies kann sehr unterschiedlich sein und hängt sowohl vom Broker als auch von den Marktbedingungen (Nachrichten, Handelszeiten usw.) ab. Mit diesem kleinen Skript kannst Du die von Dir "bezahlt
FREE
VR Close Orders MT5
Vladimir Pastushak
1 (1)
The VR Close orders script is designed to close positions in the terminal at a profit or loss mark set by the trader. The program is written as a script and can work together on the same chart with any other indicators and expert advisors. The program has a simple visual panel and is easy to configure with the mouse. With this program's help, the trader can automatically close positions and delete orders depending on the conditions set.  There is often a situation when you need to close position
FREE
Simple countdown indicator for the next candle. Only claim is to be light! The indicator inserts a text object to the right of the current price and calculates how much time is left for the new bar, showing this to the trader. Leave your comment if the indicator helped you in any way! If you have any suggestions, let me know to evaluate the improvements. Success and Good Trades!
FREE
Ofir Notify is a tool which send alerts on trades to Telegram Alert on any event concerning a position : Opening, Closing, modification (SL, TP) Send alerts to Chats, Groups and Channel Alert on Equity change Display Risk, Reward and progress of profit/lost for each position Customization of alerts Sending charts screenshots with alerts Send signals from your indicators or experts Multi-lingual More info in my Blog Ofir Notify Setup instruction Open Telegram and search for "BotFather" Type
FREE
Käufer dieses Produkts erwarben auch
Trade Assistant MT5
Evgeniy Kravchenko
4.53 (102)
Sie hilft bei der Berechnung des Risikos pro Handel, der einfachen Einrichtung einer neuen Order, der Orderverwaltung mit Teilschließungsfunktionen, Trailing-Stop von 7 Typen und anderen nützlichen Funktionen. Achtung, die Anwendung funktioniert nicht im Strategietester. Sie können die Demoversion auf der Beschreibungsseite herunterladen  Manual, Description, Download demo Linienfunktion Zeigt auf dem Chart die Eröffnungslinie, Stop Loss, Take Profit. Mit dieser Funktion ist es einfach, eine
50 USD
Forex Trade Manager MT5
InvestSoft
4.95 (86)
Denken Sie, dass in Märkten, in denen sich der Preis in Sekundenbruchteilen ändern kann, die Auftragserteilung so einfach wie möglich sein sollte? Wenn Sie im Metatrader eine Order eröffnen möchten, müssen Sie ein Fenster öffnen, in dem Sie den Eröffnungskurs, Stop-Loss und Take-Profit sowie die Größe der Transaktion eingeben müssen. Beim Handel an den Finanzmärkten ist die Verwaltung Ihres Kapitals unerlässlich, um Ihre Ersteinzahlung zu erhalten und zu vervielfachen. Wenn Sie also eine Order
99 USD
TradePanel MT5
Alfiya Fazylova
4.88 (52)
Trade Panel ist ein multifunktionaler Handelsassistent, mit dem Sie schnell und bequem Geschäfte abschließen und Aufträge kompetent verwalten können. Das Dienstprogramm enthält mehr als 50 Funktionen für den Handel und ermöglicht es Ihnen, die meisten Handelsaktionen zu automatisieren. Sie müssen das Risiko nicht vor jedem Trade berechnen, das Dienstprogramm berechnet alles selbst. Sie geben nur einmal den Risikoprozentsatz an, das Dienstprogramm wendet dieses Risiko für jeden Trade an und wählt
75 USD
Fast Copy MT5
Pavel Kolchin
4.72 (75)
Das Programm ermöglicht es Ihnen, Transaktionen zwischen verschiedenen MetaTrader 4- und MetaTrader 5-Konten in jede Richtung und Menge so schnell und einfach wie möglich lokal zu kopieren - eine intuitive Benutzeroberfläche ermöglicht es Ihnen, die Haupteinstellungen des Programms schnell zu verstehen, ohne zusätzliche Beschreibungen lesen zu müssen, und leistungsstarke Funktionen wird die Nachfrage auch eines anspruchsvollen Benutzers befriedigen. Das Programm ist so konzipiert, dass es auf "W
55 USD
Mentfx Mmanage mt5
Anton Jere Calmes
5 (3)
Drag and Drop Trade Manager. Draw your entry and have the tool calculate the rest. Advanced targeting and close portions of a trade directly available in tool (manage trades while you sleep). Market order or limit order on either side with factored spread. Just draw the entry, the tool does the rest. Hotkey setup to make it simple. Draw where you want to enter, and the stop loss, the tool calculates all necessary risk with your desired % risk. Check out the video for a breakdown of how it looks
300 USD
Local Trade Copier EA MT5
Juvenille Emperor Limited
5 (28)
Local Trade Copier EA MT5   ist der schnellste und am einfachsten zu bedienende Handelskopierer mit einer schnellen Einrichtung von 1 Minute! Es kopiert Transaktionen zwischen zwei oder mehr MetaTrader-Terminals, die auf demselben   Windows-Computer   oder   Windows-VPS   installiert sind.   Local Trade Copier EA MT5   kann auch als Signal-Lot-Size-Multiplikator fungieren, wenn Sie die Losgröße Ihres Signal-Abonnements erhöhen möchten. Tipp: Sie können die Demoversion von Local Trade Copier EA
50 USD
Advanced trading tool: One click smart orders that execute under your conditions Developed by trader for trading community:  position size calculator (lot size), open position after price action, strategy builder, set and forget trading, mobile notifications... Risk Management -  Risk percentage position size calculator, gain percentage, target risk reward ratio, spread and commissions are included in calculations 7 Advanced order types  - Set and forget trading with price action automation (O
118 USD
Trade Assistant 38 in 1
Makarii Gubaydullin
5 (5)
Multifunktionswerkzeug: 65+ Funktionen, einschließlich: Lot-Rechner, Price Action, Risiko/Gewinn-Verhältnis, Trade Manager, Angebot und Nachfrage Zonen Demo version   |   Anwenderhandbuch   |    MT4 Das Dienstprogramm funktioniert nicht im Strategietester: Sie können die Demoversion HIER herunterladen, um das Produkt zu testen. Bei Fragen   kontaktieren   Sie mich / Verbesserungsvorschläge / im Fall eines gefundenen Fehlers Vereinfachen, beschleunigen und automatisieren Sie Ihre Handelsprozesse
139 USD
MT5 to Telegram Signal Provider   is an easy to use fully customizable utility that allows sending of   specified   signals to Telegram’s chat, channel or group, making your account a   signal provider. Unlike most competing products, it uses no DLL imports. MT4 Version:  https://www.mql5.com/en/market/product/63550 Check out my new   Order Manager Utility:   https://www.mql5.com/en/market/product/95716 Setup A step by step user guide is available at:   https://www.mql5.com/en/blogs/post/74
59 USD
The product will copy all telegram signal to MT5 ( which you are member) , also it can work as remote copier.  Easy to set up, copy order instant, can work with almost signal formats, image signal,  s upport to translate other language to English Work with all type of channel or group, even channel have "Restrict Saving Content", work with  multi channel, multi MT5 Work as remote copier: with signal have ticket number, it will copy exactly via ticket number. Support to backtest signal. How to s
219 USD
The Ultimate Tool for the Trader
Carlos Rodriguez Pivko
1 (1)
Grüße, Mithändler. Trading ist ein schwieriger Job, und wir Trader bei Prop Firms kennen ihn gut. Herausforderungen, durch die wir navigiert sind, unzählige Stunden der Chartanalyse und Strategieverbesserung, Frustration über gescheiterte Herausforderungen und die schiere Freude über die erste Zahlung. Unsere Bemühungen haben uns zu dem gemacht, was wir heute sind: die besten 0,2 % der Trader der Welt. Herzlichen Glückwunsch, Sie sind bei uns genau richtig, wenn Sie Teil dieser ausgewählten Grup
1 200 USD
Seconds Chart — timeframes in seconds for MetaTrader 5 The utility allows you to create charts in the MetaTrader 5 terminal with a timeframe in seconds. The data is sampled based on the same principle as during the plotting the standard charts, but with seconds period. You can apply indicators, Expert Advisors and scripts to the resulting chart. You get a fully functional chart on which you can work just as well as on a regular chart. The timeframe in seconds is built not only in real time, but
360 USD
Trade Assistant GS mt5
Vasiliy Strukov
5 (4)
Das Trading-Panel beschränkt sich auf die Verwaltung von Orders – sowohl geöffnet über Schaltflächen als auch vom Benutzer geöffnet. Einfach und bequem in der Collection. Wird jeden Käufer ergänzen. Ich empfehle, es zusammen mit dem Gold Stuff Indikator zu verwenden. Richten Sie den Handel als Einzelaufträge ein und bauen Sie ein Raster mit Abstand auf. Um ein Standardraster zu erstellen, stellen Sie einfach einen großen Abstand ein, z. B. 10000. Echtzeit-Ergebnisse können hier eingesehen wer
50 USD
VirtualTradePad One Click Trading Panel
Vladislav Andruschenko
4.74 (53)
Trading Panel für den Handel mit 1 Klick. Arbeiten mit Positionen und Aufträgen! Handeln vom Chart oder von der Tastatur. Mit unserem Trading-Panel können Sie mit einem Klick vom Chart aus handeln und Handelsoperationen 30-mal schneller ausführen als die Standard-MetaTrader-Steuerung. Automatische Berechnungen von Parametern und Funktionen, die einem Händler das Leben erleichtern und einem Händler helfen, seine Handelsaktivitäten viel schneller und bequemer durchzuführen. Grafische Tipps und
50 USD
Trade copier MT5
Alfiya Fazylova
4.4 (15)
Trade Copier ist ein professionelles Dienstprogramm zum Kopieren und Synchronisieren von Trades zwischen Handelskonten. Das Kopieren erfolgt vom Konto / Terminal des Lieferanten auf das Konto / Terminal des Empfängers, das auf demselben Computer oder vps installiert ist. Vor dem Kauf können Sie die Demoversion auf einem Demokonto testen. Demoversion hier . Vollständige Anweisungen hier . Hauptfunktionalität und Vorteile: Unterstützt das Kopieren von MT5> MT5, MT4> MT5, MT5> MT4, einschließlich M
45 USD
Easy Order PRO MT5
Yoshiki Takeuchi
5 (2)
Überblick MOVE LINE LINE, LOT werden automatisch berechnet, indem sie den Verlustkürzungsbetrag ausfüllen. Nach acht Währungen können berechnet werden (USD, EUR, GBP, JPY, AUD, NZD, CHF, NZD) Es kann ein fester Betrag oder Verhältnis des Guthabens ausgewählt werden. Berechnen Sie die Risikobelohnungen. Marktreihenfolge, Begrenzungsreihenfolge und Stoppreihenfolge werden automatisch angewendet. Unterstützt FX, CFD und Kryptowährung. Aufmerksamkeit "Demo gratis" funktioniert nicht. Sie können d
30 USD
Auto Trade Copier for MT5
Vu Trung Kien
4.25 (16)
Auto Trade Copier MT5 is designed to copy trades between multiple MT4/MT5 accounts/terminals with 100% accuracy. The provider and receiver accounts must be on the same PC/VPS. With this tool, you can act as either a provider (source) or a receiver (destination). All trading actions will be copied from the provider to the receiver with no delay. This version can be used on MT5 accounts only. For MT4 accounts, you must use Auto Trade Copier. Reference: If you need to copy between different locatio
79 USD
Equity Shield mt5
Vladimir Stepanov
5 (2)
Der Expert Advisor schützt Ihr Konto vor unerwarteten Verlusten, indem er das Eigenkapital ständig überwacht und die Regeln gemäß den Eingaben in den Parametern befolgt.   Wenn die Regeln verletzt werden, schließt der EA alle Trades.   Sie können den EA so einstellen, dass er alle Trades bei einem bestimmten Prozentsatz oder Geldverlust schließt oder bei einem bestimmten Prozentsatz oder Geldgewinn schließt.   Dieses Dienstprogramm ist sehr nützlich für Prop-Trading-Herausforderungen, um den Dr
30 USD
Everything for chart Technical Analysis indicator mt5 in one tool Draw your supply demand zone with rectangle and support resistance with trendline and get alerts to mobile phone or email alert -  Risk reward indicator mt5 Video tutorials and manuals   here .  Find contacts on my   profile . 1.   Extend rectangle and trendline into future -  Trend Support Resistance Object will be extended into future when price will draw new candlesticks on chart. This is rectangle extender or trendline exte
98 USD
The top-selling EAs on the market cost a lot and one day they are suddenly gone. This is because one strategy will not work in the forex market all the time. Our product is unique from all others in the MQL Marketplace because our EA comes with 34+ built-in indicators that allow adding more strategies every time.  You build your strategy and keep updating it. If one strategy does not work, simply build another all using only one EA. This is All-In-One EA in this market place. You can use as trad
55 USD
Ultimate Trailing Stop EA MT5
BLAKE STEVEN RODGER
5 (1)
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 (overri
100 USD
Risk Manager for MT5
Sergey Batudayev
5 (4)
Expert Advisor Risk Manager für MT5 ist ein sehr wichtiges und meiner Meinung nach notwendiges Programm für jeden Trader. Mit diesem Expert Advisor können Sie das Risiko in Ihrem Handelskonto kontrollieren. Die Risiko- und Gewinnsteuerung kann sowohl monetär als auch prozentual erfolgen. Damit der Expert Advisor funktioniert, hängen Sie ihn einfach an das Währungspaardiagramm an und legen Sie die akzeptablen Risikowerte in der Einzahlungswährung oder in % des aktuellen Guthabens fest. Ber
55 USD
Strategy Builder offers an incredible amount of functionality. It combines a trade panel with configurable automation (covert indicators into an EA), real-time statistics (profit & draw down) plus automatic optimization of SL, TP/exit, trading hours, indicator inputs. Multiple indicators can be combined into an single alert/trade signal and can include custom indicators, even if just have ex4 file or purchased from Market. The system is easily configured via a CONFIG button and associated pop-u
199 USD
The product is used to trade base on Alert signal from Tradingview with support of an application "Tradingview To MetaTrader". You can download the Demo version on the description   page Easy to setup, simple format with custom keyword, do not need to open Internet browser to get alert Allow g et   popup alert   from one or more   Tradingview account All option to management orders as trailing stop, breakeen, partial close, time filter, news filter ... Option to auto open grid orders How to setu
149 USD
Cerberus Equity Watcher
Samuel Bandi Roccatello
5 (1)
Cerberus the Equity Watcher ist ein Risikomanagement-Tool, das Ihren Kontowert ständig überwacht und größere Drawdowns verhindert, unabhängig davon, ob sie durch fehlerhafte EAs oder Emotionen verursacht werden, wenn Sie ein diskretionärer Trader sind. Es ist äußerst nützlich für systematische Händler, die sich auf EAs verlassen, die Fehler enthalten oder unter unerwarteten Marktbedingungen möglicherweise nicht gut abschneiden. Cerberus ermöglicht es Ihnen, einen Mindestwert Ihres Kontos und
50 USD
YuClusters
Yury Kulikov
4.93 (43)
Attention: You can view the program operation in the free version  YuClusters DEMO .  YuClusters is a professional market analysis system. The trader has unique opportunities to analyze the flow of orders, trade volumes, price movements using various charts, profiles, indicators, and graphical objects. YuClusters operates on data based on Time&Sales or ticks information, depending on what is available in the quotes of a financial instrument. YuClusters allows you to build graphs by combining da
225 USD
Trade Copier Pro MT5
Vu Trung Kien
3.67 (3)
Trade Copier Pro MT5 is a tool to copy trade remotely between multiple MT4/MT5 accounts at different computers/locations over internet. This is an ideal solution for signal provider, who want to share his trade with the others globally on his 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 the signal after
149 USD
Drawdown Limit EA Prop Firm trading MT5 If you found this EA, it's probably because you want to get a funded account with a prop firm, but you see a rule that most of traders fear : Maximum Daily Drawdown.  I've been through this problem myself as I'm a prop firm trader and I've made a bot to solve this rule, and you can get it to solve this problem too. How does it work ? When you first setup this EA, you need to input the initial deposit which corresponds to the size of your funded accoun
50 USD
Grid Manual MT5
Alfiya Fazylova
4.67 (6)
Grid Manual ist ein Trading-Panel zum Arbeiten mit einem Raster von Orders. Das Dienstprogramm ist universell, verfügt über flexible Einstellungen und eine intuitive Benutzeroberfläche. Es arbeitet mit einem Raster von Aufträgen nicht nur in Richtung Verlust, sondern auch in Richtung steigender Gewinne. Der Händler muss kein Orderraster erstellen und pflegen, all dies wird von "Grid Manual" erledigt. Es genügt, eine Order zu eröffnen und das "Grid Manual" erstellt automatisch ein Orderraster daf
80 USD
Unlimited Trade Copier Pro MT5 is a tool to copy trade remotely between multiple MT4/MT5 accounts at different computers/locations over internet. This is an ideal solution for signal provider, who want to share his trade with the others globally on his 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 the sig
299 USD
Weitere Produkte dieses Autors
System is using Named Pipes concept. Excel communicates with Metatrader via Named Pipes of Windows. You can send your orders (created in Excel) directly to Metatrader and get the response of them instantly. No RTD , No 3rd Party Application , No Latency , No Buffering. Just pure VBA on Excel & Mql4 Script on Metatrader. Any modification can be done according to your requests. If you interested in such a system , Please contact with me. volkanyurci@gmail.com With the purchase of the application y
FREE
Excel to Orders
Volkan Yurci
4.25 (4)
Why do you need this script? If you have lots of analyzed orders in Excel where need to be placed on MT4 , this script will be very handy and time saver for you. All your orders are processed in seconds and the your order's results are written to an output file. Please also see my other product's video.     Send Orders from Excel to Metatrader with Zero Latency How it works? 1. Prepare  .xls file and save it as ...MQL4\Files\Excel_to_Orders.csv Input csv structure: Ref no (string) [ free forma
FREE
Why do you need this script? If you place lots of orders and re-calculate your risk for every order you placed, you definitely need such a script. This script places one or (optional) two different orders with the following script inputs. Utility parameters Operation Type - "Buy","Sell","Buylimit","Selllimit","Buystop","Sellstop" Price - Entry price of the order(s). Stop Loss - Stop Loss of the order(s). Take Profit 1 - Take Profit of the first order. Take Profit 2 - Take Profit of the second
FREE
Google Sheets communicates with Metatrader 4 via Expert Advisor and Google App Scripts.   You can send your orders (created in Google Sheets) directly to Metatrader and get the response of them instantly.   No RTD , No 3rd Party Application , No Latency , No Buffering. Just pure Google App Scripts & Mql4 Expert Advisor Script on Metatrader4. Any modification can be done according to your requests.   If you interested in such a system , Please contact with me. volkanyurci@gmail.com With the purc
FREE
If you need to follow more than 1 open position , you would ike to use this simple TrailingStop EA. Input 1 You have 4 options to set the TrailingStop , Follow the positions of the graph's symbol. Follow a position that has a given ticket number. Follow the positions that has a given Magic number. Follow All the positions. Input 2 Ticket Number ( if 2nd option is selected as input 1) Input 3 Magic Number ( if 3rd option is selected as input 1) Input 4 Trailing Stop amount in Pips  Input 5
FREE
Auswahl:
Percy Diego Zeballos Rico
230
Percy Diego Zeballos Rico 2023.03.03 17:03 
 

Excellent product, super practical, easy to understand. It works perfectly. Thanks to the author. It really helps the operation a lot. Thank you 5*

surya sastrawan ida bagus
23
surya sastrawan ida bagus 2022.04.28 08:55 
 

You know what? This script save me 1 hour every morning, my alghorithm produce a lot of pending orders on 6 pairs and manually it took me nearly 1 hour to input all those orders, with this script all those down to only 5 minutes!!! God you save me Volkan Yurci, thanks a lot man!

Volkan Yurci
3599
Antwort vom Entwickler Volkan Yurci 2022.04.29 07:48
Thanks for your interest to my job. 🙂
I am really happy that it is useful and handy for you.
Harold Tsai
31
Harold Tsai 2022.03.29 19:09 
 

Work perfectly. Really appreciate it!

Volkan Yurci
3599
Antwort vom Entwickler Volkan Yurci 2022.04.01 10:17
Thx. for your appreciation Harold , If you need any new feature , please inform me. volkanyurci@gmail.com
Antwort auf eine Rezension
Version 210.623 2021.06.23
Minor Fix.
Version 210.622 2021.06.22
Expire Datetime is added for pending orders
Version 201.13 2020.10.13
Now also available at Live Accounts !
Version 200.716 2020.07.17
1. Order Type selection field's data type is changed from Integer to string such as "BUY","SELL","BUY_STOP",...
2. New <Stoploss Pips> field is added. Stoploss value can be calculated with this field unless it is not ZERO.
3. New <Takeprofit Pips> field is added. Takeprofit value can be calculated with this field unless it is not ZERO.
4. New 2 order types are added namely BUY_STOP_LIMIT and SELL_STOP_LIMIT.
4. New <Stop Limit> field is added which can be used for only in BUY_STOP_LIMIT and SELL_STOP_LIMIT orders.