ACC Green , Red , Blue from profitunity

A forum for all EdgeRater users

Moderator: Chris White

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

ACC Green , Red , Blue from profitunity

Post by henry1224 »

Here are three oscillator from Profitunity ACC , Modified by me

ACC Green

B:
MA((H+L)/2,5)- MA((H+L)/2,17)-
MA(MA((H+L)/2,5)- MA((H+L)/2,17),5),ColorStick;
ZeroLine:0,ColorBlack;
UpperZone: MA(B,34)+(1.3185*Std(B,34)),Width2,ColorViolet;
LowerZone: MA(B,34)-(1.3185*Std(B,34)),Width2,ColorViolet;
SIG:MA(B,5),ColorBlue;


ACC Red


B:
MA((H+L)/2,5)- MA((H+L)/2,34)-
MA(MA((H+L)/2,5)- MA((H+L)/2,34),5),ColorStick;
ZeroLine:0,ColorBlack;
UpperZone: MA(B,34)+(1.3185*Std(B,34)),Width2,ColorViolet;
LowerZone: MA(B,34)-(1.3185*Std(B,34)),Width2,ColorViolet;
SIG:MA(B,5),ColorBlue;



ACC Blue


B:
MA((H+L)/2,10)- MA((H+L)/2,70)-
MA(MA((H+L)/2,10)- MA((H+L)/2,70),10),ColorStick;
ZeroLine:0,ColorBlack;
UpperZone: MA(B,34)+(1.3185*Std(B,34)),Width2,ColorViolet;
LowerZone: MA(B,34)-(1.3185*Std(B,34)),Width2,ColorViolet;
SIG:MA(B,5),ColorBlue;
henry1224
Posts: 457
Joined: Wed Feb 24, 2016 12:04 pm

Re: ACC Green , Red , Blue from profitunity

Post by henry1224 »

Here is a chart with these indicators

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

Re: ACC Green , Red , Blue from profitunity

Post by henry1224 »

Here are the new versions of these indicators

ACC Green

OST:=
MA((H+L)/2,5)- MA((H+L)/2,17)-
MA(MA((H+L)/2,5)- MA((H+L)/2,17),5);
Con1:= OST >= 0;
Con2:= OST < 0;
Con3:= OST > Ref(OST,1);
Con4:= OST < Ref(OST,1);
BullRise:If(Con1 & Con3,OST,0),ColorLime;
BullFall: If(Con1 & Con4,OST,0),ColorGreen;
BearFall: If(Con2 & Con4,OST,0),ColorRed;
BearRise: If(Con2 & Con3,OST,0),ColorDarkRed;
OSTAvg:MA(OST,N),width2,ColorBlue;
ZeroLine:0,ColorBlack;
UpperZone:MA(OST,34)+(1.3185*Std(OST,34)),width2,colorViolet;
LowerZone:MA(OST,34)-(1.3185*Std(OST,34)),width2,colorViolet;
FillRgn(1,BullRise,0),Brush#5000FF00;
FillRgn(1,BullFall,0),Brush#50006400;
FillRgn(1,BearRise,0),Brush#508B0000;
FillRgn(1,BearFall,0),Brush#50FF0000;

Acc Red

OST:=
MA((H+L)/2,5)- MA((H+L)/2,34)-
MA(MA((H+L)/2,5)- MA((H+L)/2,34),5);
Con1:= OST >= 0;
Con2:= OST < 0;
Con3:= OST > Ref(OST,1);
Con4:= OST < Ref(OST,1);
BullRise:If(Con1 & Con3,OST,0),ColorLime;
BullFall: If(Con1 & Con4,OST,0),ColorGreen;
BearFall: If(Con2 & Con4,OST,0),ColorRed;
BearRise: If(Con2 & Con3,OST,0),ColorDarkRed;
OSTAvg:MA(OST,N),width2,ColorBlue;
ZeroLine:0,ColorBlack;
UpperZone:MA(OST,34)+(1.3185*Std(OST,34)),width2,colorViolet;
LowerZone:MA(OST,34)-(1.3185*Std(OST,34)),width2,colorViolet;
FillRgn(1,BullRise,0),Brush#5000FF00;
FillRgn(1,BullFall,0),Brush#50006400;
FillRgn(1,BearRise,0),Brush#508B0000;
FillRgn(1,BearFall,0),Brush#50FF0000;

ACC Blue

OST:=
MA((H+L)/2,10)- MA((H+L)/2,70)-
MA(MA((H+L)/2,10)- MA((H+L)/2,70),10);
Con1:= OST >= 0;
Con2:= OST < 0;
Con3:= OST > Ref(OST,1);
Con4:= OST < Ref(OST,1);
BullRise:If(Con1 & Con3,OST,0),ColorLime;
BullFall: If(Con1 & Con4,OST,0),ColorGreen;
BearFall: If(Con2 & Con4,OST,0),ColorRed;
BearRise: If(Con2 & Con3,OST,0),ColorDarkRed;
OSTAvg:MA(OST,N),width2,ColorBlue;
ZeroLine:0,ColorBlack;
UpperZone:MA(OST,34)+(1.3185*Std(OST,34)),width2,colorViolet;
LowerZone:MA(OST,34)-(1.3185*Std(OST,34)),width2,colorViolet;
FillRgn(1,BullRise,0),Brush#5000FF00;
FillRgn(1,BullFall,0),Brush#50006400;
FillRgn(1,BearRise,0),Brush#508B0000;
FillRgn(1,BearFall,0),Brush#50FF0000;
Post Reply