Page 1 of 1

Stochastic Cycles

Posted: Fri May 13, 2016 2:23 pm
by henry1224
Here is an indicator which plots 3 Stochastics

Type:=(H+L)/2;
A1:MA((((type-LLV(L,10))/(HHV(H,10)-LLV(L,10)))*100),3),ColorLime;
A2:MA((((type-LLV(L,20))/(HHV(H,20)-LLV(L,20)))*100),3),ColorPink;
A3:MA((((type-LLV(L,40))/(HHV(H,40)-LLV(L,40)))*100),3),ColorCyan;
S1:MA(A1,3),ColorGreen;
S2:MA(A2,3),ColorRed;
S3:MA(A3,3),ColorBlue;
Eighty:80,ColorBlack;
Twenty:20,ColorBlack;