fut icon indicating copy to clipboard operation
fut copied to clipboard

How to buy cheapest cards as soon as possible?

Open tosssman opened this issue 6 years ago • 2 comments

...
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?

tosssman avatar May 14 '18 08:05 tosssman

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 avatar May 15 '18 18:05 oczkers

@oczkers how to be faster?

tosssman avatar May 28 '18 15:05 tosssman