can someone help me with this exploration

#1
Can someone please help me with the metastock exploration filter formula for the following criteria?

I want to filter stocks with:

ADX above 30
RSI above 30
Bol % above 80%
5 day average Price increase > 1% per day and Less than 3% per day.

Can anyone help me me with the right formula to enter into the explorer filter?? It is driving me crazy

Thanks

Alvin
 

oxusmorouz

Well-Known Member
#3
Can someone please help me with the metastock exploration filter formula for the following criteria?

I want to filter stocks with:

ADX above 30
RSI above 30
Bol % above 80%
5 day average Price increase > 1% per day and Less than 3% per day.

Can anyone help me me with the right formula to enter into the explorer filter?? It is driving me crazy

Thanks

Alvin
Hello Alvin,
Column A:
a:= ADX(14) > 30;
b:= RSI(14) > 30;
d:= Fml("BBS - Bollinger Band %b") > 80; {Must have Bollinger Bands plugin or Must be able to define it as an indicator with the same name in indicator builder}
f:= ROC(C,5,%);
g:= f > 5 and f < 15; {Average price increase of 1% per day means 5% over the entire periods of 5years. Similarly, an average price increase of 3% per day means 15% for a period of 5days}
a and b and d and g;

Filter:
ColA

Sincerely yours
 

Similar threads