Rank: Advanced Member
Groups: Registered, Registered Users, Subscribers Joined: 10/29/2004(UTC) Posts: 1,394 Location: Glastonbury, CT
Was thanked: 2 time(s) in 2 post(s)
|
Stochastic % D Slow
Per1:=Input("length of stoch",1,100,14);
Per2:=Input("length of ma1",1,100,3);
Per3:=Input("length of ma2",1,100,3);
Mov((Mov((((CLOSE-LLV(L,Per1))/(HHV(H,Per1)-LLV(L,Per1)))*100),Per2,S)),Per3,S)
Stochastic % D
Per1:=Input("length of stoch",1,100,14);
Per2:=Input("length of ma",1,100,3);
Mov((((CLOSE-LLV(L,Per1))/(HHV(H,Per1)-LLV(L,Per1)))*100),Per2,S)
Stochastic %K
Per1:=Input("length of stoch",1,100,14);
((CLOSE - LLV(L,Per1))/(HHV(H,Per1)-LLV(L,Per1)))*100
Forward % D
N:=Input("periods",1,100,14);
K:=(HHV(Ref(H,-N),N)-C)/(HHV(Ref(H,-N),N)-LLV(Ref(L,-N),N));
D:=Mov(K,3,S);
D;
Forward %K
N:=Input("periods",1,100,14);
(HHV(Ref(H,-N),N)-C)/(HHV(Ref(H,-N),N)-LLV(Ref(L,-N),N))
|