Chaos Balance Lines Blue

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

Chaos Balance Lines Blue

Post by henry1224 »

Here is an indicator to be plotted on top of Price


A3:WMA((H+L)/2,13),Width2,ColorGreen;
RA3:Ref(WMA((H+L)/2,13),8),Width2,ColorRed;
FillRgn(A3>RA3,A3,RA3),Brush#70008000;
FillRgn(A3<RA3,RA3,A3),Brush#70800000;
henry1224
Posts: 457
Joined: Wed Feb 24, 2016 12:04 pm

Re: Chaos Balance Lines Blue

Post by henry1224 »

Here is the Chaos Balance Lines Red Indicator. It should be plotted on top of Price

A2:WMA((H+L)/2,8),Width2,ColorGreen;
RA2:Ref(WMA((H+L)/2,8),5),Width2,ColorRed;
FillRgn(A2>RA2,A2,RA2),Brush#70008000;
FillRgn(A2<RA2,RA2,A2),Brush#70800000;
henry1224
Posts: 457
Joined: Wed Feb 24, 2016 12:04 pm

Re: Chaos Balance Lines Blue

Post by henry1224 »

Here is the Chaos Balance Lines Green indicator . It should be plotted on top of price


A1:WMA((H+L)/2,5),Width2,ColorGreen;
RA1:Ref(WMA((H+L)/2,5),3),Width2,ColorRed;
FillRgn(A1>RA1,A1,RA1),Brush#70008000;
FillRgn(A1<RA1,RA1,A1),Brush#70800000;
Post Reply