Not too long ago eBay discovered that the removal of the sort by bids feature forces customers to spend much more time on their site. What an absolute nightmare.
I have thus written a free program with AutoIt called Sesbyb to fix this situation. With this program the items of your eBay “BuyItNow” search will be sorted according to their sales rank, meaning items with most bids will appear first in the list.
Supported options include:
– Number of results to sort
– Local or global search
– Min and max price
Planned are the options to enter your own search url as well processing search results of more than 200 items if there is demand for thos features. Furthermore the whole string seperation process will be overhauled.

Sesbyb – Sorting search result by bids
Below you find a screenshot of what a search result from Sesbyb looks like:

Ebay search sorted by bids
Download Sesbyb – The Zip file includes an executable as well as the source code.
For convenience I also included the source code below. Suggestions and improvements are welcome.
001 | ;Sesbyb - Sort Ebay Search by Bids |
004 | #include <ArraySortMulti.au3> |
006 | HotKeySet( "{ESC}" , "Terminate" ) |
008 | $file = FileOpen( "sesbyb-result.html" , 2) |
010 | ; Check if file opened for writing OK |
012 | MsgBox(0, "Error" , "Unable to open file." ) |
017 | $searchTerm = InputBox( "What do you want to Search?" , "Enter keywords" , "Chilli Seeds" ) |
018 | $searchTerm = StringReplace($searchTerm, " " , "+" ) |
019 | $searchURL = StringReplace($AdvancedSearchString, "hansuelihansueli" , $searchTerm) |
020 | $searchAmount = InputBox( "Number of Results wanted?" , "From 1 to 500" , "50" ) |
021 | If $searchAmount >= 500 Then |
023 | ElseIf $searchAmount <= 1 Then |
027 | $searchURL = $searchURL & |
028 | $searchLocation = InputBox( "Search Locally or Globally?" , "1 for Local, 2 for Global" , "1" ) |
029 | If $searchLocation >= 2 Then |
031 | ElseIf $searchLocation <= 1 Then |
034 | $searchURL = $searchURL & |
036 | $searchCountry = InputBox( "Ebay Site" , "Which ebay site would you like to search?" , "http://www.ebay.co.uk" ) |
039 | $searchMinPrice = InputBox( "Minimum Price?" , "From 0 to 1000000" , "0" ) |
040 | If $searchMinPrice >= 1000000 Then |
041 | $searchMinPrice = 1000000 |
042 | ElseIf $searchMinPrice <= 0 Then |
046 | $searchMaxPrice = InputBox( "Maximum Price?" , "From 0 to 1000000" , "1000000" ) |
047 | If $searchMaxPrice >= 1000000 Then |
048 | $searchMaxPrice = 1000000 |
049 | ElseIf $searchMaxPrice <= 0 Then |
053 | $searchURL = $searchURL & |
057 | $searchResult = _INetGetSource($searchURL) |
060 | $ResultsExtraction = StringSplit($searchResult, $i, 1) ;[1] = index etc, [2] = search results |
061 | ;_ArrayDisplay( $ResultsExtraction) |
064 | $ResultsArray = StringSplit($searchResult, $i, 1) ; |
066 | For $i = 1 To UBound($ResultsArray) - 1 |
068 | ;MsgBox( 0, "" , $ResultsArray[$i]) |
071 | ; Get total amount of search results, currently source looks like: <span>12,316</span> |
072 | $SearchTotalResultsArray = StringSplit($searchResult, |
073 | $NumberOfTotalResults = StringLeft($SearchTotalResultsArray[2], StringInStr($SearchTotalResultsArray[2], |
077 | $ResultsArray[UBound($ResultsArray) - 1] = StringLeft($ResultsArray[UBound($ResultsArray) - 1], StringInStr($ResultsArray[UBound($ResultsArray) - 1], "/tr></table>" )) |
078 | $ResultsArray[UBound($ResultsArray) - 1] = $ResultsArray[UBound($ResultsArray) - 1] & "/tr></table>" |
079 | _ArrayDisplay($ResultsArray) |
081 | Dim $ItemLinks[UBound($ResultsArray)] |
082 | For $i = 2 To UBound($ResultsArray) - 1 |
083 | $StringBetweenResult = _StringBetween($ResultsArray[$i], |
084 | ;ClipPut( $ItemLinks[$i]) |
087 | ;Create 2D array with column for sales count |
088 | Dim $ResultsArray2D[UBound($ResultsArray)][2] |
089 | For $i = 0 To UBound($ResultsArray) - 1 |
090 | $ResultsArray2D[$i][0] = $ResultsArray[$i] |
091 | $ResultsArray2D[$i][1] = 0 |
094 | If $NumberOfTotalResults <= $searchAmount Then |
095 | ProgressOn( "Sesbyb - Searching Ebay - To cancel press ESC" , "Analyzing " & $searchAmount & " of the " & $NumberOfTotalResults & " results found" , "0 %" ) |
097 | ProgressOn( "Progress - Searching Ebay - To cancel press ESC" , "Analyzing " & $NumberOfTotalResults & " of the " & $NumberOfTotalResults & " results found" , "0 %" ) |
100 | For $i = 2 To UBound($ResultsArray) - 1 |
101 | $ItemPage = _INetGetSource($ItemLinks[$i]) |
104 | If StringInStr($ItemPage, " sold</a>" ) Then |
105 | $sl = StringLeft($ItemPage, StringInStr($ItemPage, " sold</a>" ) - 1) |
106 | $sl = StringRight($sl, 10) |
107 | $sl = StringRight($sl, StringLen($sl) - StringInStr($sl, ">" )) |
108 | $ResultsArray2D[$i][1] = $sl |
110 | $ResultsArray2D[$i][1] = 0 |
112 | ;MsgBox(0, "" , $ResultsArray2D[$i][0]) |
113 | ;MsgBox(0, "" , $ResultsArray2D[$i][1]) |
114 | ProgressSet(Round($i / (UBound($ResultsArray) - 1) * 100), Round($i / (UBound($ResultsArray) - 1) * 100) & " % done" ) |
118 | Local $COL0 = "COL0,ASC,STRING" |
119 | Local $COL1 = "COL1,DESC,NUMERIC" |
120 | _ArraySortMulti($ResultsArray2D, $COL1, $COL0) |
122 | For $i = 0 To UBound($ResultsArray) - 1 |
123 | $ResultsArray2D[$i][0] = StringReplace($ResultsArray2D[$i][0], |
126 | ;$SortedSearchResults = StringReplace($SortedSearchResults |
132 | For $i = 0 To UBound($ResultsArray) - 1 |
133 | FileWrite($file, $ResultsArray2D[$i][0] & @CRLF & @CRLF) |
138 | ShellExecute( "sesbyb-result.html" ) |
My pc wont boot the program… Says: ( High Malware Threat )
Quarantined..
Hi Sam, first of all it’s not malware but some antivirus programs classify autoit scritps as possible threats and thus quarantine them. It’s called a false positive. Having said that, I’d never recommend trying to run a program you download of the internet. The source is there so just install autoit and run the script yourself, you might also learn something in the process! Cheers
Do you have it for mac? I only have a mac…
AutoIt is only for windows. You can either run it under a virtual pc or there are some other ways how you can run windows programs on a mac. Cheers
hello there. when i try to run it, errors came out. please refer to attachment.
Hi,
Seems ebay changed some code. Made a new version with some bugfixes, enjoy.
Over at WatchCount.com you can search and sort by most bids!