Get alerted when any new crypto appears on your preferred exchange. Tested with gdax, bittrex, binance, and kucoin but will work with other exchanges supported by cctx
- Node v7.7+ (author tested with 7.7.4)
git clone https://github.com/spinegar/crypto-alerts
cd crypto-alerts
npm install
cp config.example.js config.js
- For each exchange you use, add a new object to the exchange list with an
key
andsecret
. Refer to https://github.com/ccxt/ccxt for properties needed for constructor. All the exchanges the author used just requiredkey
andsecret
as shown in the example config. Note: when creating api keys on each exchange the only permissions needed are read. Don't allow withdrawal or trade for security. - run
node app.js
- Ideally, use PM2 or an alternative to ensure the process is always running.