├── .eslintignore ├── .eslintrc.js ├── .github └── issue_template.md ├── .gitignore ├── LICENSE.md ├── README.md ├── bitprophet.js ├── chat_bot.js ├── command_generator.js ├── commands ├── account.js ├── cancel.js ├── help.js ├── index.js ├── left.js ├── list.js ├── orders.js ├── pause.js ├── profits.js ├── restart.js ├── sell.js ├── status.js └── strategy.js ├── discord_bot.js ├── exchange_utils.js ├── indicators.js ├── package.json ├── pair_generator.js ├── pres ├── chat_example.png ├── chat_id.png ├── chat_profits.png ├── getting_started.png ├── logo.png └── logo_color.png ├── strategies ├── alertsichimoku.js ├── alertsrsi.js ├── buydip.js └── index.js ├── strategy_generator.js ├── strategy_manager.js ├── telegram_bot.js ├── utils.js └── vars.js /.eslintignore: -------------------------------------------------------------------------------- 1 | *.md 2 | *.json 3 | 4 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresilvasantos/bitprophet/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresilvasantos/bitprophet/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresilvasantos/bitprophet/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresilvasantos/bitprophet/HEAD/README.md -------------------------------------------------------------------------------- /bitprophet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresilvasantos/bitprophet/HEAD/bitprophet.js -------------------------------------------------------------------------------- /chat_bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresilvasantos/bitprophet/HEAD/chat_bot.js -------------------------------------------------------------------------------- /command_generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresilvasantos/bitprophet/HEAD/command_generator.js -------------------------------------------------------------------------------- /commands/account.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresilvasantos/bitprophet/HEAD/commands/account.js -------------------------------------------------------------------------------- /commands/cancel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresilvasantos/bitprophet/HEAD/commands/cancel.js -------------------------------------------------------------------------------- /commands/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresilvasantos/bitprophet/HEAD/commands/help.js -------------------------------------------------------------------------------- /commands/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresilvasantos/bitprophet/HEAD/commands/index.js -------------------------------------------------------------------------------- /commands/left.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresilvasantos/bitprophet/HEAD/commands/left.js -------------------------------------------------------------------------------- /commands/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresilvasantos/bitprophet/HEAD/commands/list.js -------------------------------------------------------------------------------- /commands/orders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresilvasantos/bitprophet/HEAD/commands/orders.js -------------------------------------------------------------------------------- /commands/pause.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresilvasantos/bitprophet/HEAD/commands/pause.js -------------------------------------------------------------------------------- /commands/profits.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresilvasantos/bitprophet/HEAD/commands/profits.js -------------------------------------------------------------------------------- /commands/restart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresilvasantos/bitprophet/HEAD/commands/restart.js -------------------------------------------------------------------------------- /commands/sell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresilvasantos/bitprophet/HEAD/commands/sell.js -------------------------------------------------------------------------------- /commands/status.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresilvasantos/bitprophet/HEAD/commands/status.js -------------------------------------------------------------------------------- /commands/strategy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresilvasantos/bitprophet/HEAD/commands/strategy.js -------------------------------------------------------------------------------- /discord_bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresilvasantos/bitprophet/HEAD/discord_bot.js -------------------------------------------------------------------------------- /exchange_utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresilvasantos/bitprophet/HEAD/exchange_utils.js -------------------------------------------------------------------------------- /indicators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresilvasantos/bitprophet/HEAD/indicators.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresilvasantos/bitprophet/HEAD/package.json -------------------------------------------------------------------------------- /pair_generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresilvasantos/bitprophet/HEAD/pair_generator.js -------------------------------------------------------------------------------- /pres/chat_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresilvasantos/bitprophet/HEAD/pres/chat_example.png -------------------------------------------------------------------------------- /pres/chat_id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresilvasantos/bitprophet/HEAD/pres/chat_id.png -------------------------------------------------------------------------------- /pres/chat_profits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresilvasantos/bitprophet/HEAD/pres/chat_profits.png -------------------------------------------------------------------------------- /pres/getting_started.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresilvasantos/bitprophet/HEAD/pres/getting_started.png -------------------------------------------------------------------------------- /pres/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresilvasantos/bitprophet/HEAD/pres/logo.png -------------------------------------------------------------------------------- /pres/logo_color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresilvasantos/bitprophet/HEAD/pres/logo_color.png -------------------------------------------------------------------------------- /strategies/alertsichimoku.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresilvasantos/bitprophet/HEAD/strategies/alertsichimoku.js -------------------------------------------------------------------------------- /strategies/alertsrsi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresilvasantos/bitprophet/HEAD/strategies/alertsrsi.js -------------------------------------------------------------------------------- /strategies/buydip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresilvasantos/bitprophet/HEAD/strategies/buydip.js -------------------------------------------------------------------------------- /strategies/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresilvasantos/bitprophet/HEAD/strategies/index.js -------------------------------------------------------------------------------- /strategy_generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresilvasantos/bitprophet/HEAD/strategy_generator.js -------------------------------------------------------------------------------- /strategy_manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresilvasantos/bitprophet/HEAD/strategy_manager.js -------------------------------------------------------------------------------- /telegram_bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresilvasantos/bitprophet/HEAD/telegram_bot.js -------------------------------------------------------------------------------- /utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresilvasantos/bitprophet/HEAD/utils.js -------------------------------------------------------------------------------- /vars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresilvasantos/bitprophet/HEAD/vars.js --------------------------------------------------------------------------------