# 方法1:不定义HHV函数 n=20 # 最后一根K线收盘价大于前N根K线高点 if klines.close.iloc[-1]>klines.high.iloc[-(n+1):-1].max(): pass # 方法2:定义HHV函数...