Files
winning-wallet-finder/com.jaxperro.copybot.plist
T
jaxperro 2946ac9170 copybot: 24/7 paper copy-trade test + live dashboard feed
Push-or-poll copy bot (FollowFilter conviction gate + copytrade engine),
cash-gated $1k book, resolution settling, lag/slippage logging, FOK live
orders, on-chain redeem. Runs free 24/7 via GitHub Actions (--poll-once
cron) and publishes live/copybot_live.json for the trading dashboard.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-25 12:41:56 -06:00

44 lines
1.7 KiB
Plaintext

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<!--
launchd agent for the 24/7 copy-bot paper test. It keeps the bot running and
restarts it on crash (KeepAlive) and at login (RunAtLoad).
Install (you activate it — this starts a continuous process that pushes the live
feed to your public repo, so it's opt-in):
cp ~/polymarket-smart-money/com.jaxperro.copybot.plist ~/Library/LaunchAgents/
launchctl load ~/Library/LaunchAgents/com.jaxperro.copybot.plist # start
launchctl unload ~/Library/LaunchAgents/com.jaxperro.copybot.plist # stop
Caveat: this runs ON YOUR MAC. It only stays up while the Mac is powered on and
online (caffeinate prevents idle sleep, but a closed lid on battery or a shutdown
stops it). For true machine-independent 24/7, deploy the webhook receiver to a
cloud host instead.
-->
<plist version="1.0">
<dict>
<key>Label</key>
<string>com.jaxperro.copybot</string>
<key>ProgramArguments</key>
<array>
<string>/Users/jaxmakielski/polymarket-smart-money/run_copybot.sh</string>
</array>
<key>WorkingDirectory</key>
<string>/Users/jaxmakielski/polymarket-smart-money</string>
<key>RunAtLoad</key>
<true/>
<key>KeepAlive</key>
<true/>
<key>StandardOutPath</key>
<string>/Users/jaxmakielski/polymarket-smart-money/copybot.launchd.log</string>
<key>StandardErrorPath</key>
<string>/Users/jaxmakielski/polymarket-smart-money/copybot.launchd.log</string>
<key>EnvironmentVariables</key>
<dict>
<key>PATH</key>
<string>/opt/homebrew/bin:/usr/local/bin:/usr/bin:/bin</string>
</dict>
</dict>
</plist>