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
Besides, I am actively using the information from MQL5 Reference (MQL5 Documentation tab). You can find practically everything in it. The only big disadvantage of this model is that it is written for people who already have a basic training in other programming languages, but obviously not for beginners. For example, I still don't understand the sense of the constantly occurring phrase beginning with"Returns":
AccountInfoDouble
Returns value of double type of corresponding account property
Who returns, who does it return, where does it return to, why does it return? I still don't understand it.
Best regards, Vladimir.
Vladimir, we will figure it out sooner or later). If it is necessary to perform a certain task.
Regards, Roman.
I would also like to add. You need a confident knowledge of English, because there are a lot of comments on the program code in English. I use Google Translate myself to understand the meaning of what's written in the program code. It's difficult, but I have no choice. Although there is a way out - Freelance, but this is only on condition that I am completely confident in my strategy by 100 percent or more.
Regards, Vladimir.
I would also like to add. You need a confident knowledge of English, because there are a lot of comments on the program code in English. I use Google Translate myself to understand the meaning of what's written in the program code. It's difficult, but I have no choice. Although there is a way out - Freelance, but this is only on condition that I am completely confident in my strategy by 100 percent or more.
Sincerely, Vladimir.
No, freelancing doesn't have that process which you can develop on your own as you need. I will only be to blame for my own mistakes, not the programmer from outside. So, you will learn, learn, code, stumble, improve your strategies, and learn again.
Sincerely, Roman.
No, freelancing doesn't have the process that you have in writing your own child, which you can develop as you want. And my mistakes will only be my own fault, not that of a third-party programmer. So, you will learn, learn, code, stumble, improve your strategies, and learn again.
Sincerely, Roman.
I agree! That's why I had to educate myself in my old age.
Sincerely, Vladimir.
I agree! That's why I had to take up self-education in my old age.
Sincerely, Vladimir.
In your old age? How old are you, if that's not a secret? And why did you decide to take this path?
Roman, I have something in the templates. Perhaps some ready-made codes with comments in Russian will come in handy for you.
With best regards, Vladimir.
In your old age? How old are you, if it's not a secret? And why did you choose this path?
57 and a bit. And the answer to your question about the path is already known, and I quote:
"Roman Zhilin:No, freelancing doesn't have that process that you can develop on your own as you need. And the only one to blame for my mistakes will be myself, not a third-party programmer. So, you will have to learn, learn, code, stumble, improve your strategies, and learn again".
Sincerely, Vladimir.
57 and a bit. And the answer to your question about the way is already known, and I quote:
"Roman Zhilin:No, there is no process in freelancing, which you can develop on your own as you need. And the only one to blame for my mistakes will be myself, not a third-party programmer. So, you will have to learn, learn, code, stumble, improve your strategies, and learn again".
Sincerely, Vladimir.
Oooh, thank you very much, with so much information you can get so much done...
Just leaving on a business trip, I'm thinking of going deeper into the materials I've been given, but the coding... I could do it on a sheet of paper too, it would be a good training tool...
Regards, Roman
Who returns, who does it return to, where does it return to, why does it return?
Functions solve certain problems. In some cases, the result of the function is a number, and in others there is no numeric result. In the first case, we need to return the number to the place where the function was called, i.e. to the place where there is an = sign. In the second, it is not necessary, so we call the function without assignment.
In the example, the first three functions return values, while the last one does not. This is how it is.
Functions are needed for isolated code that solves certain problems. In some cases, the result of the function is a number, and in others there is no numeric result. In the first case, we need to return the number to the place where the function was called, that is, to the place where there is an = sign. In the second, it is not necessary, so we call the function without assignment.
In the example, the first three functions return values, while the last one does not. This is how it is.