View Single Post
  #5 (permalink)  
Old 05-05-2006, 08:03 PM
ziko123 ziko123 is offline
Senior Member
 
Join Date: Dec 2005
Posts: 409
ziko123 is on a distinguished road
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!
Reply With Quote