Aroon Oscillator

Studies that have been contributed to the community by other users. If you’ve got something useful to share, that’s great!
Algyros
Posts: 52
Joined: 28 Sep 2009
Location: Austin, TX
Has thanked: 1 time
Been thanked: 5 times

Aroon Oscillator

Postby Algyros » 02 Feb 2010

Is the Aroon Oscillator available as a study on MC?

brodnicki steven
Posts: 407
Joined: 01 Jan 2008
Been thanked: 3 times

Postby brodnicki steven » 02 Feb 2010

It should be available on the internet for TS, when you find it, you can import it into the power editor of MC.

raven
Posts: 31
Joined: 17 Oct 2009
Been thanked: 1 time

Postby raven » 01 Mar 2010

I am also interested in the Aroon but unfortunately didn't find in in the net. Had anybody more luck?

brodnicki steven
Posts: 407
Joined: 01 Jan 2008
Been thanked: 3 times

Postby brodnicki steven » 01 Mar 2010

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/

Laurent
Posts: 159
Joined: 20 Nov 2010
Location: France
Has thanked: 76 times
Been thanked: 34 times

Re: Aroon Oscillator

Postby Laurent » 09 Feb 2011

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");


Return to “User Contributed Studies and Indicator Library”