Real-Time Candlestick Charts and Crypto Trading Bot using Binance API and Websockets
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
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 :)