Would it be possible to convert this Metastock formula (Double Stochastic10) into esignal's efs with buy, sell alerts.
(Buy signal when red line cross above 20, sell signal when red line cross below 80)
Thanks
Al Ergul
Period:= 10;
denom1:= If(HHV(H,Period)-LLV(L,Period)>0, HHV(H,Period)-LLV(L,Period), 1);
P1:= Mov(((C-LLV(L,Period))/ denom1)*100,3,E);
denom2 := If(HHV(P1,Period)-LLV(P1,Period)>0, HHV(P1,Period)-LLV(P1,Period), 1);
Mov(((P1-LLV(P1,Period))/denom2)*100,3,E)
Comment