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

Notification

Icon
Error

Options
Go to last post Go to first unread
MS Support  
#1 Posted : Monday, July 28, 2014 1:43:50 PM(UTC)
MS Support

Rank: Advanced Member

Groups: Moderators, Registered, Registered Users, Subscribers
Joined: 10/8/2010(UTC)
Posts: 1,934

Thanks: 85 times
Was thanked: 154 time(s) in 150 post(s)

John F. Ehlers' article, “Predictive Indicators for Effective Trading Strategies”, presented an three new indicators. The formulas for these indicators are listed below:

SuperSmoother Filter:

a1:= Exp(-1.414 * 3.14159 / 10);

b1:= 2*a1 * Cos(1.414*180 /10);

c2:= b1;

c3:= -a1 * a1;

c1:= 1 - c2 - c3;

c1 * (C + Ref(C, -1))/2 + c2*PREV + c3*Ref(PREV,-1)

Roofing Filter:

alpha1:= (Cos(.707*360/48) + Sin(.707*360/48)

-1)/Cos(.707*360/48);

HP:= (1-alpha1/2)*(1-alpha1/2)*(C - Ref(2*C,-1) + Ref(C,-2))

+ 2*(1-alpha1)*PREV - (1-alpha1)*(1-alpha1)*Ref(PREV,-1);

a1:= Exp(-1.414 * 3.14159 / 10);

b1:= 2*a1 * Cos(1.414*180 /10);

c2:= b1;

c3:= -a1 * a1;

c1:= 1 - c2 - c3;

c1 * (HP + Ref(HP, -1))/2 + c2*PREV + c3*Ref(PREV,-1)

MESA Stochastic:

alpha1:= (Cos(.707*360/48) + Sin(.707*360/48)

-1)/Cos(.707*360/48);

HP:= (1-alpha1/2)*(1-alpha1/2)*(C - Ref(2*C,-1) + Ref(C,-2))

+ 2*(1-alpha1)*PREV - (1-alpha1)*(1-alpha1)*Ref(PREV,-1);

a1:= Exp(-1.414 * 3.14159 / 10);

b1:= 2*a1 * Cos(1.414*180 /10);

c2:= b1;

c3:= -a1 * a1;

c1:= 1 - c2 - c3;

filt:= c1 * (HP + Ref(HP, -1))/2 + c2*PREV + c3*Ref(PREV,-1);

stoc:= (filt-LLV(filt,20))/(HHV(filt,20)-LLV(filt,20));

c1 * (stoc + Ref(stoc, -1))/2 + c2*PREV + c3*Ref(PREV,-1)

Edited by user Wednesday, August 23, 2017 5:48:35 PM(UTC)  | Reason: Not specified

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.