Click or drag to resize

TechnicalAnalysisRoutinesCalculateStochasticOscillatorValues Method

LightningChart .NET Help
Calculate Stochastic Oscillator values using given number of time periods (n)

Namespace:  Arction.CustomControls.Trader.WinForms.Routines
Assembly:  Arction.WinForms.TradingCharts (in Arction.WinForms.TradingCharts.dll) Version: 10.3.1
Syntax
public static void CalculateStochasticOscillatorValues(
	double[] closeValues,
	double[] highValues,
	double[] lowValues,
	int n,
	out double[] soValues,
	out double[] maValues
)

Parameters

closeValues
Type: SystemDouble
OHLC close values
highValues
Type: SystemDouble
OHLC high values
lowValues
Type: SystemDouble
OHLC low values
n
Type: SystemInt32
Period count
soValues
Type: SystemDouble
Stochastic oscillator values
maValues
Type: SystemDouble
3 day moving average values based on stochastic oscillator values
See Also