----- Original Message ----- 
    
    
    Sent: Friday, February 11, 2005 6:54 
    PM
    Subject: [EquisMetaStock Group] how to 
    find maximum down days
    
    The following formula in the filter finds 
    stocks which have fallen for 5 straight days:
    CLOSE<Ref(CLOSE,-1) AND 
    Ref(CLOSE,-2)>Ref(CLOSE,-1) AND
Ref(CLOSE,-3)>Ref(CLOSE,-2) 
    AND
Ref(CLOSE,-4)>Ref(CLOSE,-3)AND 
    
Ref(CLOSE,-5)>Ref(CLOSE,-4)
     
    Can anybody suggest formula which finds stock 
    which have fallen 5 out of 7 days or 4 out of 6 days 
    etc.