Questions from Beginners MQL5 MT5 MetaTrader 5 - page 1014
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
Thanks, I've seen it. But as I said, it's probably because of the symbolic link to the Indicators folder that the resource isn't being added. It says it's not found.
What is the purpose of symbolic links? If the indicators and the Expert Advisor are compiled with direct links, then this EA will work independently of indicators. Let them not have them on the computer at all.
Secondly, we should first create a resource with a direct link and only then try to create a symbolic one. Fortunately, I do not deal with such links and I cannot check how to do this and whether it is possible at all.
What is the point of symbolic links? ........
The point is simple - all terminals access one instance of EA/indicator/script/library/template.... and there is no need to clone instances.
In addition, it's all within walking distance, not in the middle of nowhere ))))
This leads to a perplexing question: why does it all work via links but the resource is not found?
The point is simple - all terminals access one instance of EA/indicator/script/library/template.... and there is no need to clone instances.
In addition, it's all within walking distance, not in the middle of nowhere ))))
Which bewilders me: why does it all work via links but the resource isn't found?
I'm not talking a bit about that. There is nothing that prevents to temporarily copy these two indicators to a normal place, compile, delete and run the Expert Advisor without restrictions.
Or, if you want to connect the resource with normal location of the indicator, then try to change it to symbolic link.
What does this code look like in mt5?
What does this code look like in mt5?
Thank you
I'll try to ask here, already lost there)
How can I remove a particular indicator from all charts with one move/click? Applying a new template doesn't work. Maybe a script?
I'll try to ask here, already lost there)
How can I remove a particular indicator from all charts with one move/click? Applying a new template doesn't work. Maybe a script?
Theoretically:
1. We start to search all of the charts.
2) Determine the number of indicators on the chart.
3. Search for the one that needs to be removed and if it is present, remove it.
We proceed to the next chart.
But for this it is necessary to know the short name of the indicator. If the short name contains the values of input parameters, it can not be found. It's like "You see a gopher..."
Hence you have to look for a substring in the indicator name.
Theoretically, it's like this:
1. Start going through all the charts.
2) Determine the number of indicators on the chart.
3. Search for the one that needs to be removed and if it is present, remove it.
We proceed to the next chart.
But for this it is necessary to know the short name of the indicator. If the short name contains the values of input parameters, it can not be found. It's like "You see a gopher...".
Consequently, it is necessary to search for a substring in the indicator name.
That's how I wanted to do ChartIndicatorName(), but the question arose: How to remove it?
That's how I wanted to do ChartIndicatorName(), but the question arose: how do I remove it?