The easiest way to deploy the bot on Windows. The installer will automatically copy files, open firewall ports, and configure the background service.
PrimeBotSetup_Windows_v3.0.exe from the Download page..exe file. (If Windows SmartScreen blocks it, click More Info β Run anyway).What the installer does automatically:
C:\Prime Spot DCA Trading BotPrimeTradingBotAuto) to start the bot automatically whenever the server boots.β You are done! Open your Client GUI to connect to the server.
Use this method only if you prefer to configure everything manually via Command Prompt.
server.zip package.C:\Prime Spot DCA Trading Bot
C:\Prime Spot DCA Trading Bot\server.exeThe client needs this port to connect. Open Command Prompt as Administrator and run:
netsh advfirewall firewall add rule name="PrimeBot Port 8765" dir=in action=allow protocol=TCP localport=8765
To ensure the bot runs 24/7 even after a server reboot (without needing to log in), create a background task using the SYSTEM account. Run this in the same Administrator Command Prompt:
schtasks /create /sc onstart /tn "PrimeTradingBotAuto" /tr "\"C:\Prime Spot DCA Trading Bot\server.exe\"" /ru SYSTEM /rl highest /f
To start the bot immediately without rebooting:
schtasks /run /tn "PrimeTradingBotAuto"
All logs and configs are stored safely in the installation folder (C:\Prime Spot DCA Trading Bot):
config.json β Your bot configuration and API keys.trading_bot.log β System and error logs.trades_mainet.log / trades_testnet.log β Trading history..exe file. It will safely update the bot without deleting your config.json.schtasks /end /tn "PrimeTradingBotAuto"), replace the server.exe, and restart the task.Auto-Installer: Go to Control Panel β Programs and Features, find Prime Spot DCA Trading Bot and click Uninstall.
Manual Uninstall: Open Command Prompt as Admin and run:
schtasks /end /tn "PrimeTradingBotAuto" schtasks /delete /tn "PrimeTradingBotAuto" /f netsh advfirewall firewall delete rule name="PrimeBot Port 8765" rmdir /s /q "C:\Prime Spot DCA Trading Bot"