
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 could do this actually,
Anyway, from that 7 buffers you show, which one you don't want to use and where does this buffer get the data ( say for example the data you don't want to use is buffer 6 which get the data from buffer 0) ?
I got it!!!. You're my hero.
The "iEACalculationMode" boolean is standard set to "true" in the code.
The EA imports all the indicator data with the iCustom() function with it's default input settings/values.
The "iEACalculationMode" boolean value of the 2e custom indicator, which is attached to the chart is manually set to "false" in the inputs settings TAB.
This boolean switches off the calculation of the additional data (see code).
Problem solved.
Thanks!!!
Did you try my approach?
But this input is true by default!
Did you try my approach?
The value needs to be true by default, because the EA is always loading the default values.
I manually switch the value to false for the custom indicator that is attached to the chart.
Yes I did also your approach but your method works when only the EA is attached to the chart.
When I include the custom indicator to the same chart, the call from the EA is no longer recognized and then this method becomes useless.