PS Bull power Bear Power 1 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

PS Bull power Bear Power 1 System

Post by henry1224 »

LE:If((H-EMA(C,13))>0-(L-EMA(C,13)),1,0),ColorGreen;
SE:If((L-EMA(C,13))<0-(H-EMA(C,13)),1,0),ColorRed;
FillRgn(LE==1,0,LE),Brush#50008000;
FillRgn(SE==1,0,SE),Brush#50800000;
Last edited by henry1224 on Fri Jul 29, 2016 12:45 pm, edited 1 time in total.
henry1224
Posts: 457
Joined: Wed Feb 24, 2016 12:04 pm

Re: PS Bull power Bear Power 1 System

Post by henry1224 »

Here is another version with a 3cc65 Trend Filter

LE:If((H-EMA(C,13))>0-(L-EMA(C,13)) & Sum(C>MA(C,65),3)>2,1,0),ColorGreen;
SE:If((L-EMA(C,13))<0-(H-EMA(C,13)) & 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