def ATR(highs, lows, closes): """????""" highs = np.array(highs) lows = np.array(lows) closes = np.array(closes) return talib.ATR(highs, lows, closes)