8 EMA luckman system

This is the place to discuss EdgeRater Chart Script

Moderator: Chris White

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

8 EMA luckman system

Post by henry1224 »

LE:=If(C>Ref(C,1) & C>O &
C>EMA(C,8) & C>Ref(H,1),1,0),ColorGreen;
SE:=If(C<Ref(C,1) & C<O &
C<EMA(C,8) & C<Ref(L,1),1,0),ColorRed;
FillRgn(LE==1,0,LE),Brush#50008000;
FillRgn(SE==1,0,SE),Brush#50800000;
FillRgn(LE==0 & SE==0,0,1),Brush#501E90FF;
henry1224
Posts: 457
Joined: Wed Feb 24, 2016 12:04 pm

Re: 8 EMA luckman system

Post by henry1224 »

8 EMA Luckman system w 3 CC 65 filter


LE:=If(C>Ref(C,1) & C>O &
C>EMA(C,8) & C>Ref(H,1) & Sum(C>MA(C,65),3)>2,1,0),ColorGreen;
SE:=If(C<Ref(C,1) & C<O &
C<EMA(C,8) & C<Ref(L,1) & Sum(C<MA(C,65),3)>2,1,0),ColorRed;
FillRgn(LE==1,0,LE),Brush#50008000;
FillRgn(SE==1,0,SE),Brush#50800000;
FillRgn(LE==0 & SE==0,0,1),Brush#501E90FF;
Post Reply