Max Number Indicator Handles (iCustom)?

 
Is there a maximum number of indicator handles (iCustom) allowed for a single indicator?
 
timkrug:
Is there a maximum number of indicator handles (iCustom) allowed for a single indicator?

@whroeder1 please help
 
How should I know? I doubt there is one, limited by available memory.
 

Yes, the max number is 6.  If you reference iCustom in your EA/Script, then max number of handles is 6.

However, you can reference more in a file if you release each handle via 

IndicatorRelease()

command first.


Hope this helps! :)

 
ricardocr1980 #:

Yes, the max number is 6.  If you reference iCustom in your EA/Script, then max number of handles is 6.

However, you can reference more in a file if you release each handle via 

command first.


Hope this helps! :)

Where do you get your information from?

I don't know what the maximum might be but I have used more than a hundred in an indicator!

 

Through testing. I was doing a project today and beyond 6 Handles, iCustom does not return any results.

Unless you release previous handles as per my message above. :)

 
ricardocr1980 #:

Through testing. I was doing a project today and beyond 6 Handles, iCustom does not return any results.

Unless you release previous handles as per my message above. :)

Show your code because I think that you must be doing something wrong.

Reason: