Average Directional Movement Index
ADX measures the strength of a trend, with values above 25 indicating a strong trend.
Method
tm.ta.adx(source_high, source_low, source_close, timeperiod)
Inputs
Parameter | Argument type | Description | Default Value |
---|---|---|---|
source_high | pd.Series | High prices series | - |
source_low | pd.Series | Low prices series | - |
source_close | pd.Series | Close prices series | - |
timeperiod | int | Number of periods for the indicator | 14 |
Outputs
Output | Type |
---|---|
adx | np.ndarray |
Example usage
import tradomate as tm
@tm.strategy()def my_strategy(config: tm.TradomateConfig, data: tm.TradomateData):
# Trying out Average Directional Movement Index adx = tm.ta.adx(data.high, data.low, data.close, timeperiod=14)
# Get the last value and print last_value = adx.iloc[-1] tm.log(f"Last value of Average Directional Movement Index is {last_value}")
# Plot the values of adx tm.plot(adx, title="Average Directional Movement Index", overlay=False)