Evaluates the Aroon Oscillator over all periods where sufficient historical data is provided.
[Visual Basic]
Overloads Public Shared Function AroonOscillatorOverPeriod( _
ByVal seriesName As String, _
ByVal s As Series, _
ByVal lengthOfPeriod As Integer _
) As Series
[C#]
public static Series AroonOscillatorOverPeriod(
string seriesName,
Series s,
int lengthOfPeriod
);
A series where the first term is the value of the Aroon Oscillator for the most recent period, the second term is the value of the Aroon Oscillator for the previous period and so on.
The Aroon Oscillator over each period is evaluated using the following formulae:
Aroon Oscillator = (Aroon Up Indicator) - (Aroon Down Indicator)
where 'Aroon Up Indicator' and `Aroon Down Indicator' are evaluated using.
The Aroon Up indicator is given by:
100(n - (number of days since last highest high over n days))/n
where n is the number of days being considered (a reasonable default value for n is 14).
The Aroon Down indicator is given by:
100(n - (number of days since last highest high over n days))/n
where n is the number of days being considered (a reasonable default value for n is 14).
FinancialEngine Class | FinancialEngine Members | Overload List
2002 - 2005 Webavail Productions Inc. & Corporate Web Solutions Ltd.. All Rights Reserved.