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

Notification

Icon
Error

Options
Go to last post Go to first unread
henry1224  
#1 Posted : Saturday, April 23, 2005 6:44:59 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)
MACD DEMA Smoothed shortperiods:=Input("Enter the shorter DEMA periods: ",3,20,12); longperiods:=Input("Enter the longer DEMA periods: ",21,50,26); signal:=Input("Enter the number of signal line periods: ",3,50,9); Dema(C,shortperiods)-Dema(C,longperiods); Mov(Dema(C,shortperiods)-Dema(C,longperiods),signal,E) MACD TEMA Smoothed shortperiods:=Input("Enter the shorter TEMA periods: ",3,20,12); longperiods:=Input("Enter the longer TEMA periods: ",21,50,26); signal:=Input("Enter the number of signal line periods: ",3,50,9); Tema(C,shortperiods)-Tema(C,longperiods); Mov(Tema(C,shortperiods) - Tema(C,longperiods),signal,E)
henry1224  
#2 Posted : Saturday, April 23, 2005 6:57:07 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)
plot this on a Daily Chart A1:=Mov(MP(),12,S)-Mov(MP(),26,S); S1:=Mov(A1,9,S); A2:=Mov(MP(),60,S)-Mov(MP(),130,S); S2:=Mov(A2,45,S); 0;A1;S1;A2;S2;
henry1224  
#3 Posted : Saturday, April 23, 2005 7:07:16 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)
A:=Mov(ROC(Mov((Mov(C,10,E) - Mov(C,20,E)),10,E),10,$),3,E); Signal:=Mov(A,5,S); UZ:=Mov(A,34,S)+(1.3185*Stdev(A,34)); LZ:=Mov(A,34,S)-(1.3185*Stdev(A,34)); UZ;LZ; A;Signal;
henry1224  
#4 Posted : Saturday, April 23, 2005 8:31:14 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)
One := Mov(C,11,E)-Mov(C,30,E); Two := Mov(Mov(C,11,E)-Mov(C,30,E),12,E); Three := Mov(Mov(C,11,E)-Mov(C,30,E),25,E); Four := Mov(Mov(C,11,E)-Mov(C,30,E),50,E); 0;One; Two; Three; Four
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.