data: revert cheaper-direction CC price regressions (>=5x) to prior overrides - #29
Merged
Merged
Conversation
…rrides The ChromieCraft regeneration only guarded against pricier-direction outliers (the troll-spike revert); rows the import made drastically cheaper shipped unchecked. Restore the curated values for every row where the CC price undercut the previous override by 5x or more, sourced from deviations-2026-07-01.csv (existing_avg/existing_min). Example: Medium Hide (4232) returns to 77s02c/45s89c after the import dropped it to 1s75c/1s66c, just above vendor. Closes #26
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.
What
Reverts 1061 price override rows where the 2026-07-01 ChromieCraft regeneration made an item 5x or cheaper than the previous curated value. Values restored from
tools/price-backfill/reports/deviations-2026-07-01.csv(existing_avg/existing_min).The original import only guarded the pricier direction (1005 single-listing troll spikes were reverted); cheaper-direction outliers shipped unchecked. Medium Hide (4232) is the reported case: 7702/4589 was overwritten with 175/166, listing just above vendor price. It returns to 77s02c/45s89c.
Selection rule
cc_avg < existing_avg AND existing_avg / cc_avg >= 5-> restore(existing_avg, existing_min). Milder drops (<5x) stay at CC market prices.Verification
Closes #26