Registered User Joined: 1/6/2012 Posts: 11
|
I am getting a False on this formula and don't know why
any help is appreciated
5 <= C C <= 100
AVGV10>=250000
O<= .96 * C1
1. Price between $5-$100
2. Average Daily Volume (10 day) >= 250k
3. Current Day Open <= Previous Day Close -4%
|
Administration
Joined: 9/30/2004 Posts: 9,187
|
If you're putting this all in one PCF then you need to AND the conditions together:
5 <= C AND C <= 100 AND AVGV10 >= 250000 AND O <= .96 * C1
|