|
This EA has the following 3 lines which have no use at all
{
if (MacdPrevious > MacdPrevious2) Direction = 1;
if (MacdPrevious < MacdPrevious2) Direction = -1;
if (MacdPrevious == MacdPrevious2) Direction = 0;
}
The "Direction" variable is never used!
|