[ Naz1 Scan ] Thanks, Sean.
I made a correction on it. The **And** Statement after the Dividend statement needed changed to *OR*
So, here is the Scan again. I got a lot of Hits so I'll eyeball them to see if that'll do it.
And I really Appreciate your help.
Ray
**************
// Find Stocks that May Be DE-LISTED // or Reverse Split
Output="Naz1.lst";
Exchange Nasdaq; IssueType Common, Preferred; DaystoLoad=500;
If ((Bookvalue * Sharesout < 2 and // Net Assets < 2 Mil
MarketCap < 35 and MarketCap > 0 and // less than 35 mil Market Cap & > 0
EPS * Sharesout < .5 and // Net Earnings last 12 mo less than 500k
//Revspershare > 0 and // eliminates some New & Foriegn Issues Dividend = 0) or
(Max(0,-30,Lo) < 1.00 or // Low not above $1.00 last 30 Days // Nasdaq sends Warning Letter 90 days left for compliance
Sharesfloat < .5 or // less than 500K shares trading
Sharesfloat*Close(0)< 1)) then //Market Value of Float < 1 Mil
Println Symbol,"",",", PE:5:0, " ,", date(0):12; endif; |