Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 880 Bytes

File metadata and controls

29 lines (21 loc) · 880 Bytes

Crypto-Trading-Bot

Real-Time Candlestick Charts and Crypto Trading Bot using Binance API and Websockets

Usage

Dependencies

Make sure to install python-binance, TA-Lib, numpy, websocket_client by opening cmd and opening the directory where the requirements.txt file is located and typing the following command

pip install -r requirements.txt

Setup

After installing the dependencies make sure you make a binance account and copy the binanceapikey and paste it inside the yourbinanceapikey in config.py file

API_KEY = 'yourbinanceapikey'

after pasting you api key, copy your binanceapisecret and paste it inside youbinanceapisecret in config.py file

API_SECRET = 'youbinanceapisecret'

After doing all the steps, run the bot and you are good to go :)

Hope this helped you :)