[ Reverse Split or Worse Scan ]
John and All.
I have been playing a lot of Stocks NEAR $1.00 recently but I don't want to get caught in Limbo.
The New Nasdaq Rules are now in full effect.
Does anyone have thoughts on these 2 Scans? How Can I combine them and are they correct ... as good as it gets??
Thanks, Any thoughts will be Greatly Appreciated.
Message 3499039
And Thanks Sean!
Ray
************************************
// Find Stocks that May Be DE-LISTED // or Reverse Split
Output="Naz1.lst" //;input = "Nas1.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 then
Println Symbol,"",",", PE:5:0, " ,", date(0):12 ;endif;
************************
Output="Nas1.lst" //;input = "111Fast.lst" ;Exchange Nasdaq ;IssueType Common, Preferred ; DaystoLoad=500
;If 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 and //Market Value of Float < 1 Mil
Println Symbol,"",",", PE:5:0, " ,", date(0):12 ;endif; |