ddzs= (klines.low.iloc[-2]-quote.last_price)/klines.low.iloc[-2]
if ddzs>0.0002
然后报错
TypeError: ‘>’ not supported between instances of ‘tuple’ and ‘float’
应该怎么修改
李思恒 已回答的问题 2022年3月14日
ddzs= (klines.low.iloc[-2]-quote.last_price)/klines.low.iloc[-2]
if ddzs>0.0002
然后报错
TypeError: ‘>’ not supported between instances of ‘tuple’ and ‘float’
应该怎么修改