EXAmple:
double arraytest[5] = { 3, 2 ,5, 6,8 };
ArraySetAsSeries(arraytest,true); // reverse
Print (arraytest[0]);
// Expected result should be 8.
// but the result is 3.
------
Is this a bug? If not I need help.
Hi thien_v,
ArraySetAsSeries does not works on static array, Please read the doc http://www.mql5.com/en/docs/array/arraysetasseries
and print it
Print ("Set as series "ArraySetAsSeries(arraytest,true));
It will print false.
68
EXAmple:
double arraytest[5] = { 3, 2 ,5, 6,8 };
ArraySetAsSeries(arraytest,true); // reverse
Print (arraytest[0]);
// Expected result should be 8.
// but the result is 3.
------
Is this a bug? If not I need help.