Lizard Tail Buys
Short term trading low reversal with a target of 5% in five days. Based on a 10 day low and the stock closes within the upper 25% of the low days trading range.
output = "Lizardbuy.lst";
if (Low (0) \< low (-1)) and
(Low (0) \< low (-2)) and
(Low (0) \< low (-3)) and
(Low (0) \< low (-4)) and
(Low (0) \< low (-5)) and
(Low (0) \< low (-6)) and
(Low (0) \< low (-7)) and
(Low (0) \< low (-8)) and
(Low (0) \< low (-9)) and
(Low (0) \< low (-10)) and
(Open (0) => (((High (0) - Low (0))*.75) + Low (0))) and
(Close (0) => (((High (0) - Low (0))*.75) + Low (0))) and
(Close (0) => 10) and
(Close (0) > Open (0)) and
(avgvol (0,-29) > 50000) then
println symbol , "," , Description;
endif;