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
Thank you for your appreciation. I learned how to program in this forum. I publish my work because it disciplines. I use my descriptions as clues, because I very quickly forget what and how I wrote.
I apologize for my coding style, but it was intended for myself. And was published as a side effect.
Unfortunately, it is impossible to assess the popularity of published works. If someone uses them, then a very narrow circle of users.
Increase the number of users - there is no such goal.
I can't get the data, here I run a script and as I understand the data is now stored somewhere in the terminal:
here I run another script to get the data that was saved when I ran the first script, but the data is not displayed:
Can you correct where the error is?
I can't get the data, here I am running a script and as I understand it, the data is now stored somewhere in the terminal
Data is destroyed as soon as its owner (who wrote it) stops working. If this is not done, the Terminal's memory will quickly become cluttered.
Start the data master as an advisor/indicator. As long as it lives, its data will be available to others.
Data is destroyed as soon as its owner (who wrote it) stops working. If this is not done, the memory of the Terminal will quickly become cluttered.
Start the data master as an advisor/indicator. As long as it lives, its data will be available to others.
It didn't work on indicators either. I think something is wrong with the path.
It didn't work on the indicators either. I think something is wrong with the path.
You create a resource in each OnCalculate and kill it when the function is finished.
You should make the object static. This is the basics of OOP.
You create a resource in each OnCalculate and kill it when the function completes.
You should make the object static. This is the basics of OOP.
I added static, but it still doesn't work. Can you correct what is wrong there?
I added static, but it still doesn't work. Can you correct what is wrong there?
Update ResourceData.mqh and try these indicators
Update ResourceData.mqh and try these indicators
Thanks, I got something, now I will take it apart to see how it works.
Can you please correct the warnings in GlobalVariables.mqh? My knowledge ended at Res=-1, but it showed an error there. And I don't know how to remove the OnStart() warning either.
Can you please correct the warnings in GlobalVariables.mqh?
Thank you!