For further details concerning the definition of these moving averages please see the accompanying PDF documentation or the API documentation for SimpleMovingAverage.
Implements a general framework for producing extreme value trading signals using Stochastic indicators.
[Visual Basic]
Overloads Public Shared Function ExtremeValueDSignal( _
ByVal seriesName As String , _
ByVal s As Series, _
ByVal extremeLow As Double , _
ByVal extremeHigh As Double , _
ByVal noOfPeriods As Integer , _
ByVal method As Integer , _
ByVal lengthOfMA As Integer _
) As Series
[C#]
public static Series ExtremeValueDSignal(
string seriesName,
Series s,
double extremeLow,
double extremeHigh,
int noOfPeriods,
int method,
int lengthOfMA
);
For further details concerning the definition of these moving averages please see the accompanying PDF documentation or the API documentation for SimpleMovingAverage.
-1, 0, 1 - this method returns either -1, 0, 1 to indicate that either a sell, no action or buy signal was generated.
Note, that the general ides of this approach is to seek points which are oversold or over brought levels which are turning.
Buy when the Oscillator the Stochastic %D falls below a specific level (e.g. 20) and then rises above that level. Sell when the Oscillator rises above a specific level (e.g. 80) and then falls below that level. This approach is the preferred method of the Stochastics original creator George Lane.
FinancialEngine Class | FinancialEngine Members | Overload List
2002 - 2005 Webavail Productions Inc. & Corporate Web Solutions Ltd.. All Rights Reserved.