namespace anychart.math.aroon Improve this Doc
Namespace anychart.math.aroon
Learn more about indicator mathematics.
Functions Overview
| calculate() | Aroon calculation. |
| calculationFunction() | Calculates Aroon. |
| createComputer() | Creates an Aroon computer for the given table mapping. |
| initContext() | Creates a context for Aroon indicator calculation. |
| startFunction() | Start calculation function for Aroon indicator calculation. |
Typedefs Overview
| anychart.math.aroon.Context | Type definition for the context. |
Functions Description
calculate
Aroon calculation.
Params:
| Name | Type | Description |
|---|---|---|
| context | anychart.math.aroon.Context | Aroon context. |
| high | number | High value. |
| low | number | Low value. |
Returns:
Array.<number> - Calculated Aroon indicator values.calculationFunction
Calculates Aroon.
Params:
| Name | Type | Description |
|---|---|---|
| row | anychart.data.TableComputer.RowProxy | Row proxy. |
| context | anychart.math.aroon.Context | Context. |
Try it:
createComputer
Creates an Aroon computer for the given table mapping.
Params:
| Name | Type | Description |
|---|---|---|
| mapping | anychart.data.TableMapping | Data mapping. |
| period | number | Indicator period. |
Returns:
anychart.data.TableComputer - Table computer.Try it:
initContext
Creates a context for Aroon indicator calculation.
Params:
| Name | Type | Default | Description |
|---|---|---|---|
| period | number | 25 | Indicator period. |
Returns:
anychart.math.aroon.Context - Context.Try it:
startFunction
Start calculation function for Aroon indicator calculation.
Params:
| Name | Type | Description |
|---|---|---|
| context | anychart.math.aroon.Context | Context |
Try it:
