harb/tools/push3-evolution/seeds/llm_floor_hugger.push3
openhands 5f7d002e2a feat: add recovered LLM seeds (floor hugger + contrarian)
Recovered from reflog after rebase accident destroyed PRs #692, #699.
Balanced Adaptive (#688) was garbage collected — will be regenerated.
Kindergarten (#683) needs fresh implementation due to evolve.sh conflicts.

Closes #672, #675.
2026-03-14 15:43:58 +00:00

37 lines
1 KiB
Text

;; Defensive Floor Hugger — 8-input / 4-output optimizer seed
;;
;; Strategy: maximise floor position depth at the expense of everything else.
;; "If the floor never moves down, ETH is safe."
;;
;; Inputs (ignored):
;; [0] percentageStaked
;; [1] averageTaxRate
;; [2..7] normalized indicators
;;
;; Outputs:
;; ci = 0 — no VWAP bias on floor placement
;; anchorShare = 1e16 (1%) — almost all ETH stays at floor
;; anchorWidth = 5 — tight band, minimal tick exposure
;; discoveryDepth = 1e16 (1%) — no speculative upside
(
;; Discard all 8 inputs (slot 0 on top → pop first)
DYADIC.POP
DYADIC.POP
DYADIC.POP
DYADIC.POP
DYADIC.POP
DYADIC.POP
DYADIC.POP
DYADIC.POP
;; Push outputs bottom-first:
;; discoveryDepth = 10000000000000000 (1e16 — minimal)
;; anchorWidth = 5 (tight)
;; anchorShare = 10000000000000000 (1e16 — near zero)
;; ci = 0 (no VWAP bias)
10000000000000000
5
10000000000000000
0
)