3 Lower highs and closes for Pcer

ChartMan

Legendary member
Messages
5,580
Likes
47
!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.
 

Attachments

  • 3barslower.eds
    673 bytes · Views: 452
Top