There aren't any Wade Cook scans at the site.
I do have this horizontal channel scan, for finding stocks moving within a specified range. It's an old scan, and I don't know whether it was written by me or someone else. The variable range is the percentage above and below the close.
output="horizon.lst";
integer n; float percent;
n:=25; // days to look back percent:=5; //Percentage limit for max high above close // and for min low below close, during period of n days
if max(0,-(n-1),hi)<=(1+(percent/100))*close(0) and min(0,-(n-1),lo)>=(1-(percent/100))*close(0) then println symbol:-6, " ", "Close ", close(0):7:3, ", ", "Range: ", max(0,-(n-1),hi)-min(0,-(n-1),lo):7:3; endif; |