Page 1 of 1

ACC Green , Red , Blue from profitunity

Posted: Wed May 11, 2016 7:49 pm
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;

Re: ACC Green , Red , Blue from profitunity

Posted: Sun May 15, 2016 8:02 pm
by henry1224
Here is a chart with these indicators

Image

Re: ACC Green , Red , Blue from profitunity

Posted: Sat Jun 11, 2016 11:34 am
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;