!EDS to select lower closes and lower Highs on 3 consecutive days.
LowerClose3 if val([close],2)> val([close],1)and val([close],1) > [close].
LowerHigh3 if val([High],2)> val([High],1)and val([High],1) > [High].
Select if LowerClose3 and LowerHigh3.
This picks quite a few stocks so you may need other filters- price and volume...for a start.
LowerClose3 if val([close],2)> val([close],1)and val([close],1) > [close].
LowerHigh3 if val([High],2)> val([High],1)and val([High],1) > [High].
Select if LowerClose3 and LowerHigh3.
This picks quite a few stocks so you may need other filters- price and volume...for a start.