Aroon
Aroon identifies the time elapsed since a security recorded its highest or lowest price.
Method
Inputs
Parameter | Argument type | Description | Default Value |
---|---|---|---|
source_high | pd.Series | High prices series | - |
source_low | pd.Series | Low prices series | - |
timeperiod | int | Number of periods for the indicator | 14 |
Outputs
The outputs are returned as a tuple of objects. Make sure to unpack them as shown in the example usage.
Output | Type |
---|---|
aroondown | np.ndarray |
aroonup | np.ndarray |