
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
You have to do it like this:
And please also explain what to do in deinitialization. I've seen in the code that only instances of classes are deleted. And variables and arrays need to be zeroed? What good does it do, anyway? What if classes are not deleted? Will they remain in memory until the terminal is shut down or even afterwards?
Only objects created via new should be deleted.
Only objects created via new should be deleted.
Thank you. And why is that?
Because it doesn't remove itself.
Because it doesn't remove itself.
And if you close the terminal, will it stay?
I think it will be removed, but not for sure. Don't get your hopes up. You create it, you delete it.
I think it will be removed, but not for sure. Don't get your hopes up. You create it, you delete it.
1. Is it true that any non-zero value is true when compared in the operators "==" , "!=" ?
2. How is an array represented? How can it be compared to a number at all?
3. Why is there a "2" in the comparison ? If according to the help truth is any non-zero value, then it is logical to write "1".
4. Did the condition if CopyRates got an error ?