Quick Start Guide

Get your VPS running in under 5 minutes

Step 1: Choose Your Plan

Select a VPS plan that fits your trading needs. All plans include 0-2ms latency to Polymarket CLOB and are located in Dublin, Ireland.

  • VPS Lite ($59.99/mo) - 4 cores, 8GB RAM - Great for testing
  • VPS Pro ($99.99/mo) - 6 cores, 16GB RAM - Most popular
  • VPS Ultra ($189.99/mo) - 12 cores, 32GB RAM - For market makers
  • Dedicated ($299.99/mo) - 12+ cores, 128GB RAM - Enterprise

Step 2: Complete Payment

After selecting your plan, complete the checkout process. We accept all major credit cards and cryptocurrency payments. Your VPS will be provisioned within 60 seconds.

Step 3: Access Your VPS

You'll receive an email with your VPS credentials including:

  • IP address
  • SSH username (default: trader)
  • Temporary password (change immediately)

Connect via SSH

ssh trader@your-vps-ip
# Enter your temporary password
# You'll be prompted to change it on first login

Step 4: Set Up SSH Keys (Recommended)

For better security, set up SSH key authentication:

# On your local machine
ssh-keygen -t ed25519 -C "your-email@example.com"

# Copy your public key to the VPS
ssh-copy-id trader@your-vps-ip

Step 5: Start Trading

Your VPS comes pre-configured with Python 3.12, Node.js 20 LTS, and common trading libraries. Clone your trading bot and start running:

# Clone your trading bot
git clone https://github.com/your-username/your-bot.git
cd your-bot

# Install dependencies
pip install -r requirements.txt

# Start trading
python bot.py

Next Steps

  • Set up PM2 for process management
  • Configure Discord/Telegram alerts
  • Review our security best practices