Click or drag to resize

TechnicalAnalysisRoutinesCalculateAroon Method

LightningChart .NET Help
Calculates Aroon indicator using given number of time periods (n). Returns both Aroon Up and Aroon Down values.

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

Parameters

highValues
Type: SystemDouble
OHLC data high values.
lowValues
Type: SystemDouble
OHLC data low values.
n
Type: SystemInt32
Period count.
aroonUpValues
Type: SystemDouble
Aroon Up values.
aroonDownValues
Type: SystemDouble
Aroon Down values.
See Also