Problem with ZigZag when compile
-
When I use ZigZag indicator in my EA.
I compile and have error point every time.
I try to fix it by change from
double HH[0]; ArrayResize(HH,0);
double LL[0]; ArrayResize(LL,0);to
double HH[1]; ArrayResize(HH,0);
double LL[1]; ArrayResize(LL,0);it's work.
but I don't want to fix every time to compile. What should I do ?
Example in Picture
-
This worked before, but now with 600+ there was some changes with arrays. Fixed for the web version
