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
Syntaxpublic static void CalculateAroon(
double[] highValues,
double[] lowValues,
int n,
out double[] aroonUpValues,
out double[] aroonDownValues
)
Public Shared Sub CalculateAroon (
highValues As Double(),
lowValues As Double(),
n As Integer,
<OutAttribute> ByRef aroonUpValues As Double(),
<OutAttribute> ByRef aroonDownValues As Double()
)
public:
static void CalculateAroon(
array<double>^ highValues,
array<double>^ lowValues,
int n,
[OutAttribute] array<double>^% aroonUpValues,
[OutAttribute] array<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