logo
Welcome Guest! To enable all features please Login or Register.

Notification

Icon
Error

Options
Go to last post Go to first unread
pirx  
#1 Posted : Sunday, March 12, 2006 3:05:20 PM(UTC)
pirx

Rank: Advanced Member

Groups: Registered, Registered Users
Joined: 10/18/2005(UTC)
Posts: 43
Location: Slovenia, EU

Hello! Since there is only a "Stochastic Oscillator" available in MS, I wonder, how could a "Slow Stochastic" be constructed? I tried to find a formula for it, but with no success. Any help with resolving this question is apprechiated! :) With best regards, Henrik
henry1224  
#2 Posted : Sunday, March 12, 2006 5:35:57 PM(UTC)
henry1224

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;
pirx  
#3 Posted : Sunday, March 12, 2006 9:59:06 PM(UTC)
pirx

Rank: Advanced Member

Groups: Registered, Registered Users
Joined: 10/18/2005(UTC)
Posts: 43
Location: Slovenia, EU

Hi! Thanks for your answer. I´ll try to implement this formula to MS tomorrow.
pirx  
#4 Posted : Tuesday, March 14, 2006 10:11:59 PM(UTC)
pirx

Rank: Advanced Member

Groups: Registered, Registered Users
Joined: 10/18/2005(UTC)
Posts: 43
Location: Slovenia, EU

It works fine, thanks again! I plotted the Stochastics %D and Stochastics %D Slow - I think this should be it.
Users browsing this topic
Guest (Hidden)
Forum Jump  
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.