Average True Range
ATR measures market volatility by calculating the average range between high and low prices.
Method
tm.ta.atr(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 |
---|---|
atr | np.ndarray |
Example usage
import tradomate as tm
@tm.strategy()def my_strategy(config: tm.TradomateConfig, data: tm.TradomateData):
# Trying out Average True Range atr = tm.ta.atr(data.high, data.low, data.close, timeperiod=14)
# Get the last value and print last_value = atr.iloc[-1] tm.log(f"Last value of Average True Range is {last_value}")
# Plot the values of atr tm.plot(atr, title="Average True Range", overlay=False)