def WILLR(highs, lows, closes): """0?-100???, ?KDJ??, 0?-20??? -80?-100?? return: wr """ highs = np.array(highs) lows = np.array(lows) closes = np.array(closes) return talib.WILLR(highs,lows,closes)