Dear Coders,
I need an application that can auto bid on chosen items in a specific auction site. The site in question is swoggi.fr
Like ebay there is a determined ending to every auction but the main difference is that at any time when somebody bids on an item, 15 or 30 seconds are added to the auction (pre-announced time for each auction). If there are no more bids and the timer shows 00:00:00, the last bidder is the winner.
People wait till there are 7 or 8 seconds left and bid, so the remaining time of the auction goes back up to 22 or 23 seconds.
Although the auction timer counts down 1 second at the time, I want the auto auction bidder be able to bid in milliseconds when 1500 milliseconds are left (1,5 seconds). This should be a feature that can be customised from 1000 to 5000 milliseconds.
Another feature I need is that I can set a minimum and maximum price for the auction ( range from 0,01 euro to 5,000 euro).
Example:
Minimum bid : 3,45 euro
Maximum bid : 5,69 euro
Bid when 1,500 milliseconds left
Once the item reaches 3,45 euro, the auto bidder starts bidding only when there are 1,500 milliseconds left. Once the item reaches 5,69 euro, auto bidder stops bidding.
Things you should know.
- The auction site requires of course a login with user and password
- The auctioned items have no item number like ebay but a custom url
example url : http://www.swoggi.fr/fr-fr/enchere-306-pack-500-credits.aspx
enchere-306 is the item number (means auction-306).
pack-500-credits is the item, in this case 500 credits to bid can be won.
Thank you very much.