The Expert Advisor repeats (duplicate) trades and positions or signals a preset number of times on your account MetaTrader. It copies all deals opened…
CLP CloseIfProfitorLoss with Trailing. Control of the total profit or loss with profit trailing. Profit or Loss Pad
EAPadPRO – Information panel for our experts
Main
Documentation
Settings
FAQ
Changelog
Reviews
Comments
Extra
Brief
Use the library to add the information panel to your expert advisor for MetaTrader.
We can not guarantee that the information and interface of the program will give you a profit on deals. Still, we will definitely say that even the simplest interface of the program can strengthen the first impression.
How does it work?
What do people write about EAPadPRO ?
You can Download free EAPadPRO
Links
Useful links
Have you installed MetaTrader?
MetaTrader is required for installing from www.expforex.com
Table of Contents (click to show)
Description
Method of programming the information panel in any adviser.
The success of any program is, first of all, the interface of the program and the first impression of the program.
We can not guarantee that the information and interface of the program will give you a profit on deals, but we will say that even the most straightforward interface of the program can strengthen the first impression.
In this article, we will tell you how to apply our information panel to the EAPADPRO advisor.
EAPADPRO – Own the information!
EapadPRO is information that the user of any Expert Advisor receives in real-time.
Creating such a panel took us about 2 weeks, but to bring the program’s interface to a friendly design (graphical user interface, GUI ) took us months of painstaking work.
Not having enough experience in the development of such panels, you can not make the interface of the program suitable for use.
We do not insist on the ideal GUI of our panel, but based on experience and feedback, it has several useful blocks that give a complete picture of what is happening on your terminal’s graph.
We suggest you use our panel as your experts. EAPADPRO – Own the information!
How to start?
First, you should read the complete instructions for using and managing our panel. Then, read EAPadPRO—Information panel for our experts.
Our panel is distributed as a LIBRARY, which can be used in both MT4 and MT5 ( cross-platform code )
You can download our library in the advisor’s section for forex. I put in the library archive and examples of use.
All you need is our EAPADPRO LIBRARY and 10 minutes to install into your expert…
Installing the Library
- Copy the MQL5 or MQL4 folder to the folder of your terminal \;
- These folders include all the necessary files and resources for the work of our library;
- Open your Expert Advisor;
- Open our sample and a step-by-step guide to installing our code, file Exp – EAPADPRO v47 LIBRARY TEST;
- Do each Step as written in the recommendation, or use our step-by-step instructions from the site.
EAPADPRO personalization
All that you can change in our panel is described in this paragraph:
- versionea – The version of your Expert Advisor that is displayed in the panel;
- BMPLOGO – the logo of your BMP 60×60 adviser that is displayed on the panel;
- icon – The icon of your expert, which is displayed in the properties of the expert;
- defEANAME – the name of your Expert Advisor that is displayed in the panel;
- YourName – your name or nickname that is displayed in the panel;
- copyright – Your copyright, which is displayed in the properties of the Expert Advisor;
- CreateInputs – The function of displaying your external variables on the panel. There are 10 such parameters in total. The format of the filling: “Name,” “Value”;
- CreateStrategy – The function of displaying your strategy values on the panel. There are 10 such parameters in total. The format of the filling: “Name”, “Value”;
- MagicForEaPadPRO = 0 – Magic number, which will be watched by our panel (All information is filtered by magic number). At -1 = the panel will take all positions from the account by this symbol; at 0 = only manual;
- MagicForEaPadPRO_Open = -1 – Magic number, which will be assigned to the items opened from our panel;
- CommentForEaPadPRO = “” – A comment that will be assigned to items opened from our panel;
- TypeFillingForEaPadPRO = 0 – Type of fill orders at the opening, only for terminal MT5;
- ShowBuySell = true – Show the trading panel in 1 click (BUY SELL)
You can also set external variables:
- ShowEaPadPro = true;
- FontName = “Roboto”;
- Notice_Open_NameSound = “ok”;
- Notice_Close_NameSound = “request”;
- Notice_Modify_NameSound = “stops”;
- Notice_Error_NameSound = “alert2”;
Terms of Use
Our library with the EAPADPRO information panel is distributed free of charge on the backlink to our page.
If you wish to sell your expert in the market or on the Internet, you need to add the following text to the description of your product:
- The EAPADPRO information graphic panel was developed by the Expforex team.
- All rights to this EAPADPRO panel belong to Vladislav Expforex .
- The author of the EAPADPRO information panel is not responsible for the Expert Advisor (EA) or indicator that uses our panel.
- Our EAPADPRO panel is designed solely for the purpose of providing additional information about trading on your account.
Programming EAPADPRO 10 steps
In our example, you can find the steps (STEP) that you need to perform for the panel to be displayed in your Expert Advisor!
Step 1:
Copy the following code to the top of your EA and change the data that is available for editing (EAPADPRO Personalization):
// Step 1 ############################################## ###################### // This step is for installing our panel in your Expert Advisor // ################################################ ########################### // + ----------------------------------------------- ------------------- + // Insert at the beginning of the code // + ----------------------------------------------- ------------------- + // Copyright of my panel! Do not change! #define EAPADPRODescription "\ n \ nEAPADPRO pad by www.expforex.com" #property strict #ifdef __MQL5__ #define MT "MT5" #endif #ifdef __MQL4__ #define ORDER_FILLING_FOK 0 #define MT "MT4" #endif // =========================== // Information about your program | // =========================== // Notification that this is a demo version of your program (Will be displayed in the panel) bool DEMO = false; // Version #define versionea "77.777" #property version versionea // BMP LOGO 60x60 #define BMPLOGO "Images \\ EAPADPRO_Images \\ YOURLOGO.bmp" #resource "\\" + BMPLOGO; // Icon of your product #property icon "\\ Images \\ EAPADPRO_Images \\ YOURLOGO.ico" // Expert name #define defEANAME "EA NAME" // Your Product Description #property description defEANAME + "for" + MT + "" + EAPADPRODescription // Your nickname or name is displayed at the bottom of the panel #define YourName "Your Nick" // Your copyrights #property copyright YourName + "Your Copyright" // ################################################ ###########################
Step 2:
This replacement is needed only to exclude the same output to the log.
// Step 2 ############################################## ###################### // This step is for installing our panel in your Expert Advisor // ################################################ ########################### // + ----------------------------------------------- ------------------- + // Replace Print with EAPADPRO_LIBRARY_PrintToLogs // For example: EAPADPRO_LIBRARY_PrintToLogs ("This print will be printed in the log"); // + ----------------------------------------------- ------------------- + // ################################################ ###########################
Step 3:
For the MODIFY ONLY option to work in your Expert Advisor, you need to add the following code if (MODIFYONLY) return (false); in the function of opening positions or orders.
// Step 3 ############################################## ###################### // This step is for installing our panel in your Expert Advisor // ################################################ ########################### // + ----------------------------------------------- ------------------- + // Add to the beginning of the function of opening positions or orders // + ----------------------------------------------- ------------------- + // if (MODIFYONLY) return (false); // ################################################ ###########################
Step 4:
The following function displays information about the error in the form of a PUSH notification to the phone, mail, and the terminal screen. All these notifications in the future can be turned off in the settings of our panel.
// Step 4 ############################################## ###################### // This step is for installing our panel in your Expert Advisor // ################################################ ########################### // + ----------------------------------------------- ------------------- + // Add to error handling for NOTICE notifications: // + ----------------------------------------------- ------------------- + // EAPADPRO_LIBRARY_Notice_ErrorCheck (information, function information, error number); // eg: // EAPADPRO_LIBRARY_Notice_ErrorCheck ("HERE RECORDING INFORMATION", "Line:" + __ LINE __ + "Function:" + __ FUNCTION __ + "\ n" + __ FUNCSIG __, GetLastError ()); // eg: // Notice_ErrorCheck ("ClosePosition ERROR" + OrderTicket (), "Line:" + __ LINE __ + "Function:" + __ FUNCTION__, GetLastError ()); // ################################################ ###########################
Step 5:
Add the following code to your OnInit function and note the lines with the CreateInputs and CreateStrategy functions
// Step 5 ############################################## ###################### // This step is for installing our panel in your Expert Advisor // ################################################ ########################### // + ----------------------------------------------- ------------------- + // | enter the code in OnInit | // + ----------------------------------------------- ------------------- + void OnInit () { EAPADPRO_LIBRARY_PrintToLogs ("This print will be printed in the log"); // We also add this code to OnTick: // Here you can write your external variables in the format: "Name", "Value" Up to 10 variables in total CreateInputs ("Inputs_TEST1", TimeCurrent (), "Inputs_TEST2", "Inputs_TEST2"); // Here you can write down your data on the strategy in the format: "Name", "Value" Up to 10 values CreateStrategy ("Strategy_TEST1", TimeCurrent (), "Strategy_TEST2", "Strategy_TEST2"); // ================================================ ============================ // EAPADPRO EAPADPRO EAPADPRO EAPADPRO EAPADPRO EAPADPRO EAPADPRO EAPADPRO EAPADPRO_LIBRARY_OnInit (ShowEaPadPro, -1, -1, "EAPADPRO", DEMO, defEANAME, 0, FontName, Notice_Open_NameSound, Notice_Close_NameSound, Notice_Modify_NameSound, Notice_Error_NameSound, BMPLOGO, versionea, YourName, true); // EAPADPRO EAPADPRO EAPADPRO EAPADPRO EAPADPRO EAPADPRO EAPADPRO EAPADPRO // ================================================ ============================ return; }
Step 6:
Enter the following code into your OnDeinit function
// Step 6 ############################################## ###################### // This step is for installing our panel in your Expert Advisor // ################################################ ########################### // + ----------------------------------------------- ------------------- + // | to enter the code in OnDeinit | // + ----------------------------------------------- ------------------- + void OnDeinit (const int reason) { // ================================================ ============================ // EAPADPRO EAPADPRO EAPADPRO EAPADPRO EAPADPRO EAPADPRO EAPADPRO EAPADPRO EAPADPRO_LIBRARY_OnDeinit (reason); // EAPADPRO EAPADPRO EAPADPRO EAPADPRO EAPADPRO EAPADPRO EAPADPRO EAPADPRO // ================================================ ============================ } // ################################################ ###########################
Step 7:
Enter the following code into your OnTick function and note the lines with the CreateInputs and CreateStrategy functions
// Step 7 ############################################## ###################### // This step is for installing our panel in your Expert Advisor // ################################################ ########################### // + ----------------------------------------------- ------------------- + // | enter code in OnTick | // + ----------------------------------------------- ------------------- + void OnTick () { // ================================================ ============================ // EAPADPRO EAPADPRO EAPADPRO EAPADPRO EAPADPRO EAPADPRO EAPADPRO EAPADPRO MODIFYONLY = Get_MODIFYONLY (); STOPTRADING = Get_STOPTRADING (); EAPADPRO_LIBRARY_OnTick (ShowEaPadPro); // Copy the same code from OnInit // Here you can write your external variables in the format: "Name", "Value" Up to 10 variables in total CreateInputs ("Inputs_TEST1", TimeCurrent (), "Inputs_TEST2", "Inputs_TEST2"); // Here you can write down your data on the strategy in the format: "Name", "Value" Up to 10 values CreateStrategy ("Strategy_TEST1", TimeCurrent (), "Strategy_TEST2", "Strategy_TEST2"); // EAPADPRO EAPADPRO EAPADPRO EAPADPRO EAPADPRO EAPADPRO EAPADPRO EAPADPRO // ================================================ ============================ }
Step 8:
Enter the following code into your OnTrade function or if your code does not have the OnTrade function, then copy the lower code without changing:
// Step 8 ############################################## ###################### // This step is for installing our panel in your Expert Advisor // ################################################ ########################### // + ----------------------------------------------- ------------------- + // | Enter the code in OnTrade or add, If not | // + ----------------------------------------------- ------------------- + void OnTrade () { // ================================================ ============================ // EAPADPRO EAPADPRO EAPADPRO EAPADPRO EAPADPRO EAPADPRO EAPADPRO EAPADPRO EAPADPRO_LIBRARY_OnTrade (ShowEaPadPro); // EAPADPRO EAPADPRO EAPADPRO EAPADPRO EAPADPRO EAPADPRO EAPADPRO EAPADPRO // ================================================ ============================ } // ################################################ ###########################
Step 9:
Enter the following code in your OnChartEvent function or add it if your code does not have the OnChartEvent function, then copy the lower code without changing:
// Step 9 ############################################## ###################### // This step is for installing our panel in your Expert Advisor // ################################################ ########################### // + ----------------------------------------------- ------------------- + // | enter the code in the OnChartEvent or add, if not | // + ----------------------------------------------- ------------------- + void OnChartEvent (const int id, const long & lparam, const double & dparam, const string & sparam) { // ================================================ ============================ // EAPADPRO EAPADPRO EAPADPRO EAPADPRO EAPADPRO EAPADPRO EAPADPRO EAPADPRO EAPADPRO_LIBRARY_OnChartEvent (id, lparam, dparam, sparam, ShowEaPadPro); // EAPADPRO EAPADPRO EAPADPRO EAPADPRO EAPADPRO EAPADPRO EAPADPRO EAPADPRO // ================================================ ============================ } // ################################################ ###########################
Step 10:
The final stage of programming our panel in your Expert Advisor, Copy the code that is below entirely to your Expert Advisor:
// Step 10 ############################################## ###################### // This step is for installing our panel in your Expert Advisor // ################################################ ########################### // + ----------------------------------------------- ------------------- + // Insert at the end of the code // + ----------------------------------------------- ------------------- + input string EAPadPRO = "=============== EAPadPRO Info"; input bool ShowEaPadPro = true; input string FontName = "Roboto"; input string Notice_Open_NameSound = "ok"; input string Notice_Close_NameSound = "request"; input string Notice_Modify_NameSound = "stops"; input string Notice_Error_NameSound = "alert2"; bool STOPTRADING = false; bool MODIFYONLY = false; #ifdef __MQL5__ #import "Lib - EAPADPRO v33 LIBRARY.ex5" #endif #ifdef __MQL4__ #import "Lib - EAPADPRO v33 LIBRARY.ex4" #endif void EAPADPRO_LIBRARY_OnInit (bool ShowEaPadProexport = true, int MagicForEaPadPRO = 0, int MagicForEaPadPRO_Open = -1, string CommentForEaPadPRO = "", bool DemoForEaPadPRO = false, string EaNameForEaPadPRO = defEANAME, int TypeFillingForEaPadPRO = 0, string FontNameForEaPadPRO = "", string Notice_Open_NameSoundForEaPadPRO = "", string Notice_Close_NameSoundForEaPadPRO = "", string Notice_Modify_NameSoundForEaPadPRO = "", string Notice_Error_NameSoundForEaPadPRO = "", string BMPLOGOForEaPadPRO = BMPLOGO, string versioneaForEaPadPRO = versionea, string NICKNAMEForEaPadPRO = YourName, bool ShowBuySell = true, double StartLotToEapadPRO=0 ); bool Get_STOPTRADING (); bool Get_MODIFYONLY (); void EAPADPRO_LIBRARY_OnDeinit (const int reason); void EAPADPRO_LIBRARY_OnTick (bool ShowEaPadProexport = true); void EAPADPRO_LIBRARY_OnTrade (bool ShowEaPadProexport = true); void EAPADPRO_LIBRARY_OnChartEvent (const int id, const long & lparam, const double & dparam, const string & sparam, bool ShowEaPadProexport = true); void CreateInputs (string inputs_name_1 = "", string inputs_value_1 = "", string inputs_name_2 = "", string inputs_value_2 = "", string inputs_name_3 = "", string inputs_value_3 = "", string inputs_name_4 = "", string inputs_value_4 = "", string inputs_name_5 = "", string inputs_value_5 = "", string inputs_name_6 = "", string inputs_value_6 = "", string inputs_name_7 = "", string inputs_value_7 = "", string inputs_name_8 = "", string inputs_value_8 = "", string inputs_name_9 = "", string inputs_value_9 = "", string inputs_name_10 = "", string inputs_value_10 = ""); void CreateStrategy (string strategy_name_1 = "", string strategy_value_1 = "", string strategy_name_2 = "", string strategy_value_2 = "", string strategy_name_3 = "", string strategy_value_3 = "", string strategy_name_4 = "", string strategy_value_4 = "", string strategy_name_5 = "", string strategy_value_5 = "", string strategy_name_6 = "", string strategy_value_6 = "", string strategy_name_7 = "", string strategy_value_7 = "", string strategy_name_8 = "", string strategy_value_8 = "", string strategy_name_9 = "", string strategy_value_9 = "", string strategy_name_10 = "", string strategy_value_10 = ""); void EAPADPRO_LIBRARY_PrintToLogs (string text = ""); void EAPADPRO_LIBRARY_Notice_ErrorCheck (string infoabouterror = "", string techinfofunction = "", int NumberofError = -1); #import // + ----------------------------------------------- ------------------- +
Result
If you did everything correctly, after loading your EA, you would see the following image:
Sale and resale of EAPADPRO
Our dashboard has copyrights.
This development of EAPADPRO belongs to Vladislav Expforex!
Any resale and sale of the information panel, as well as the sale of experts who use our panel, is FORBIDDEN!
Any mention of changed view, copying of functions and design, and copying of the general concept of our EAPADPRO panel is PROHIBITED!
FAQ
Sale and resale of EAPADPRO
Our dashboard has copyrights.
This development of EAPADPRO belongs to Vladislav Expforex!
Any resale and sale of the information panel, as well as the sale of experts who use our panel, is FORBIDDEN!
Any mention of changed view, copying of functions and design, and copying of the general concept of our EAPADPRO panel is PROHIBITED!
Changelog
Version 24.917 2024.09.17
EAPADPRO v59
–Enhanced Graphical Interface Translation
We have completely revamped and updated the translations across all elements of the graphical interface. This ensures a more accurate and natural localization, allowing the interface to better reflect the linguistic and cultural nuances of our diverse user base. As a result, interacting with the application is now even more seamless and intuitive, providing a more personalized and comfortable user experience.
–Introduced Informative Tooltips for Panel Elements
To elevate user convenience, we’ve added descriptive tooltips to various panel components. When you hover over buttons and icons, informative explanations about each element’s functionality will appear instantly. This enhancement significantly simplifies navigation and interaction within the application, making it easier for both new and experienced users to utilize all features effectively.
–Resolved Minor Bugs and Boosted Stability
In this update, we’ve addressed and fixed several minor bugs that were affecting the application’s performance. These corrections enhance the overall stability and reliability of the program, ensuring a smoother and more consistent user experience. By eliminating these small issues, we’ve laid the groundwork for a more robust and efficient application.
Version 24.805 2024.08.05
Fixed error in profit/price/time of closed position in notifications.
Fixed INFOBOX error when deleting the EAPADPRO window.
Last build compilation
Version 24.503 2024.05.03
Resolved: problem with loading templates on different symbols and deleting “old” EAPADPRO panel objects.
Error saving variables from the chart – fixed.
BUY/SELL buttons are enabled by default
Fixed: Work in Strategy Tester
Version 24.404 2024.04.04
Global Update EAPADPRO v55
–Added: information about profit from closed positions to the chart.
The information is displayed for each bar of the current timeframe.
You can change the timeframe to see the result of trading on a certain bar of the current timeframe.
If several positions/deals are closed on one bar of the current timeframe, the trading result is summarized, and the total information for a certain bar is displayed.
The information is updated when the next position/deal is closed.
You can turn off showing history in the panel settings.
===========================================================================================
–Added: The status of the Expert Advisor operation if it was launched on the server from “VPS MQL MetaQuotes”.
When Expert Advisor is running on the server from MetaQuotes, a message will be created on the home computer that Expert Advisors are running on the server “VPS MQL MetaQuotes”. The smiley face is blue.
Attention: If an Expert Advisor is launched on both the server and the home computer, it can trade in parallel on 2 terminals (server “VPS MQL MetaQuotes” + home computer); there may be conflicts.
Attention: If the Expert Advisor is launched on the server “VPS MQL MetaQuotes”, do not Turn it on work on the home computer to avoid conflicts.
Frequency of polling the status of work on the server = 1 day.
After deinitialization of the Expert Advisor on the server – It will get the status – stopped.
To test the work on the server from “VPS MQL MetaQuotes”, pending orders are created!
===========================================================================================
–Added: The error status of the Expert Advisor operation can now be read on the EAPADPRO panel.
You can click on the Smile or the Expert Advisor operation status bar and you will be shown a message about current errors of Expert Advisor operation.
If you click on the Smile button on the panel, you will be shown the causes and errors and their solutions with pictures.
===========================================================================================
–Added: Notification of errors and opening/closing of trades to the chart in the form of InfoBox.
Notification is shown for 4 types:
—Opening a new trade;
—Closing a deal;
—Modification of a trade;
—Error received by Expert Advisor from the server;
In the EAPADPRO panel settings, you can turn on or off the notification type you need.
Notifications can be viewed as they arrive in the notification queue.
Notifications are accumulated in a data array each time you install/reinstall/change Expert Advisor settings.
In the EAPADPRO header you can also enable disable INFOBOX.
===========================================================================================
–Added: Working with Telegram (Beta version)
For Expert Advisor to work with the Telegram bot, you need to set up the bot on your phone and create a “public” or “private” channel.
To receive notifications from your account, you need to assign your bot as an administrator of your “public” or “private” channel.
Attention! Sending notifications and working with commands takes computer resources! Use the Telegram bot only for your own needs.
New settings for working with Telegram:
EAPadPRO2=” =============== Telegram bot “;
==input ENUM_UPDATE_MODE TG_UpdateMode=UPDATE_SLOW –> Update Mode. Timer speed, to receive commands from Telegram bot. The faster the timer runs, the more computer resources will be used! Please do not change it unnecessarily. 2sec,3sec,10sec
==TG_PRIORITY=TG_HOME_VPS –> Priority of work. This is the priority mode when the Telegram bot works on the MetaQuotes VPS server and your home computer.
TG_HOME_ONLY=1, // Only the HOME bot. The Telegram bot works only on the home computer.
TG_VPS_ONLY=2, // Only the VPS bot. The Telegram bot works only on the MetaQuotes VPS server.
TG_VPS_HOME=3, // First VPS bot, second HOME bot. The Telegram bot works on the MetaQuotes VPS server if you upload it to the server. If not, it will work on your home terminal. Check the work on the VPS server every 10 minutes.
TG_HOME_VPS=4, // First HOME bot, second VPS bot. The Telegram bot works on a home computer, but if the home computer/terminal is turned off, it will work on the VPS server from MetaQuotes. Check the VPS server’s work every 10 minutes.
Attention! Screenshots are not available on the VPS server from MetaQuotes!
==TG_Token=”” –> Token bot. Token (unique code) of the bot that will send notifications and receive commands
==TG_ChannelName=”” –> –> Public Channel Name @. Or “private” ID starts -100 of the private channel. That will send notifications about opening/closing/modification/errors and screenshots from the terminal.
==TG_UserNameFilter=”” –> Whitelist Usernames. List of users, starting with @, who can use the bot.
Attention! Sending notifications and working with commands takes computer resources! Use the Telegram bot only for your own needs.
==TG_UseBotTimer=false;//TG_UseBotTimer –> Working with the bot from the phone
New notification type added to EAPADPRO panel settings:
==Notice Open TG – Send a notification to the Telegram channel if a trade is open;
==Notice Close TG – Send a notification to the Telegram channel if a trade is closed;
==Notice Modify TG – Send a notification to the Telegram channel if a trade is modified;
==Notice Error TG – Send a notification to the Telegram channel if an error is received;
==ScreenShot TG – Send a screenshot to the Telegram channel if a trade is opened or closed;
Attention! This is a beta version of working with the Telegram bot. We are working on improving and adding new features.
If you have any suggestions, please write in the “Comments” section.
===========================================================================================
–Improvement: Code optimization to increase speed.
–Improvement: The speed of the panel update in the strategy tester is now calculated automatically depending on the speed of quotes arrival.
This is done to increase the speed of the program in the strategy tester.
Information update is now equal to 1 real second.
–Improvement: The speed of the program running EAPADPRO in the strategy tester.
Attention! Events in the strategy tester are processed only when a new tick is created.
If a new tick (minimum price movement) is not created, then the panel waits for the next tick.
With Visualization:
Version 48: 390sec (TickSniper 2024-2024)
Version 55: 244sec >>159% (TickSniper 2024-2024)
w/o Visualization:
Version 48: 363sec (TickSniper 2020-2024)
Version 55: 220sec >>165% (TickSniper 2020-2024)
with Visualization:
Version 48: 15750sec (TickSniper 2020-2024)
Version 55: 6220sec >>253% (TickSniper 2020-2024)
–Improvement: The color of the button to close a position on the chart changes depending on the current profit of this position.
–Improvement: Graphic improvements to optimize the Expert Advisor’s performance
–Improvement: The account deposit Symbol is cent ¢, USD $, or eur €. All others are the first letter of the deposit currency name.
–Improvement: When visual testing is completed, objects are not removed from the graph.
–Improvement: When creating screenshots after opening/closing positions, the EAPAPDPRO Control Panel will be expanded to show full information.
This is done in order to study the trading history of Expert Advisor on the visualization graph after testing is completed.
–Fixed: Managing positions and orders from the chart when the panel is minimized.
–Fixed: Corrected the error of clearing the chart from unused order labels.
–Fixed: AutoSize when switching charts.
–Fixed: Drawing errors to Print when the Expert Advisor runs on “VPS MQL MetaQuotes”
Version 24.127 2024.01.27 EAPADPRO v48
+Added languages Chinese, Japanese, Korean, and Turkish.
+Added full control from the chart. Closing positions/orders, removing Stop Loss / Take Profit.
For full management and testing of Expert Advisor in the strategy tester.
Version 24.125 2024.01.26
+BugFix with Auto Font Size
+Added info about Profit by Date and Target levels (Symbol and Magic)
+BugFix Profit by Date after Changing Symbol
When clicking the Try More and Show Help(Welcome) buttons again, the window closes.
When closing a position or an order, the labels of this position are forcibly deleted. A standard function activates chart redrawing.
When closing a position, information about the closing time and the number of seconds of life of this position is also written in the journal.
Added confirmation of pressing the “MODIFY ONLY” and “STOP TRADING” buttons to avoid accidental pressing. You can disable confirmation in the panel settings (Extra Buttons – Confirm).
Version 23.999 2023.12.27
— EAPADPRO v46
— Added FontAutoSize Automatic font size determined by the width of the chart.
— Reduce the FONT sizes if the sizes are too large (Maximum panel size according to the width of the chart)
— General graphics improvements and minor bug fixes
— PrintToLog=true; //PrintToLog –> Print to Logs (Don’t turn it false!!!)
Added option to lock message output (Print) to the MetaTrader log file.
Don’t disable this option if you don’t know why?
If you want to reduce the volume of terminal logs, turn off this option (false)
All messages are logged to track the advisor’s actions and debug errors.
If you have disabled this function, We will not be able to find an error in the program’s actions and will not be able to help you.
Please do not disable this feature.
–Links to the new website
—-Changed logo
–Added new languages
—
Version 22.112 2022.01.12
-Added languages: French, Italian, Korean, Turkish.
-In the speed of the Pause control, a parameter has been added: Pause when opening a new bar!
– After a new bar appears on the chart, the panel will stop quotes and automatically click on “PAUSE”.
– Press “START” to continue
EAPADPRO updated according to the new rules for using the MQL5 Market
Fixed a bug when closing the window – text labels are not drawn further along the chart.
If the TakeProfit value is negative, the value on the chart is displayed in red.
If the Stoploss value is positive (breakeven / trailing stop), the value on the chart is displayed in green.
Version 20.202 2020.02.29
– Notifications on opening / closing positions for live accounts are enabled by default. (You can disable it in the panel settings)
– A screenshot about opening / closing positions for live accounts is enabled by default. (You can disable it in the panel settings)
– By double-clicking on the title bar of the panel window, the panel will be minimized!
Version 19.904 2019.09.04
-Increased panel speed in Strategy Tester!
-If you click on the logo, the panel expands.
-Added initial help on working with the EAPADPRO panel.
-Reminder of the advisor version.
-Added block showing other programs from Expforex.
-In the HELP tab added buttons to call help and additional information.
-Added work status: No connection to the server (Internet is gone, the server does not work).
-Display information about the status of the program in the journal, to monitor the program.
-Fixed graphic panel update error.
Version 19.315 2019.03.15
– Text labels of open positions optimized. Fixed a bug where text labels were drawn on top of the EAPadPRO panel;
– The output of the magic number has been added to the status bar of the advisor;
– Minor improvements;
Version 19.104 2019.01.05
Повторное обновление
Version 19.103 2019.01.04
– Update EAPADPRO v 25
– Additional languages added to the panel: Spanish, Portuguese (Brazil), German, Chinese, Japanese;
The translation was made using the GOOGLE Translator + MQL + Terminal site!
If you find an error in your language, please report it in messages. Thank!
– Increase the speed of the panel;
– Updating data on the block “Profit by Date” works 1 time in 5 minutes to save computer resources;
– Fixed “duplication” of lines in the help and greeting;
– Automatic closing of the panel 3 hours after the last use to save computer resources;
– Automatic closing of the panel on the VPS from METAQUOTES to save resources MQL VPS;
– Added the ability to Collapse / Expand the panel when you double-click on the window title (Analog Windows);
– By default, we collapsed the Extra Buttons block;
Version 18.988 2018.12.05
Global update to version 23
– Auto-save notification settings on a DEMO account.
– Disable notifications on the Real account by default.
– Added check of the status of PUSH notifications, if they are enabled in the terminal settings.
– Added the ability to enable / disable the creation of screenshots in the settings of the Screenshot panel for Open / Close.
– Screenshots are created in the folder of your terminal Files Name of the expert , with a size of 1024 * 768.
– Added a variable in the AutoMinimize panel settings in seconds (60 seconds by default) 0 – disabled.
– Automatic minimization of the EAPADPRO window after a specified number of seconds to reduce the load on the computer when the user does not interact with the schedule.
– Any inaction on the chart: click on the chart, click on objects, change the size of the graphs – leads to the automatic minimization of the window of our EAPADPRO panel.
– If the window is in focus (selected) – automatic folding is disabled!
– To disable auto minimization – set the panel settings in the field AutoMinimize = 0.
– Added a control unit and control the speed of the quotes and the speed of testing.
The speed is divided into 10 values. These values depend on the standard speed of the strategy tester in the terminal.
1 – Slow, 10 – Quick!
– Added PAUSE button – You can pause testing and operation of the simulator.
– Added CheckBox and the ability to set a pause after opening a position (activation of a pending order, opening a new position) or closing
positions. If the position has been opened or closed, the simulator automatically pauses. To continue the work of the simulator, press the START button!
– Added block output table open deals and positions. This block allows you to monitor current positions without reference to the terminal
report. By default, this block is hidden, you can activate it by clicking on the corresponding arrow!
…. and much more
For your convenience, we have added a short description of the parameters in the table of external variables and expert settings.
Update panel EAPAPDPRO v21:
-Graphics improvements
-Add tooltips
-Add information about the ban on trade for various reasons
2018 08 16
EAPADPRO update
Auto-save notification settings on the DEMO account.
Disable notifications in the Real account by default.
Added check of the status of PUSH notifications, if they are included in the terminal settings.
Added the CheckBox to enable / disable the creation of screenshots in the settings of the Panel: on the Opening / Closing.
Screenshots are created in the folder of your terminal Files Expert name , with a size of 1024 * 768.
Added a variable in the AutoMinimize panel settings in seconds (60 seconds by default) 0 – disabled.
Automatic minimization of the EAPADPRO window after a specified number of seconds to reduce the load on the computer when the user does not interact with the GRAPH.
Any inactivity on the graph: clicking on the graph, clicking on objects, resizing the graphs – leads to the automatic minimization of the window of our EAPADPRO panel.
If the window is in focus (selected) – automatic minimize is disabled!
To disable auto minimization – set in the panel settings in the AutoMinimize = 0 field.
2018
- Completely changed the drawing algorithm.
- Changed the font of information output
- Added support for Scaled fonts in Windows, and the panel itself optimizes the size for your scale.
- Added support of panel languages: Russian and English
- Added automatic detection of the terminal language and output of information in the language in which your terminal is launched (Russian or English).
- Added support for moving the panel on the chart
- Added support for 3 color schemes for the panel: Black, White, Gray.
- Added panel settings section and hot swap of panel settings from the chart
- Added help section where you can read the program description and get important links to full instructions
- Added function of displaying information about positions (open, stoploss, take profit) on the chart where the panel is installed. All positions are shown by the current magic number and symbol from which the panel is launched. If you point at the information window, additional information is shown.
- Added possibility to notify the user about actions on the account (opening, closing, modification, errors) using PUSH, Alert, Sound.
- Automatic detection of demo account and disabling of notifications on demo account (User can enable notification in the panel settings). By default, on a live account notification to the phone via PUSH and Sound is enabled.
- Added the ability to close the panel, while the EA logo will be saved. If you click on the logo, the panel will expand again;
2017 01 01
First Version of EAPADPRO
Reviews
Thanks for feedback!
Pasadena.VP
Pasadena.VP 2022.03.15 17:33 # RU Пока тестирую. К каждому терминалу надо привыкать. Пока привыкаю. Немного неудобно - закрытие открытых позиций
98
Rafael Vieira 2023.11.20 20:39 #
Thanks for sharing
35
Bradford Marsh 2021.11.23 08:12 #
Thanks for the share
354156
Reply from developer Vladislav Andruschenko 2021.11.23 08:30 # RU
Thank you
28
Jovo Pavkovic 2021.07.05 17:19 #
I haven’t bought anything yet.
But is ok.
354156
Reply from developer Vladislav Andruschenko 2021.07.05 17:21 # RU
Try my guide =======================================================
🏬🏬🏬 You can install all ea from your terminal 🏬🏬🏬
MARKET MQL5.COM: HOW TO INSTALL ea from terminal?: https://www.mql5.com/en/blogs/post/734585
====================================================
60
Sydney Pate 2021.02.24 12:41 #
Awesome. Thank you
2132
Sergey Zhuravkov 2019.09.18 14:24 #
Всегда хорошие продукты
1345
User didn’t leave any comment to the rating
Filter: New Positive Negative
14
Pasadena.VP 2022.03.15 17:33 #
Пока тестирую. К каждому терминалу надо привыкать. Пока привыкаю. Немного неудобно – закрытие открытых позиций
5804
Xiaoyu Huang 2021.07.22 03:58 #
good !
44
супер!
47
User didn’t leave any comment to the rating
3141
Barour Bilal 2019.06.17 00:20 #
User didn’t leave any comment to the rating
[Deleted] 2019.01.07 17:45 #
User didn’t leave any comment to the rating
Comments
Do you have a question?
Extra
Navigation by tabs
Related Posts
Averager. Averaging trading positions. Opening deals against the trend and
Averaging positions. Opening of additional positions on the trend and against the trend with the function of the general trailing…
The X and The xCustomEA: Testing and Optimization
Description The X and The xCustomEA are two standout Expert Advisors (EAs) in the Forex trading community, gaining widespread popularity over…
Trade Report of TickSniper and the best advisors from Expforex
Description We have summed the summary and detailed trading results of our experts TickSniper, Good Santa, Tick Hamster, The X, on our real trading accounts. Trade…
InfoPad, Online Information Panel for MetaTrader
INFOPad is an information panel that creates information on the selected currency pair in the MetaTrader terminal. Shows the main…
Close Minus by Plus, Closing unprofitable positions by searching and
Closing unprofitable positions by searching and closing profitable positions This assistant looks for, among all positions, in the terminal the most…
Tester Pad is a Forex trading simulator for strategy tester.
One-click trading on the Strategy Tester chart. The utility allows you to manually test your strategies in the strategy tester….
EAPadPRO – Information panel for our experts
Information panel for all our advisors and utilities for the MetaTrader terminal. Detailed instructions on the basics of managing and using…
VirtualTradePad (VTP) Trading Panel. Trade Pad for One Click Traiding
VirtualTradePad or VTP – control panel for trade in 1 click in MetaTrader 4 and 5. Trade in 1 click from…
Tick Hamster Automatic trading robot. Nothing extra!
Expert with automatic optimization of all parameters for any trading symbol in MetaTrader. A trading EA that requires no settings!…
Swing strategy (Pendulum). Automatic opening of 2 opposite pending orders,
The model of the well-known strategy Pendulum (OCO orders) is the sequential opening of pending orders with an increased lot. The…
Partial Close and Trailing. Partial closing of positions on rollbacks
Partial Close and Trail – assistant EA. Closes a part of a position (Closes part of the lot) during rollback. EA …
Copylot – Forex copier for trade deals for MetaTrader. Copier
Trade copier for MetaTrader. It copies forex trades, positions, orders from any accounts. It is one of the best trade copiers MT4-MT4, MT5 – MT4 for…
SafetyLOCK PRO Protect your positions by locking using the opening
SAFETYLOCK allows traders to avoid strong market reversals by setting an opposite order for an already opened position. If a trader…
CLP CloseIfProfitorLoss with Trailing. Control of the total profit or
Closing positions in MetaTrader upon reaching the total profit/loss with the profit trailing function. You can enable the Virtual stops (Separate Order), Calculating…
This post is also available in: English Українська Portuguese Español Deutsch Chinese Русский Français Italiano Türkçe 日本語 한국어
Leave a Reply