Quote:
Originally Posted by Linuxser
Yes of course.
Can calculate different arrays.
Something like:
|
well Linuxser... i have this idea for code
PHP Code:
int start()
{
double A = iMAOnArray(GetArray(1),10,5,0,MODE_EMA,0);
double B = iMAOnArray(GetArray(2),10,5,0,MODE_EMA,1);
Print("A= ",A," B=",B);
return(0);
}
double *GetArray(double Factor) // how to define a funcion return as array
{
double Arr[10];
for(int i=0;i<10;i++) Arr[i] = i*Factor;
return(Arr);
}
this code is possible?
if yes, think, a lot of way for systems....
regards