Support all Up/Down markets for price to beat and add time to resolution - #9
Merged
novatechflow merged 1 commit intoSep 19, 2026
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This PR addresses two key improvements for Polymarket positions display:
Fix missing "Price to Beat" across Up/Down markets (
server.go):isUpDown) acrossoutcome("Up"/"Down"),eventSlug,slug, andtitle(handlingupdown,up-or-down,up/down,up-down), rather than only matchingbtc-updown-.bitcoin-up-or-down-*), and any other crypto interval / daily Up/Down markets.slugfield toPositionstruct.normID) and deduplicated query batches to avoid case mismatch and redundant Gamma queries.PriceToBeatvalues across subsequent polls.Add "Time to Resolution" in device's local timezone (
index.html):fmtResolution(endStr)to convert UTC timestamps (e.g.2026-09-19T10:00:00Z) to the viewer's local device timezone.HH:MMfor today,Tomorrow HH:MM, orMMM D HH:MM) alongside a countdown (<1m left,Xm left,Xh Ym left,Xd Yh left, orended).time to resolutionrow on position cards whenendDateis present.Tests & Docs (
server_test.go,README.md):TestFetchPositionsAddsAllUpDownMarketsPriceToBeat.TestIndexShowsTimeToResolutionWhenAvailable.README.md.