fix: llm_contrarian.push3 AW=150/250 clamped to 100 — three rounds unaddressed (#756)

Replace AW=250 (VERY AGGRESSIVE) with 100 and AW=150 (AGGRESSIVE) with 80
so neither value is silently clamped by LiquidityManager.MAX_ANCHOR_WIDTH=100.
Update header comment block to match the corrected values.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
openhands 2026-03-14 21:40:31 +00:00
parent bc0817b9b5
commit 7a9b4206ae

View file

@ -22,8 +22,8 @@
;; else → DEFENSIVE: CI=0, AS=0.25e18, AW=25, DD=0.20e18
;;
;; stakedPct < 50 (bearish crowd) → aggressive:
;; taxHigh → VERY AGGRESSIVE: CI=0, AS=0.85e18, AW=250, DD=0.85e18
;; else → AGGRESSIVE: CI=0, AS=0.70e18, AW=150, DD=0.70e18
;; taxHigh → VERY AGGRESSIVE: CI=0, AS=0.85e18, AW=100, DD=0.85e18
;; else → AGGRESSIVE: CI=0, AS=0.70e18, AW=80, DD=0.70e18
(
;; Step 1: Bind slot 0 (top) to PERCENTAGESTAKED, slot 1 to TAXRATE.
@ -83,14 +83,14 @@
;; VERY AGGRESSIVE: wide discovery, high anchor share
(
850000000000000000
250
100
850000000000000000
0
)
;; AGGRESSIVE: wide discovery, high anchor share
(
700000000000000000
150
80
700000000000000000
0
)