Cryptocurrency Bot

March 22, 2018 ยท View on GitHub

Usage

  • Clone the repo and use exchange_utils.py and auth.py as normal modules.
  • API keys are required for each exchange you use.

Installing Requirements:

pip install -r requirements.txt

Getting API Keys:

Changing Exchanges

  • In auth.py, change ccxt.binance to ccxt.exchange_of_your_choice, see ccxt documentation for a list of supported exchanges. I've tried to make sure all the functions in exchange_utils work across any exchange, but they have only been thouroughly tested on Binance.
    Example:
exchange = ccxt.bittrex({
    'apiKey': keys['bittrex']['api_key'],
    'secret': keys['bittrex']['api_secret'],
})

Examples

Example bots are in the bots subfolder. I am not liable for anything that happens if you choose to use these bots.