buffers for using iMA or iRSI in MT4? other options/solutions ?

 

Dear Folks,

I have tried to find a way to use the equivalent of the copybuffer from MT5 method in MT4.

For what i found so far the situation is like this:

- either you know how to use pieces of code from the actual indicator

- you can use one buffer only (which from my experience is degrading as real values)

Basic personal conclusion: nothing really works in terms of using a basic indicator in MT4 (or maybe something really funny must be done).

Is there any way ? (usually is... but i couldn't find it).

 

Kindly, please advise !

 

Much appreciated for any good willing soul

 
double buffer[]; ArrayResize(buffer, Bars);
for(int i=Bars; i > 0){ --i; buffer[i] = ...(..., i); }
have no idea what you mean by "one buffer only"
 
WHRoeder:
have no idea what you mean by "one buffer only"
in MT4 can you copy multiple buffers from signal to array with a similar command like CopyBuffer ?
Reason: