├── .dockerignore ├── .github ├── CONTRIBUTING.md ├── PULL_REQUEST_TEMPLATE.md └── no-response.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── default.cfg.example ├── docker-compose.yaml ├── docs ├── Documentation.url ├── Makefile ├── README.txt ├── conf.py ├── configuration.rst ├── contributing.rst ├── index.rst ├── installation.rst ├── make.bat └── market_analysis.rst ├── lendingbot.py ├── market_data └── readme.txt ├── modules ├── Bitfinex.py ├── Bitfinex2Poloniex.py ├── Configuration.py ├── ConsoleUtils.py ├── Data.py ├── ExchangeApi.py ├── ExchangeApiFactory.py ├── Lending.py ├── Logger.py ├── MarketAnalysis.py ├── MaxToLend.py ├── Notify.py ├── PluginsManager.py ├── Poloniex.py ├── RingBuffer.py ├── WebServer.py └── __init__.py ├── plugins ├── AccountStats.py ├── Charts.py ├── Plugin.py └── __init__.py ├── requirements.txt ├── setup-container.sh ├── tests ├── README.md ├── test_BitfinexAPI.py ├── test_MarketAnalysis.py └── test_PoloniexAPI.py └── www ├── charts.html ├── images ├── icon.ico ├── icon192.png ├── icon32.png ├── icon384.png ├── icon48.png └── ios_splash.png ├── index.html ├── lendingbot.html ├── lendingbot.js ├── manifest.json └── robots.txt /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitBotFactory/MikaLendingBot/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitBotFactory/MikaLendingBot/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitBotFactory/MikaLendingBot/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/no-response.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitBotFactory/MikaLendingBot/HEAD/.github/no-response.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitBotFactory/MikaLendingBot/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitBotFactory/MikaLendingBot/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitBotFactory/MikaLendingBot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitBotFactory/MikaLendingBot/HEAD/README.md -------------------------------------------------------------------------------- /default.cfg.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitBotFactory/MikaLendingBot/HEAD/default.cfg.example -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitBotFactory/MikaLendingBot/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /docs/Documentation.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitBotFactory/MikaLendingBot/HEAD/docs/Documentation.url -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitBotFactory/MikaLendingBot/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitBotFactory/MikaLendingBot/HEAD/docs/README.txt -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitBotFactory/MikaLendingBot/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/configuration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitBotFactory/MikaLendingBot/HEAD/docs/configuration.rst -------------------------------------------------------------------------------- /docs/contributing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitBotFactory/MikaLendingBot/HEAD/docs/contributing.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitBotFactory/MikaLendingBot/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitBotFactory/MikaLendingBot/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitBotFactory/MikaLendingBot/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/market_analysis.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitBotFactory/MikaLendingBot/HEAD/docs/market_analysis.rst -------------------------------------------------------------------------------- /lendingbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitBotFactory/MikaLendingBot/HEAD/lendingbot.py -------------------------------------------------------------------------------- /market_data/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitBotFactory/MikaLendingBot/HEAD/market_data/readme.txt -------------------------------------------------------------------------------- /modules/Bitfinex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitBotFactory/MikaLendingBot/HEAD/modules/Bitfinex.py -------------------------------------------------------------------------------- /modules/Bitfinex2Poloniex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitBotFactory/MikaLendingBot/HEAD/modules/Bitfinex2Poloniex.py -------------------------------------------------------------------------------- /modules/Configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitBotFactory/MikaLendingBot/HEAD/modules/Configuration.py -------------------------------------------------------------------------------- /modules/ConsoleUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitBotFactory/MikaLendingBot/HEAD/modules/ConsoleUtils.py -------------------------------------------------------------------------------- /modules/Data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitBotFactory/MikaLendingBot/HEAD/modules/Data.py -------------------------------------------------------------------------------- /modules/ExchangeApi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitBotFactory/MikaLendingBot/HEAD/modules/ExchangeApi.py -------------------------------------------------------------------------------- /modules/ExchangeApiFactory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitBotFactory/MikaLendingBot/HEAD/modules/ExchangeApiFactory.py -------------------------------------------------------------------------------- /modules/Lending.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitBotFactory/MikaLendingBot/HEAD/modules/Lending.py -------------------------------------------------------------------------------- /modules/Logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitBotFactory/MikaLendingBot/HEAD/modules/Logger.py -------------------------------------------------------------------------------- /modules/MarketAnalysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitBotFactory/MikaLendingBot/HEAD/modules/MarketAnalysis.py -------------------------------------------------------------------------------- /modules/MaxToLend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitBotFactory/MikaLendingBot/HEAD/modules/MaxToLend.py -------------------------------------------------------------------------------- /modules/Notify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitBotFactory/MikaLendingBot/HEAD/modules/Notify.py -------------------------------------------------------------------------------- /modules/PluginsManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitBotFactory/MikaLendingBot/HEAD/modules/PluginsManager.py -------------------------------------------------------------------------------- /modules/Poloniex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitBotFactory/MikaLendingBot/HEAD/modules/Poloniex.py -------------------------------------------------------------------------------- /modules/RingBuffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitBotFactory/MikaLendingBot/HEAD/modules/RingBuffer.py -------------------------------------------------------------------------------- /modules/WebServer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitBotFactory/MikaLendingBot/HEAD/modules/WebServer.py -------------------------------------------------------------------------------- /modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitBotFactory/MikaLendingBot/HEAD/modules/__init__.py -------------------------------------------------------------------------------- /plugins/AccountStats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitBotFactory/MikaLendingBot/HEAD/plugins/AccountStats.py -------------------------------------------------------------------------------- /plugins/Charts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitBotFactory/MikaLendingBot/HEAD/plugins/Charts.py -------------------------------------------------------------------------------- /plugins/Plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitBotFactory/MikaLendingBot/HEAD/plugins/Plugin.py -------------------------------------------------------------------------------- /plugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitBotFactory/MikaLendingBot/HEAD/plugins/__init__.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | pandas 3 | hypothesis 4 | requests 5 | pytz 6 | -------------------------------------------------------------------------------- /setup-container.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitBotFactory/MikaLendingBot/HEAD/setup-container.sh -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitBotFactory/MikaLendingBot/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/test_BitfinexAPI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitBotFactory/MikaLendingBot/HEAD/tests/test_BitfinexAPI.py -------------------------------------------------------------------------------- /tests/test_MarketAnalysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitBotFactory/MikaLendingBot/HEAD/tests/test_MarketAnalysis.py -------------------------------------------------------------------------------- /tests/test_PoloniexAPI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitBotFactory/MikaLendingBot/HEAD/tests/test_PoloniexAPI.py -------------------------------------------------------------------------------- /www/charts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitBotFactory/MikaLendingBot/HEAD/www/charts.html -------------------------------------------------------------------------------- /www/images/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitBotFactory/MikaLendingBot/HEAD/www/images/icon.ico -------------------------------------------------------------------------------- /www/images/icon192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitBotFactory/MikaLendingBot/HEAD/www/images/icon192.png -------------------------------------------------------------------------------- /www/images/icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitBotFactory/MikaLendingBot/HEAD/www/images/icon32.png -------------------------------------------------------------------------------- /www/images/icon384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitBotFactory/MikaLendingBot/HEAD/www/images/icon384.png -------------------------------------------------------------------------------- /www/images/icon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitBotFactory/MikaLendingBot/HEAD/www/images/icon48.png -------------------------------------------------------------------------------- /www/images/ios_splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitBotFactory/MikaLendingBot/HEAD/www/images/ios_splash.png -------------------------------------------------------------------------------- /www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitBotFactory/MikaLendingBot/HEAD/www/index.html -------------------------------------------------------------------------------- /www/lendingbot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitBotFactory/MikaLendingBot/HEAD/www/lendingbot.html -------------------------------------------------------------------------------- /www/lendingbot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitBotFactory/MikaLendingBot/HEAD/www/lendingbot.js -------------------------------------------------------------------------------- /www/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitBotFactory/MikaLendingBot/HEAD/www/manifest.json -------------------------------------------------------------------------------- /www/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: / 3 | --------------------------------------------------------------------------------