Add llm_floor_hugger.push3: pure-constant Push3 optimizer that keeps anchorShare=0.05e18, anchorWidth=5 ticks, discoveryDepth=0.05e18, CI=0. Ignores all staking/tax inputs — floor position is always maximised. Transpiles without error; manifest.jsonl updated. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
53 lines
1.9 KiB
Text
53 lines
1.9 KiB
Text
;; llm_floor_hugger.push3 — Defensive Floor Hugger Optimizer
|
|
;;
|
|
;; Philosophy: "if the floor never moves down, ETH is safe."
|
|
;;
|
|
;; Strategy: anchor share near zero so almost all ETH remains in the floor
|
|
;; reserve. Anchor width is extremely narrow (tight band, minimal exposure).
|
|
;; Discovery depth is minimal — no speculative upside. CI is always 0.
|
|
;; All staking and tax-rate signals are ignored; outputs are pure constants.
|
|
;;
|
|
;; Inputs on DYADIC stack (slot 0 on top, slot 7 at bottom):
|
|
;; [0] percentageStaked (0 to 1e18, where 1e18 = 100%) — ignored
|
|
;; [1] averageTaxRate (0 to 1e18) — ignored
|
|
;; [2..7] reserved / future indicators — ignored
|
|
;;
|
|
;; Outputs (bottom-to-top push order → top = ci):
|
|
;; discoveryDepth (bottom) = 0.05e18 (5% — minimal upside discovery)
|
|
;; anchorWidth = 5 (ticks — extremely narrow band)
|
|
;; anchorShare = 0.05e18 (5% — almost all ETH stays at floor)
|
|
;; ci (top) = 0 (no VWAP bias)
|
|
;;
|
|
;; Output constants:
|
|
;; CI=0, AS=0.05e18, AW=5, DD=0.05e18
|
|
|
|
(
|
|
;; Step 1: Discard all 8 inputs — staking and market signals are irrelevant.
|
|
DYADIC.POP
|
|
DYADIC.POP
|
|
DYADIC.POP
|
|
DYADIC.POP
|
|
DYADIC.POP
|
|
DYADIC.POP
|
|
DYADIC.POP
|
|
DYADIC.POP
|
|
;; Stack: []
|
|
|
|
;; Step 2: Push outputs bottom-first.
|
|
|
|
;; discoveryDepth = 0.05e18 (5% — minimal speculative upside)
|
|
50000000000000000
|
|
;; Stack: [discoveryDepth]
|
|
|
|
;; anchorWidth = 5 ticks (extremely narrow — tight defensive band)
|
|
5
|
|
;; Stack: [discoveryDepth, anchorWidth]
|
|
|
|
;; anchorShare = 0.05e18 (5% — nearly all ETH preserved at floor)
|
|
50000000000000000
|
|
;; Stack: [discoveryDepth, anchorWidth, anchorShare]
|
|
|
|
;; ci = 0 (no capital inefficiency / no VWAP bias on floor placement)
|
|
0
|
|
;; Stack: [discoveryDepth, anchorWidth, anchorShare, ci=0]
|
|
)
|