ExileTrade | Advance Item Search | FC20/21 | Auto complete and suggestions on input

Hi all, just wanted to give an update on exiletrade.

- We've now implemented an option to search for items from online players only. This option is enabled by default.
- A ton of improvements to the design of the site including a switch to a darker theme and improved art rendering.
- Search Terms are now loaded from Google Sheets where we are working on adding sample usages.
- We've also added some very cool advance search terms like LabyUniques which allows you to search for Labyrinth exclusive unique items. Just add the term unid for unidentified items only. Another one is leveling which helps you enjoy your leveling experience by giving you leveling uniques. See more here.

Screenshots here.

It's still a work in progress but we've made big milestones.

Cheers!
PoE-TradeMacro - https://github.com/PoE-TradeMacro/POE-TradeMacro/
ExileTrade - http://exiletrade.github.io/
Last edited by ManicCompression on Mar 21, 2016, 5:49:44 PM
quick update:

We've just released a critical fix on the online status filter which includes using the Ladder API to determine players' online status.

Infinite scrolling now also implemented.

The saved item also now works! Cheers!

Also posted on reddit about this update.
PoE-TradeMacro - https://github.com/PoE-TradeMacro/POE-TradeMacro/
ExileTrade - http://exiletrade.github.io/
Last edited by ManicCompression on Mar 25, 2016, 8:25:38 AM
Initial implementation of automated search is also now done:

Screenshot

It features having a list of automated searches just like in Durian.

Right now it will just run every entry on your "Automated Search List" for every N secs (30 sec atm). Every entry will then get a count, on that screenshot, there's 1 tabula that's priced 10c. If the total count of all entries is > 0, a sound will be played.

Note that automated search doesn't do "online only search" - this will be configurable when I change the "online only" as a search term. Also unlike Durian, it doesn't yet know if any items are new relative to previous run - but this can be worked around using negation; for example: we don't wanna see items from account or ign TestOnlyAccountName, you just add negation to seller search term like this: pureev chest 80res 70life 1300ev -sellerTestOnlyAccountName

As it is, it should do well on sniping/flipping items.

Let me know if it works for you. Enjoy!

--

Also, the need for extra parens on this search:

((helm 350es) or (shield 450es))

Is not needed anymore.

League, buyout, verify search terms can now override the default search prefixes. For example:

430pdps 2hsword boEither
PoE-TradeMacro - https://github.com/PoE-TradeMacro/POE-TradeMacro/
ExileTrade - http://exiletrade.github.io/
Last edited by ManicCompression on Mar 26, 2016, 9:02:43 PM
I've made a new experimental special search term called: Durian

TL;DR? Checkout this Screenshot.

durian is a shortcut that will translate into the following filters:

"
(LightningCoil 70c) OR
(Carcass 13c) OR
(Shav 150c) OR
(Kaom 220c) OR
(Scolds 12c) OR
(Heretic 60c) OR
(Mjölner 25c pure) OR
(Rathpith 15c) OR
(Aegis 310c) OR
(Voltaxic 40c) OR
(Windripper 30c) OR
(ConsumingDark 20c) OR
(Binos 20c) OR
(Divinarius 24c) OR
(Rumis 20c) OR
(Hegemonys 35c) OR
(SoulTaker 15c) OR
(Ventors 20iir 8iiq 70eleres -reducediir 20life 140c) OR
(DoryanisCatalyst 70c)


This is intended to be used for finding bro-deals in the Perandus HC League. Here's how to set it up with ExileTrade's search automation:

1. Type durian
2. Click Auto
3. Wait for the sound notification
- then click on the saved automated entry on your side bar

Here's a screenshot of how it should look after setting it up. Notice that I've also added temphc, this is needed if you default league is not the hardcore temp league, otherwise you'd see results from temp softcore. You'll also see that I've added a seller search term negation, this would exclude a seller (either account name or ign) to the results; this is just to demonstrate how you'd exclude a seller (e.g. price manipulators).

I also used a bit of statistics that can be done via ExileTools API. This page will aggregate all Perandus HC uniques that was sold with a price/buyout and have a level requirement minimum of 40. For each unique item, a range aggregation is used to group all items sold at certain price ranges. For example, Lightning Coil was apparently sold 5 times at 10c or less (at the time of writing this).


btw, the durian search term is defined in the ExileTrade special terms sheet.

---

Testing it for real, I asked a guild mate who's playing in Perandus HC to sell his Kaom's for very cheap, and within 5sec, I got notified with a sound:

Screenshot

Note that the term Durian is just my experiment to see if it's possible to fit a lot of items into just one automated search entry. You can always define you own search filter(s) e.g. "Voltaxic 35c" or "6s 8alt".

---

PS: I've also discovered a bit of cool way to see the items a player has sold, search for seller<ign or account name> gone.
PoE-TradeMacro - https://github.com/PoE-TradeMacro/POE-TradeMacro/
ExileTrade - http://exiletrade.github.io/
Last edited by ManicCompression on Mar 27, 2016, 4:29:40 AM
Is there a way to search for corrupted implicit mods ?
@I_Are_Noob,

Yes, tho there's only a handful of those atm as defined in this google sheet.

For example, plus1arrow. Next top priority to have a complete set of all mods including enchants. Will accomplish this by programatically generating the 'longcut' search terms, and then add shortcuts like the example I gave by hand. Haven't had much time to do so though.
PoE-TradeMacro - https://github.com/PoE-TradeMacro/POE-TradeMacro/
ExileTrade - http://exiletrade.github.io/
First, I want to say thank you for this service, it has been working great for me so far. I just thought I would leave a little QOL suggestion for gem search with level and quality, something like "discharge 21/20" would be a nice addition. Thanks again for the effort you're putting into this service and keep the good work up.
@Prophaesis, thanks, I got your suggestion working and I'm surprised myself:

Firestorm20/21

The only change I had to do was to add 1 row here:

ExileTrade Special Terms Spreadsheet

Below is what I added, it looks scary, but I'll explain (and you don't have to add it youself anyways).

Regex: ([a-z]+)(\d+)\/(\d+)
Query: `$1 `gemQuality$2 `gemlvl$3

Regular expressions or regex is a 'mini programming language' where you can define a 'template' of an expected user input. In our case, we want a gem name followed by one or more digits then a slash (/) then another one or more digits.

([a-z]+) will match any alphabetic character
(\d+) will match one more more numeric char
\/ will match a single slash, note that it's escaped with a backslash

The parens () in regex means that we wanna capture it.

For example, FasterAttacks20/21:

The 1st regex group denoted by $1 will become `FasterAttacks
The 2nd regex group denoted by $2 will become `gemQuality20
The 3rd regex group denoted by $2 will become `gemlvl21

The query uses a backtick which denotes a search term; and that the Blackmarket Language Engine should evaluate it as if it was a search term entered by the user. In other words, this allows us to compose a search term using other search terms.

What we achieved here is to provide a shorthand for the search fasterAttacks gemQuality20 gemlvl21 into FasterAttacks20/21.

Btw, FasterAttacks can be shorten to FA, so fa20/21 works too.

Note that gemlvl will match exact gem level. In case you want to match the gem level equal or greater than, fa20/10+ also works.

---

On other news, we've finally added auto-completion and suggestion dropdown on our Search Input textfield; and it's looking great! There's also a bit of improvement on the UI, we now have a small help button which makes the web page less cluttered than before.

Screenshot

Enjoy! Cheers all!
PoE-TradeMacro - https://github.com/PoE-TradeMacro/POE-TradeMacro/
ExileTrade - http://exiletrade.github.io/
Last edited by ManicCompression on Apr 10, 2016, 7:10:39 AM
Got several improvements incl:

1. New URL / Domain - http://exiletra.de
2. Greatly improved Search Term Dictionary
3. Suggestion and Auto-complete when you type
4. Shorthand Search Term for gems - fa20/21 or firestorm20/21
5. New Search Terms incl. mods for Jewels and Maps, as well as Enchants
6. Improved Added/Updated/Modified display - e.g. 6 hours ago, 1 week ago, 1 month ago
7. You can now click on IGN and Whois copy the command to your clipboard
8. Added display for Stash Name and Note
9. Clicking on Stash Name will search for all items on that stash
10. Cool fading animation for Sockets and Links
11. Improved Help Guide

Full details at this reddit post.

---

I've also added a rudimentary way of checking prices of a currency given your currency. For example, you got chaos orbs and would like to buy ex for it:

fromCh toEx

For now this should be a good fast way to check ratios as well as finding sellers. Plan is to make a search term ch:ex. As well as improve the items display.

Here's some design I made in paint:

Spoiler


Most probably the currency selection buttons won't be implemented, but the display for the currencies should optimized.

---

We've also started re-working the automated search. Initial plans/design is posted here.
PoE-TradeMacro - https://github.com/PoE-TradeMacro/POE-TradeMacro/
ExileTrade - http://exiletrade.github.io/
Last edited by ManicCompression on Apr 17, 2016, 8:24:44 PM
This site is amazing, I was able to price a rare with little effort as compared to poe.trade.

Question, is there a way to import items?

Report Forum Post

Report Account:

Report Type

Additional Info