Daos anybody here who can say me why in the hell this indicator won't work? Thank you
U have to problems:
1) the definition of GbpUsd was not an Array.
it was
double EurUsd[],UsdJpy[],AudUsd[],UsdCad[],UsdChf[],GbpUsd;
2) U have zero divizion
Change it to :
double tmp = MathSqrt((sumX2-(MathPow(sumX,2)/R_Period))*(sumY2-(MathPow(sumY,2)/R_Period)));
if (tmp == 0) tmp = Point;
R[acc]=(sumXY-((sumX*sumY)/R_Period))/ tmp;
Daos anybody here who can say me why in the hell this indicator won't work?
Thank you