fut
fut copied to clipboard
How to buy cheapest cards as soon as possible?
...
while True:
fit = bot.search(...,max_buy=400)
for x in fit:
if count >= 100: break
flag = bot.bid(x['tradeId'], x['buyNowPrice'], fast=True)
print("bot %s at:%d" % (x['tradeId'], x['buyNowPrice']))
print(flag)
if flag:
bot.sendToClub(x['id'])
count += 1
print("count:%d" % (count))
# print("wait for 15,20s...")
# time.sleep(random.randint(15, 20))
it's always "False":
bot 217900340394 at:400
False
bot 217900343586 at:350
False
bot 217900370657 at:400
False
bot 217900352814 at:400
False
bot 217900355904 at:350
False
Any idea?
You're just to slow, there are a lot bots in this price area and ea sometimes shows already closed auctions.
I'll leave it upon until TODO: make search (itemParse) a generator/async
@oczkers how to be faster?