Questions from Beginners MQL5 MT5 MetaTrader 5 - page 1349
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
Perhaps I don't know everything. According to my understanding, there is no data for other instruments in any function.
In my case, getting prices for other symbols is organised like this:
This is the code that runs as part of the OnCalculate() execution.
Also.If I had a way to run OnCalculate() on the arrival of a tick in an adjacent window, I would easily process data from all windows in time.
But since OnCalculate() is only called by its tick, my indicator knows nothing about events in neighboring windows. The price has already gone there and it is still sleeping and waiting for its own tick to wake it up...
If you leave OnCalculate() out, it probably makes sense to use OnBookEvent() in my case ?
Maybe this will help:https://www.mql5.com/ru/articles/234
Who knows how to edit the discussion column in the marketplace?
Do I need to remove videos and unnecessary advertising?
OK. Thank you.
Maybe this will help:https://www.mql5.com/ru/articles/234
Did I get it right that the only way for indicators to request information from outside is through ReadFile?
WebRequest is not allowed for indicators.
... Further to the previous question
Is there a capability of an exchange buffer between the Expert Advisor and the indicators open in the same chart?
I.e. the Expert Advisor puts something there, and the indicators read something from it.
... Further to the previous question
Is there a capability of an exchange buffer between the Expert Advisor and the indicators open in the same chart?
I.e. the Expert Advisor puts something there, and the indicators read something from it.
A graphic element, for example. You know about ReadFile. You can also try to use resources
Another question about something else.
When creating a file in the editor, you can select that it will be a script and then check that it needs TensorFlow.
Am I right to understand that this checkmark has no real consequences except for the fact that the script will be added to the line about TensorFlow call?
I.e. we shouldn't hope that it's some container which already has everything. In any case, I have to install and configure this library from scratch according to the official manual and MT5 will not help. Or it helps?
what do you mean by "through resources", how?