Discussion of article "Tips from a professional programmer (Part I): Code storing, debugging and compiling. Working with projects and logs"
New article Tips from a professional programmer (Part I): Code storing, debugging and compiling. Working with projects and logs has been published:
Author: Malik Arykov
Thank you for sharing your insight. It always refreshing to see other programmers perspective.
I already do some of this advice. This is one of my routine :
On weekend, I usually clear unnecessary log file and file created in MQL/files directory (example: spread monitor file created during the week) using .bat file with delete command.
After that, I compress the MT4/MT5 folder and proceed to copy the compressed file to 2 of my external drive/usb drive (this option is quicker rather than upload the backup into some online backup service).

- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
You agree to website policy and terms of use
New article Tips from a professional programmer (Part I): Code storing, debugging and compiling. Working with projects and logs has been published:
These are some tips from a professional programmer about methods, techniques and auxiliary tools which can make programming easier.
Terminal program files are located under the MQL5 directory. This catalog is a so-called "sandbox". Data access from the outside is closed. This is a good decision. However, the use of a DLL probably enables access to anywhere.
For example, here is the structure of the Cayman project:
The main advantages of this placement are:
Author: Malik Arykov