Metastocks own formula

#1
a:close
b:C > Ref(C,-1) AND Ref(C,-1) < Ref(C,-2) AND Ref(C,-2) < Ref(C,-3)
c:V >= 10*Ref(V,-1)
d:RSI(9) >= 30
filter : colA AND colB AND colC
 

rh6996

Well-Known Member
#2
a:close
b:C > Ref(C,-1) AND Ref(C,-1) < Ref(C,-2) AND Ref(C,-2) < Ref(C,-3)
c:V >= 10*Ref(V,-1)
d:RSI(9) >= 30
filter : colA AND colB AND colC
Any AFL for it; Anyone to make AFL with these conditions!! BTW : Any rules for this Formula? What do we do with the list of Stocks that are thrown up on doing this Explaroation!???
 
#3
_SECTION_BEGIN("Price");
SetChartOptions(0,chartShowArrows|chartShowDates);
_N(Title = StrFormat("{{NAME}} - {{INTERVAL}} {{DATE}} Open %g, Hi %g, Lo %g, Close %g (%.1f%%) {{VALUES}}", O, H, L, C, SelectedValue( ROC( C, 1 ) ) ));
Plot( C, "Close", ParamColor("Color", colorBlack ), styleNoTitle | ParamStyle("Style") | GetPriceStyle() );


x = Close > Ref(Close,-1) AND Ref(Close,-1) < Ref(Close,-2) AND Ref(Close,-2) < Ref(Close,-3) AND Volume > 10*Ref(Volume,-1);
y = RSI(9) >=30;

Buy = x AND y;
Filter = Buy;
AddColumn(Close,"close");
AddColumn(Buy,"buy");
AddColumn(Volume,"volume");
_SECTION_END();


pm me if it gives good buy signal..

click explore to find the stocks..
 

Similar threads