TradeMUX SDK Documentation  1.0
TradeMUX SDK Documentation
bool SetIndexBuffer ( int  index,
ref TMXArray< double >  array,
int  data_type 
)

binds a specified indicator buffer with one-dimensional dynamic array of the double type

Parameters
indexNumber of the indicator buffer. The numbering starts with 0
arrayAn array declared in the custom indicator program
data_typeReserved
Returns
If successful, returns true, otherwise - false.

After binding, the dynamic array buffer[] will be indexed as in common arrays,
even if the indexing of timeseries is pre-installed for the bound array. If you want to change
the order of access to elements of the indicator array, use the ArraySetAsSeries() function
after binding the array using the SetIndexBuffer() function. Please note that you can't change
the size for dynamic arrays set as indicator buffers by the function SetIndexBuffer().
For indicator buffers, all operations of size changes are performed by the executing sub-system of the terminal.