I would like to get data from a custom indicator in mql4.
I know that how to do that in mql5 like this.
I search the document https://docs.mql4.com/indicators/icustom and find that I can get the value one by one. But this is too slow if I have asking for 1000 value. I would like to ask if there is a good method to get data from custom indicator in mql4 ?
Thank you very much.
It'll be one by one.
Depending on how you code, you need not call iCustom() 1000 times every tick (worst case - just call once when your program starts, then just update the latest value every tick/bar will do).
I would like to get data from a custom indicator in mql4.
I know that how to do that in mql5 like this.
I search the document https://docs.mql4.com/indicators/icustom and find that I can get the value one by one. But this is too slow if I have asking for 1000 value. I would like to ask if there is a good method to get data from custom indicator in mql4 ?
Thank you very much.