├── .gitignore ├── README.md ├── app.js ├── exchanges ├── bitfinex.js ├── config-example.js └── poloniex.js ├── package.json ├── playground.js └── utils ├── logger.js └── messenger.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joepegler/Cryptocurrency-Arbitrage-Bot/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joepegler/Cryptocurrency-Arbitrage-Bot/HEAD/README.md -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joepegler/Cryptocurrency-Arbitrage-Bot/HEAD/app.js -------------------------------------------------------------------------------- /exchanges/bitfinex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joepegler/Cryptocurrency-Arbitrage-Bot/HEAD/exchanges/bitfinex.js -------------------------------------------------------------------------------- /exchanges/config-example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joepegler/Cryptocurrency-Arbitrage-Bot/HEAD/exchanges/config-example.js -------------------------------------------------------------------------------- /exchanges/poloniex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joepegler/Cryptocurrency-Arbitrage-Bot/HEAD/exchanges/poloniex.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joepegler/Cryptocurrency-Arbitrage-Bot/HEAD/package.json -------------------------------------------------------------------------------- /playground.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joepegler/Cryptocurrency-Arbitrage-Bot/HEAD/playground.js -------------------------------------------------------------------------------- /utils/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joepegler/Cryptocurrency-Arbitrage-Bot/HEAD/utils/logger.js -------------------------------------------------------------------------------- /utils/messenger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joepegler/Cryptocurrency-Arbitrage-Bot/HEAD/utils/messenger.js --------------------------------------------------------------------------------