0
关注
0
关注者
def Buyingtrack():
ticker = exchange.GetTicker()
lastprice = ticker.Last
while True:
Sleep(500)
ticker = exchange.GetTicker()
if lastprice >= ticker.Last:
lastprice = ticker.Last
elif lastprice * (1+(bounce/100)) == ticker.Last:
break
return True
相关推荐
