Page 1 of 1

PS Aroon Reversal

Posted: Fri Jul 29, 2016 12:15 pm
by henry1224
Under the Parameters tab

N Double 14 3 100




Here is The code

A1:="Aroon(N)[Up]";
A2:="Aroon(N)[Down]";
a:=A1==100 & A2==0;
b:=A1==0 & A2==100;
Long:BarsSince(A)<BarsSince(B),ColorGreen;
Short:BarsSince(A)>BarsSince(B),ColorRed;
FillRgn(Long>0,0,Long),Brush#50008000;
FillRgn(Short>0,0,Short),Brush#50800000;