harb/tools/push3-evolution/seeds/llm_floor_hugger.push3

38 lines
1 KiB
Text
Raw Normal View History

;; 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
)