An automated trading bot for Coinbase Pro, will:
- teach you about programming
- help you learn about finance
- help you understand exchanges
- be able to automate your trades
'tradingBot/cbpro.py' is where much of the magic happens, the other files are auxillary. This tool can be built out to work for multiple exchanges and in the future, defi protocols.
Happy trading!
First add system environment variables for the given exchange ex
api_key = os.environ['CB_API_KEY']
secret_key = os.environ['CB_SECRET_KEY']
passphrase = os.environ['CB_PASSPHRASE']
WIP