Skip to content

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

ParameterArgument typeDescriptionDefault Value
source_highpd.SeriesHigh prices series-
source_lowpd.SeriesLow prices series-
source_closepd.SeriesClose prices series-
timeperiodintNumber of periods for the indicator14

Outputs

OutputType
atrnp.ndarray

Example usage

strategy.py
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)