
You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
Check out the new article: From Basic to Intermediate: Arrays and Strings (II).
In this article I will show that although we are still at a very basic stage of programming, we can already implement some interesting applications. In this case, we will create a fairly simple password generator. This way we will be able to apply some of the concepts that have been explained so far. In addition, we will look at how solutions can be developed for some specific problems.
One of the most enjoyable aspects of programming in MQL5 is that we often don't need to worry about creating certain things from scratch. In fact, it is rare for the MQL5 standard library not to meet our needs. However, there are situations where it may not fully correspond to what we require or want to do. One such case is creating custom formatting to display certain types of information, whether in the terminal or within a graphical object we intend to use.
Since, at this stage, we won't yet be working with graphical objects, all of our tasks will be focused on using the standard output of MetaTrader 5, in other words, the terminal. I'll soon show you how to make things much more interesting. But for that moment to come, we first need to build a solid and consolidated understanding of some key features of a programming language.
Author: CODE X