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