Quick Start

ByNinja Trading Bot runs best on Ubuntu. If you are using Windows, we highly recommend installing Windows Subsystem for Linux (WSL) for a seamless experience.

Get Ubuntu (WSL) from Microsoft Store

1. Install Git

Open your Ubuntu terminal and install Git. This is required to download the bot's source code.

sudo apt update && sudo apt install git -y

2. Clone the Repository

Download the trading bot repository to your local machine using Git.

git clone https://github.com/byninja-trading/byninja-trading-bot

3. Navigate to Directory

Enter the newly downloaded repository folder.

cd byninja-trading-bot

4. Environment Setup

Run the setup script that automatically updates dependencies, installs the Python virtual environment, upgrades pip, and installs all required Python packages (like python-binance, pandas, etc.).

chmod +x setup.sh && ./setup.sh