Skip to main content

# Cryptocurrency Bot ## Usage* Clone the repo and use exchange_utils.py and auth.py as normal modules.* API keys are required for each exchange you use..

Project description

Cryptocurrency Bot

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:

  • Generate keys for binance: https://www.binance.com/userCenter/createApi.html
  • Add the keys to a file named api_keys.json in the same directory
    Format of api_keys.json:
    {
        "exchange_name": {
            "api_key": "public api key here",
            "api_secret": "secret key here"
        }
    }
    

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.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

cryptobot_pro-3.1.5.tar.gz (3.5 kB view hashes)

Uploaded Source

Built Distribution

cryptobot_pro-3.1.5-py3-none-any.whl (2.9 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page