def ADX(highs, lows, closes): """??????, ADX????????????????????? DMI??ADX?DX""" highs = np.array(highs) lows = np.array(lows) closes = np.array(closes) return talib.ADX(highs, lows, closes, timeperiod=14)