Registered User Joined: 6/18/2011 Posts: 2
|
I want to finds stocks with 1. closing price between 40 to 110 2. daily volume above 1 million 3. trading in range above 15 % of 15 days high
|
Administration
Joined: 9/30/2004 Posts: 9,187
|
Try creating a condition using the formula below:
C > 40 and C< 110 and AVGV90 > 1000000 and MAXH15 - MINL15 > MAXH15 * .15
|