EPS RS= # 80 This scan creates a list of stocks over $7 that have an EPS Rank and a RS (QRS, QP2 Relative Strength) equal to or greater than 80. output="8080.lst"; issuetype=common; exchange nyse,nasdaq,amex; PrintHdrLn "Symbol,Description,Group,Close , EPS, QRS"; if EPSRank(0) >= 80 and QRS(0) >= 80 and Close(0)>=7 then Println symbol," , " , description , ",",IRLsymbol:12,",",Close(0):7:2,"," , EPSRank(0):4 , ",",QRS(0):4; endif;