Tilson's T3 T5 T8 T13 Moving Average

A forum for all EdgeRater users

Moderator: Chris White

Post Reply
henry1224
Posts: 457
Joined: Wed Feb 24, 2016 12:04 pm

Tilson's T3 T5 T8 T13 Moving Average

Post by henry1224 »

This plots 4 moving Averages


A1:= (O+H+L+C)/4;
e1:=EMA(A1,3);
e2:=EMA(e1,3);
e3:=EMA(e2,3);
e4:=EMA(e3,3);
e5:=EMA(e4,3);
e6:=EMA(e5,3);
e1a:=EMA(A1,5);
e2a:=EMA(e1a,5);
e3a:=EMA(e2a,5);
e4a:=EMA(e3a,5);
e5a:=EMA(e4a,5);
e6a:=EMA(e5a,5);
e1b:=EMA(A1,8);
e2b:=EMA(e1b,8);
e3b:=EMA(e2b,8);
e4b:=EMA(e3b,8);
e5b:=EMA(e4b,8);
e6b:=EMA(e5b,8);
e1c:=EMA(A1,13);
e2c:=EMA(e1c,13);
e3c:=EMA(e2c,13);
e4c:=EMA(e3c,13);
e5c:=EMA(e4c,13);
e6c:=EMA(e5c,13);

c1:=-.618*.618*.618;
c2:=3*.618*.618+3*.618*.618*.618;
c3:=-6*.618*.618-3*.618-3*.618*.618*.618;
c4:=1+3*.618+.618*.618*.618+3*.618*.618;
T13:c1*e6c+c2*e5c+c3*e4c+c4*e3c,Width2,ColorBlue;
T8:c1*e6b+c2*e5b+c3*e4b+c4*e3b,Width2,ColorCyan;
T5:c1*e6a+c2*e5a+c3*e4a+c4*e3a,Width2,ColorRed;
T3:c1*e6+c2*e5+c3*e4+c4*e3,Width2,ColorGreen;
henry1224
Posts: 457
Joined: Wed Feb 24, 2016 12:04 pm

Re: Tilson's T3 T5 T8 T13 Moving Average

Post by henry1224 »

Here is a chart with Tilson's 4 Ma and ATR Bands

Image
Post Reply