Files
jaxperro 8958279ee8 cleanup: archive everything the live system no longer touches
- retired-infra/: Railway config, Mac launchd runner, GH-Actions cron
  (worker is Fly.io arn now; Actions cron last fired 2026-07-02)
- live-research/: the June selection experiments (strategy/followability/
  pnl_basket/pnl_focused/backtest_june/clean_test + outputs)
- us-venue/: the scrapped Polymarket-US listability probe (+ its
  env-gated ONLY_CONDS replay filter stays in portfolio.py — generally
  useful for subset replays)
- root sweeps hunt/huntwide/oos/copyback/watch.json -> archive/
- untracked logs/CSVs of dead experiments -> archive/local/ (gitignored)
- READMEs updated: Fly migration, geoblock gotcha, new file map

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-06 17:18:46 -04:00

14 lines
684 B
Bash
Executable File

#!/bin/bash
# Clean out-of-sample test:
# 1) re-select skilled wallets using ONLY bets resolved before June 1
# (selection cannot peek at the June 1+ test window)
# 2) copy the resulting FAVORITE-rider wallets' June 1+ entries, $1000, no lag
# This removes the selection contamination of the first backtest.
set -u
cd "$(dirname "$0")"
echo "[clean] $(date '+%F %T') re-scoring candidates on PRE-June-1 data only…"
SKILL_BEFORE=2026-06-01 SKILL_OUT=watch_prejune.json python3 skill.py 2000
echo "[clean] $(date '+%F %T') backtest: copy pre-June-1 favorites' June1+ entries"
BT_WATCH=watch_prejune.json python3 backtest_june.py favorite
echo "[clean] $(date '+%F %T') done"