mirror of
https://github.com/jaxperro/winning-wallet-finder.git
synced 2026-07-27 15:57:47 +00:00
eeeed39e22
Real-time PAPER trader of the FROZEN surge signal on its own Fly app (wwf-surgebot, recorder-pattern image, no keys, no bot imports): $100 paper book · 5%-of-equity daily stakes ($1 venue floor) · cash-gated all-or-nothing · event cap 2 · paper FAK against the live CLOB book inside p_ref*1.05 · provisional CLOB settles re-graded nightly with CTF payout vectors (grade_surge.py -> surge_paper_ledger.jsonl). Informed set published daily (informed_set.py -> params/informed_set.json, frozen method). Unit-tested: fill/crater/event-cap/cash paths exact; live smoke: dual sockets + sizing clean. Believing any of it stays gated on the #16 forward verdict. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
7 lines
296 B
Docker
7 lines
296 B
Docker
# wwf-surgebot — one dep, no git, no clone (a paper harness must not depend
|
|
# on GitHub being up to boot; informed set fetch degrades gracefully).
|
|
FROM python:3.12-slim
|
|
RUN pip install --no-cache-dir websocket-client
|
|
COPY research/surgebot.py /surgebot.py
|
|
CMD ["python3", "-u", "/surgebot.py"]
|