zachgoldstein / vickrey_auctions

An django application for doing Vickrey auctions
0 stars 2 forks source link

Flesh out seller stats page for live auctions #9

Open zachgoldstein opened 1 year ago

zachgoldstein commented 1 year ago

As bids come in on an active auction, a live-updating page with show sellers data about their auction. Data to show in this page:

zachgoldstein commented 1 year ago

Added a new vickrey.py class with the guts of the logic here. Used a protocol class to keep it decoupled from Django so it's easier to pull out later into a separate library. Added a stats page that just dumps the basic vickrey results based on the list of bids. Next need to flesh out the markup and add some basic logic around the recommendations

zachgoldstein commented 1 year ago

Added tabs to stats page, fleshed out super basic recommendations and moved auction edit page into a reusable page. Markup & layout is really rough but data is in there. Charts for bid price data has been moved out to https://github.com/zachgoldstein/vickrey_auctions/issues/11 Leaving this open for now, page is not polling for updated data yet.