Implements a general framework for producing extreme value trading signals using Stochastic indicators.
[Visual Basic]
Overloads Public Shared Function ExtremeValueKSignal( _
ByVal s As Series, _
ByVal extremeLow As Double , _
ByVal extremeHigh As Double , _
ByVal noOfPeriods As Integer _
) As Series
[C#]
public static Series ExtremeValueKSignal(
Series s,
double extremeLow,
double extremeHigh,
int noOfPeriods
);
-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 ideea of this approach is to seek points which are oversold or over brought levels which are turning.
Buy when the the Stochastic %K 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.