MikaLendingBot
MikaLendingBot copied to clipboard
Automated lending on Cryptocurrency exchanges Poloniex and Bitfinex
Unit testing
We would like to implement unit testing for modules that is activated when run with something like the ``--runtests`` argument. Implementing this would make it much easier to see when...
``` Exception happened during processing of request from ('127.0.0.1', 59834) Traceback (most recent call last): File "/usr/local/Cellar/python/2.7.12_2/Frameworks/Python.framework/Versions/2.7/lib/python2.7/SocketServer.py", line 290, in _handle_request_noblock self.process_request(request, client_address) File "/usr/local/Cellar/python/2.7.12_2/Frameworks/Python.framework/Versions/2.7/lib/python2.7/SocketServer.py", line 318, in process_request self.finish_request(request,...
This started happening yesterday it seems. I have `mindailyrate = 0.009` in default.cfg and are keeping 90 days worth of BTC market data. The bot is giving me the notice...
I see a minimum amount for orders, but there should be a maximum as well for BTC and individual coins. I would like to spread the orders when I dump...
Configuration, MarketAnalysis perform API calls which might fail and therefore we need to handle them as well. https://github.com/Mikadily/poloniexlendingbot/blob/master/lendingbot.py#L36 https://github.com/Mikadily/poloniexlendingbot/blob/master/lendingbot.py#L54
The demand and supply for each market is different. I think it would be a good customisation, if it is possible. For example, I would not mind lending ETH at...
1. Hide coins only till a specific gap below the minDailyRate 2. Use the minDailyRate (coin specific or general) as a base for the offers spread. Currently if hidecoins isn't...
Hi all, I deployed the bot on pythonanywhere, but the error occurred when I executed "python2.7 lendingbot.py". lexrms posted his solution for this issue in ticket #446 but it doesn't...
This commit introduces a new graphical user interface (GUI) built with Tkinter for configuring the lending bot. The GUI allows you to more easily manage essential settings without directly editing...