Page 1 of 1

Aroon Oscillator

Posted: 02 Feb 2010
by Algyros
Is the Aroon Oscillator available as a study on MC?

Posted: 02 Feb 2010
by brodnicki steven
It should be available on the internet for TS, when you find it, you can import it into the power editor of MC.

Posted: 01 Mar 2010
by raven
I am also interested in the Aroon but unfortunately didn't find in in the net. Had anybody more luck?

Posted: 01 Mar 2010
by brodnicki steven
I am also interested in the Aroon but unfortunately didn't find in in the net. Had anybody more luck?
I just searched the net and found this- I hope it's what you're looking for.

http://tradersguild.wordpress.com/2008/ ... scillator/

Re: Aroon Oscillator

Posted: 09 Feb 2011
by Laurent
Just in case, as the link was not available, here is the code of the indicator...

Code: Select all

input:thold(20),length(25);
var:hiref(0),loref(0);
hiref=100*((length-nthhighestbar(1,h,length))/length);
loref=100*((length-nthlowestbar(1,l,length))/length);
plot1(hiref,"hi");
plot2(loref,"lo");
plot3(50+thold,"hiref");
plot4(50-thold,"loref");