![]() |
E
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. You can change the price restriction line of the code or eliminate it entirely. If you eliminate it, be sure to also replace the "and" at the end of the previous line with "then". 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; Download EPSRS80.EXP (EPS RS => 80 Scan)
|
![]() |
webmaster@unrulydog.com |
|