| nikoschopen 2,824 posts
 msg #58307
 - Ignore nikoschopen
 | 12/19/2007 6:40:53 PM 
 As far as I know, there are 252 trading days in a year.
 
 Get the lowest close for a stock in the last 260 days.
 set{lo52wk, close 52 week low}
 
 If the stock then meets the following criteria it is added to the list:
 It has increased 100% or more from the low during those 260 daysset{2x, close / close 52 week low}2x above 2
 
 
 It is within 25% of the highest price the stock made during that 100%+ move up.set{2x, close / close 52 week low}2x above 1.75
 
 
 For these stocks show those that:
 Are up 4% today (1 day)
day change above 4
 
 
Todays volume is over 100000
volume above 100000
 
 
Todays volume is greater than yesterdays volume
sign( volume ROC,2) equals 1
 
 
The stock has not gained more than 10 percent in 22 days
sum(day change,22) below 10 percent
 
 
The stock has not gained more than 10 percent in 11 days
sum(day change,11) below 10 percent
 
 
 
 |