Page 1 of 1

Awesome Oscillator

Posted: 14 Jan 2009
by shortski
I was told this was available here but can't find it. Is anyone familiar with the indicator and if so, can you post the code?

Thanks

Posted: 14 Jan 2009
by TJ

Code: Select all

// Awesome Oscillator

Input:
ST.length(5),
LT.Length(34);

var:
AO(0);

AO = AverageFC( MedianPrice, ST.length) - AverageFC(MedianPrice, LT.length);

plot1( AO, "Awesome");
edited 20090114 17:20ET

Posted: 15 Jan 2009
by shortski
thanks

I will give this a try