Skip to content

Latest commit

 

History

History
39 lines (27 loc) · 790 Bytes

README.md

File metadata and controls

39 lines (27 loc) · 790 Bytes

AI Pump Trading Bot

An automated trading bot system that monitors social signals and executes trades based on predefined strategies.

Setup

# Create virtual environment
python -m venv venv
source venv/bin/activate

# Install dependencies
pip install -r requirements.txt

Configuration

  1. Copy config/config.example.yaml to config/config.yaml
  2. Update configuration values
  3. Set up environment variables in .env

Usage

python main.py

Architecture

  • Data Collection: Real-time monitoring of Twitter and PumpDotFun
  • Token Processing: Validation and matching of trading signals
  • Trading: Automated trade execution with error handling

Development

  • Python 3.11+
  • Type-hinted codebase
  • Event-driven architecture
  • Async-first approach