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