An advanced cryptocurrency trading system powered by machine learning and real-time market data.
This AI Trading Agent collects data from multiple cryptocurrency exchanges, processes it, applies machine learning models to generate trading signals, and can execute trades based on those signals. Key features include:
- Multi-Exchange Support: Connect to Binance, BitMEX, and Deribit
- Comprehensive Data Collection:
- Liquidation data
- Funding rates
- Open interest
- New token launches
- Real-time market transactions
- Advanced Feature Engineering: Technical indicators and custom features
- AI-Powered Trading Signals: LSTM and other ML models
- Risk Management: Position sizing, stop-loss, and take-profit controls
- Configurable Parameters: Easily adjust all components through a YAML config file
ai-trading-agent/
├── main.py # Main application entry point
├── requirements.txt # Python dependencies
├── config/
│ ├── settings.yaml # Main configuration (gitignored)
│ └── settings.yaml.example # Example configuration template
├── data/ # Data storage directory
│ └── trading.db # SQLite database (generated)
├── logs/ # Log files directory
│ └── trading.log # Main log file (generated)
├── models/ # ML model storage
│ └── lstm_model.keras # Trained LSTM model (generated)
├── data_ingestion/ # Data collection modules
│ ├── __init__.py
│ ├── exchange_connector.py # Base connector for exchanges
│ ├── liquidation_collector.py
│ ├── funding_rate_collector.py
│ ├── open_interest_collector.py
│ ├── token_launches_collector.py
│ └── transactions_collector.py
├── data_processing/ # Data processing modules
│ ├── __init__.py
│ ├── data_cleaner.py # Data cleaning utilities
│ └── feature_engineering.py # Feature creation from raw data
├── ai_module/ # AI and ML components
│ ├── __init__.py
│ ├── model_trainer.py # Trains ML models on processed data
│ └── prediction_engine.py # Generates predictions/signals
├── execution/ # Trade execution modules
│ ├── __init__.py
│ └── order_manager.py # Handles order creation and management
└── utils/ # Utility modules
├── __init__.py
├── logger.py # Logging configuration
└── db_handler.py # Database operations
The application follows this data flow:
- Data Collection: Modules in
data_ingestion/
collect real-time data from exchanges - Data Processing: Raw data is cleaned and transformed into features
- AI Processing: ML models analyze processed data to generate trading signals
- Execution: If enabled, trades are executed based on signals
- AITradingAgent: Central orchestrator that initializes and manages all components
- DatabaseHandler: Stores collected data in SQLite (or other configured DB)
- Data Collectors: Separate modules for different data types (liquidations, funding rates, etc.)
- Model Trainer: Trains LSTM or other ML models on processed data
- Prediction Engine: Uses trained models to generate trading signals
- Order Manager: Executes trades based on signals and risk parameters
The modular design allows each component to be developed, tested, and enhanced independently.
- Python 3.8 or higher
- pip (Python package manager)
- Git
-
Clone the repository:
git clone https://github.com/yourusername/ai-trading-agent.git cd ai-trading-agent
-
Create a virtual environment:
python -m venv venv # On Windows venv\Scripts\activate # On macOS/Linux source venv/bin/activate
-
Install dependencies:
pip install -r requirements.txt
-
Create required directories:
mkdir -p logs data models
The system is configured through config/settings.yaml
. Before running, you need to:
-
Set your exchange API keys (if using live data):
exchanges: binance: api_key: "YOUR_API_KEY" api_secret: "YOUR_API_SECRET" testnet: true # Set to false for production
-
Configure which data collectors to enable:
data_collection: liquidation: enabled: true interval: 60 # seconds exchanges: ["binance", "bitmex"] # ... other collectors
-
Configure AI model parameters:
ai_module: model_type: "lstm" # Options: lstm, xgboost, transformer training: batch_size: 64 epochs: 100 test_size: 0.2
-
Enable/disable live trading:
execution: enabled: false # Set to true for live trading max_position_size: 1000 # in USD stop_loss_pct: 2.0 take_profit_pct: 5.0
Run the main application:
python main.py
This will:
- Initialize all configured data collectors
- Start collecting real-time data
- Process the data into features
- Train or load ML models (if configured)
- Generate trading signals
- Execute trades (if enabled in config)
# Use a custom config file
python main.py --config custom_config.yaml
# Run in backtesting mode (if implemented)
python main.py --backtest --start-date 2023-01-01 --end-date 2023-12-31
# Run in debug mode with verbose logging
python main.py --debug
config/
: Configuration filesdata_ingestion/
: Data collection modulesdata_processing/
: Data cleaning and feature engineeringai_module/
: Machine learning model training and predictionexecution/
: Order management and risk controlutils/
: Utility functions (logging, database)main.py
: Application entry point
Logs are stored in the logs/
directory. You can adjust the logging level in the config file:
logging:
level: "INFO" # DEBUG, INFO, WARNING, ERROR, CRITICAL
file: "logs/trading.log"
rotation: "1 day"
retention: "30 days"
By default, the application uses SQLite for data storage. You can configure other database types in the settings:
database:
type: "sqlite" # Options: sqlite, postgresql, mongodb
path: "data/trading.db" # For sqlite
# Additional settings for other DB types
This software is for educational purposes only. Cryptocurrency trading involves significant risk and you should never trade with money you cannot afford to lose. Always do your own research before making any investment decisions.
This project is licensed under the MIT License - see the LICENSE file for details.