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)
|
Stochastics % K is the fast version of Stochastics,
If you use %K then use %D as the signal line
Stochastics%D is a smoothed version of Stochastics %K
If you use %D as the stochastic , then use %D Slow as the signal line
Stochastics%D Slow is a Smoothed version of Stochastics % D
Stochastics Combined Gives you both the signal line and the stochastic
Stochastics %K
Per1:=Input("length of stoch",1,100,14);
A:=((C - LLV(L,Per1))/(HHV(H,Per1)-LLV(L,Per1)))*100;
A;
Stochastics %D
Per1:=Input("length of stoch",1,100,14);
Per2:=Input("length of ma",1,100,3);
A:=Mov((((C-LLV(L,Per1))/(HHV(H,Per1)-LLV(L,Per1)))*100),Per2,S);
A;
Stochastics % D Slow
Per1:=Input("length of stoch",1,100,14);
Per2:=Input("length of ma",1,100,3);
Per3:=Input("length of ma2",1,100,3);
A:= Mov((Mov((((C-LLV(L,Per1))/(HHV(H,Per1)-LLV(L,Per1)))*100),Per2,S)),Per3,S);
A;
Stochastics Combined
Per1:=Input("length of stoch",1,100,14);
Per2:=Input("length of ma",1,100,3);
Per3:=Input("length of ma2",1,100,3);
A:=Mov((((C-LLV(L,Per1))/(HHV(H,Per1)-LLV(L,Per1)))*100),Per2,S);
A1:= Mov((Mov((((C-LLV(L,Per1))/(HHV(H,Per1)-LLV(L,Per1)))*100),Per2,S)),Per3,S);
A;A1;
The indicators below require the PowerPivots Plus Add-on, they allow the user to plot Multi time frame indicators onto a lower time frame chart
Stochastics % K w TDC
Per1:=Input("length of stoch",1,100,14);
factor:=Input("TFactor", 0, 1000, 1);
offset:=Input("Offset", 0, 1000, 0);
HD:=ExtFml("PowerPivots.TDataCreate",1, factor);
LD:=ExtFml("PowerPivots.TDataCreate",2, factor);
CD:=ExtFml("PowerPivots.TDataCreate",3, factor);
A:=((CD - LLV(LD,Per1))/(HHV(HD,Per1)-LLV(LD,Per1)))*100;
A:=ExtFml("PowerPivots.TDataLocalize",A, factor, offset);
A;
Stochastics %D w TDC
Per1:=Input("length of stoch",1,100,14);
Per2:=Input("length of ma",1,100,3);
factor:=Input("TFactor", 0, 1000, 1);
offset:=Input("Offset", 0, 1000, 0);
HD:=ExtFml("PowerPivots.TDataCreate",1, factor);
LD:=ExtFml("PowerPivots.TDataCreate",2, factor);
CD:=ExtFml("PowerPivots.TDataCreate",3, factor);
A:=Mov((((CD-LLV(LD,Per1))/(HHV(HD,Per1)-LLV(LD,Per1)))*100),Per2,S);
A:=ExtFml("PowerPivots.TDataLocalize",A, factor, offset);
A;
Stochastics % D Slow w TDC
Per1:=Input("length of stoch",1,100,14);
Per2:=Input("length of ma",1,100,3);
Per3:=Input("length of ma2",1,100,3);
factor:=Input("TFactor", 0, 1000, 1);
offset:=Input("Offset", 0, 1000, 0);
HD:=ExtFml("PowerPivots.TDataCreate",1, factor);
LD:=ExtFml("PowerPivots.TDataCreate",2, factor);
CD:=ExtFml("PowerPivots.TDataCreate",3, factor);
A:= Mov((Mov((((CD-LLV(LD,Per1))/(HHV(HD,Per1)-LLV(LD,Per1)))*100),Per2,S)),Per3,S);
A:=ExtFml("PowerPivots.TDataLocalize",A, factor, offset);
A;
Stochastics Combined w TDC
Per1:=Input("length of stoch",1,100,14);
Per2:=Input("length of ma",1,100,3);
Per3:=Input("length of ma2",1,100,3);
factor:=Input("TFactor", 0, 1000, 1);
offset:=Input("Offset", 0, 1000, 0);
HD:=ExtFml("PowerPivots.TDataCreate",1, factor);
LD:=ExtFml("PowerPivots.TDataCreate",2, factor);
CD:=ExtFml("PowerPivots.TDataCreate",3, factor);
A:=Mov((((CD-LLV(LD,Per1))/(HHV(HD,Per1)-LLV(LD,Per1)))*100),Per2,S);
A1:= Mov((Mov((((CD-LLV(LD,Per1))/(HHV(HD,Per1)-LLV(LD,Per1)))*100),Per2,S)),Per3,S);
A:=ExtFml("PowerPivots.TDataLocalize",A, factor, offset);
A1:=ExtFml("PowerPivots.TDataLocalize",A1, factor, offset);
A;A1;
|