need help on exploration

#1
Hi,
i am trying to write an exploration formula which can help me to list stocks which statisfy the following conditions:

1) closing price higher or equals to previous closing
2) Volume greater than 10000000
3) If 1) and 2) is satisfied, further filter to see if Volume is greater or equals to previous day's volume

how can i write the above conditions into 1 exploration formula ?
thanks
 
#2
cmlee said:
Hi,
i am trying to write an exploration formula which can help me to list stocks which statisfy the following conditions:

1) closing price higher or equals to previous closing
2) Volume greater than 10000000
3) If 1) and 2) is satisfied, further filter to see if Volume is greater or equals to previous day's volume

how can i write the above conditions into 1 exploration formula ?
thanks


CLOSE>=Ref(CLOSE,-1)
AND
VOLUME >1000000
AND
VOLUME >=Ref(VOLUME,-1)