Guppy RSI Osc
Posted: Fri Jun 24, 2016 4:54 pm
under the parameter tab
SN double 5 3 100
Here is the indicator
RS1:= RSI(C,3)-RSI(C,12);
RS2:= 2*(RSI(C,5)-RSI(C,20));
RS3:= 3*(RSI(C,8)-RSI(C,32));
RS4:= 4*(RSI(C,13)-RSI(C,52));
RS5:= 5*(RSI(C,21)-RSI(C,84));
B:=MA(MA((RS1+RS2+RS3+RS4+RS5)/15,2),2);
Signal: MA(B,SN),ColorBlue;
Con1:= B >= 0;
Con2:= B < 0;
Con3:= B > Ref(B,1);
Con4:= B < Ref(B,1);
BullRise: If(Con1 & Con3, B,0),ColorLime;
BullFall: If(Con1 & Con4, B,0),ColorGreem;
BearFall: If(Con2 & Con4, B,0),ColorRed;
BearRise: If(Con2 & Con3, B,0),ColorDarkRed;
ZeroLine:0,ColorBlack;
UZ: MA(B,34)+(1.3185*Std(B,34)),Width2,ColorViolet;
LZ: MA(B,34)-(1.3185*Std(B,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;
SN double 5 3 100
Here is the indicator
RS1:= RSI(C,3)-RSI(C,12);
RS2:= 2*(RSI(C,5)-RSI(C,20));
RS3:= 3*(RSI(C,8)-RSI(C,32));
RS4:= 4*(RSI(C,13)-RSI(C,52));
RS5:= 5*(RSI(C,21)-RSI(C,84));
B:=MA(MA((RS1+RS2+RS3+RS4+RS5)/15,2),2);
Signal: MA(B,SN),ColorBlue;
Con1:= B >= 0;
Con2:= B < 0;
Con3:= B > Ref(B,1);
Con4:= B < Ref(B,1);
BullRise: If(Con1 & Con3, B,0),ColorLime;
BullFall: If(Con1 & Con4, B,0),ColorGreem;
BearFall: If(Con2 & Con4, B,0),ColorRed;
BearRise: If(Con2 & Con3, B,0),ColorDarkRed;
ZeroLine:0,ColorBlack;
UZ: MA(B,34)+(1.3185*Std(B,34)),Width2,ColorViolet;
LZ: MA(B,34)-(1.3185*Std(B,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;