My first Python3 script for automating cryptocurrency trading using the Binance API.
Analyzes candlestick patterns and tries to buy low and sell high.
Do not use this if you want to make money. I have no idea what I am doing.
Configure the script through config.txt (make a copy of config_example.txt), see comments for details about parameters. See main() in start_trading.py for example usage.
Requires a Binance account and API access, go to account settings to enable then replace example API key and secret in start_trading.py somehow.
Run start_trading.py in console or configure as a service.
Has a node package that can be used to extract statistics from a database created on run containing order history and recognized patterns. npm install binanza in script folder, defaults to outputting statistics through port 80.
- numpy
- TA-Lib
- python-binance