- Introduction
- Features
- Getting Started
- Implemented Features
- Planned Features
- Contributing
- License
- For Developers
- For End Users
TradeSuite is a multi-exchange cryptocurrency trading platform built using DearPyGUI and CCXT PRO. It provides a real-time streaming interface for multiple instances of the same exchange, with features such as real-time candlestick charting and a real-time order book with price level zoom and aggregation toggle.
- Basic real-time candlestick charting interface
- Real time EMA series for candle sticks
- Real-time order book with price level zoom and aggregation toggle
- Python 3.10+
- InfluxDB (local or cloud instance)
- CCXT Pro license (for professional use)
The easiest way to install TradeSuite is using our automated installation script. Choose the appropriate method for your operating system:
# Clone the repository
git clone https://github.com/pattty847/Trade-Suite-v2.git
cd Trade-Suite-v2
# Make the installation script executable
chmod +x scripts/install.sh
# Run the installation script
./scripts/install.sh
# Clone the repository
git clone https://github.com/pattty847/Trade-Suite-v2.git
cd Trade-Suite-v2
# Run the installation script
scripts\install.bat
The installation script will:
- Check your Python version
- Create and activate a virtual environment
- Install dependencies using UV (recommended) or pip
- Set up your environment file
Note: The script will prompt you to choose between UV (recommended) or pip for package installation. UV is significantly faster and more reliable, especially for packages that require compilation.
If you prefer to install manually, follow these steps:
-
Clone the repository:
git clone https://github.com/pattty847/Trade-Suite-v2.git cd Trade-Suite-v2
-
Set up a virtual environment:
# Using venv (standard) python -m venv .venv # On Windows .venv\Scripts\activate # On macOS/Linux source .venv/bin/activate
-
Install dependencies:
# Install uv (recommended for faster installation) pip install uv # Install dependencies using uv uv pip install -r requirements.txt
-
Important: TA-Lib requires C++ libraries:
- Windows: Download and install the wheel from here
- macOS:
brew install ta-lib
- Linux:
apt-get install ta-lib
-
Configure your environment variables:
# Copy the template file cp .env.template .env # Edit the .env file with your API keys and credentials
-
Required API services:
- InfluxDB (for data storage)
- Exchange API keys (Coinbase, etc.)
- Any additional services used
-
Configure InfluxDB:
- Make sure InfluxDB is running locally (or you have cloud access)
- Create buckets: "trades", "market_data", "candles", "orderbook"
- Update your .env file with the correct tokens and organization
Simply double-click the appropriate script for your operating system:
- Windows: Double-click
run.bat
- macOS/Linux: Double-click
run.sh
(or run./run.sh
in terminal)
These scripts will automatically:
- Check if your setup is complete
- Run the installation script if needed
- Start the application with default settings
You can run the application manually in several ways:
-
As the main script:
python main.py
-
As a module:
python -m trade_suite
Command-line arguments are supported with both methods:
# With specific exchanges
python main.py --exchanges coinbase binance
# With debug logging
python main.py --level DEBUG
- Basic Real-Time Candlestick Charting Interface: Implemented using DearPyGUI and CCXT PRO.
- Multiple Tabs Feature: Support for numerous instances of the same exchange.
- Real-Time Candlestick Updates and Indicators: Continuous updating of candlestick charts with relevant trading indicators.
- Object-Oriented Design: Ensures ease of scalability and further development.
- ArgParser for Command-Line Entry: To facilitate easier and more flexible program startup through the command line.
- Performance Optimization: Enhanced the efficiency and responsiveness of the application (orderbook processing, chart updating).
- Separate the Data storage aspect to a new continously running Influx server the client can request data from.
- Trading Capabilities: Enabling actual trading actions (buy, sell, etc.) within the platform.
- Multi-Exchange Portfolio Management: Cross-exchange portfolio aggregation and management system.
- Expansion of Technical Indicators: Adding more indicators for comprehensive technical analysis.
- Order Interface Development: To manage and execute trade orders directly from the platform.
- User Authentication and Security: Implementing secure login and data protection measures.
- Mobile Compatibility: Adapting the platform for use on mobile devices.
- Historical Data Analysis Features: Integrating tools for back-testing strategies with historical data.
- Customizable UI Elements: Allowing users to personalize the interface to suit their preferences.
- Integration with Additional Exchanges: Expanding the range of supported cryptocurrency exchanges.
- Real-Time News and Market Updates: Incorporating a feature to provide live news and market updates.
- Community Features: Adding forums or chatrooms for user interaction and discussion.
- Advanced Charting Tools: Implementing more sophisticated charting options for in-depth analysis.
We welcome contributions to TradeSuite! If you'd like to contribute, please follow these steps:
- Fork the repository on GitHub.
- Create a new branch from the main branch for your work.
- Make your changes, commit them, and push them to your fork.
- Submit a pull request to the main repository.
Please make sure to follow our contribution guidelines.
TradeSuite is released under the MIT License. See the LICENSE file for details.
The easiest way for end users to run the application is with a standalone executable:
-
Install PyInstaller:
pip install pyinstaller
-
Run the build script:
# On Windows python build_executable.py # On macOS/Linux python3 build_executable.py
-
The executable will be created in the
dist
folder, ready to distribute to users.
UV is a modern Python packaging tool that offers significant performance improvements over pip:
-
Install UV:
pip install uv
-
Use UV for dependency management:
# Install dependencies uv pip install -r requirements.txt # Create a lockfile for reproducible builds uv pip compile --output-file requirements.lock requirements.txt # Install from lockfile uv pip install -r requirements.lock
-
UV Virtual Environments:
# Create and activate a virtual environment uv venv source .venv/bin/activate # Linux/macOS .venv\Scripts\activate # Windows
-
Export consolidated dependencies:
uv pip freeze > requirements-frozen.txt
UV offers faster installation times, better dependency resolution, and is 100% compatible with pip. For more information, visit the UV documentation.
If you're not familiar with Python or command-line tools, we provide pre-built executables for Windows and macOS:
- Download the latest release from the Releases page
- Extract the zip file to a folder of your choice
- Double-click the TradeSuite executable to run the application
- No installation or configuration is required for basic usage
The application works with public cryptocurrency data by default, no API keys required!