Maximum number of buffers in an indicator

 
High,

which is the biggest amount of buffers (indicator_buffers) and plots (indicator_plots) an indicator can have?
 
Martin Bittencourt:
High,

which is the biggest amount of buffers (indicator_buffers) and plots (indicator_plots) an indicator can have?

Based on https://www.mql5.com/en/docs/indicators, 512.

Documentation on MQL5: Technical Indicators
Documentation on MQL5: Technical Indicators
  • www.mql5.com
All functions like iMA, iAC, iMACD, iIchimoku etc. create a copy of the corresponding technical indicator in the global cache of the client terminal. If a copy of the indicator with such parameters already exists, the new copy is not created, and the counter of references to the existing copy increases. These functions return the handle of the...
 
Custom Indicators can contain up to 512 indicator buffers, and the buffer data also can be obtained by using the CopyBuffer() function, with the handle returned by function iCustom().
          Maximum number of indicator buffers? - Indices - Technical Indicators - MQL5 programming forum
Reason: