BitBotFactory / MikaLendingBot

Automated lending on Cryptocurrency exchanges Poloniex and Bitfinex
http://poloniexlendingbot.readthedocs.io/en/latest/index.html
MIT License
1.11k stars 344 forks source link

Min daily rate to 0.0003 #663

Closed a01410207 closed 2 years ago

a01410207 commented 2 years ago

Apparently, the bot is not allowing for less than 0.001% of the min daily rate although the current market situation sits at 0.0003%; when updating the code to that rate is not able to run, can anyone give support?

Thanks!

rnevet commented 2 years ago

As the configuration says:

Setting to 0.0031 is about 1% a year, not worth it.

a01410207 commented 2 years ago

As the configuration says: #Setting to 0.0031 is about 1% a year, not worth it.

So given the current rates, it'd be impossible to use the bot? If it's less than 0.003 then I can't use it?

rnevet commented 2 years ago

No, you need to manually change the code in this line: https://github.com/BitBotFactory/MikaLendingBot/blob/b59ab8709220b3be1481ca8949a80f944b05018e/modules/Lending.py#L70 and depending on your configuration maybe also in this line: https://github.com/BitBotFactory/MikaLendingBot/blob/b59ab8709220b3be1481ca8949a80f944b05018e/modules/Lending.py#L271

you can see the 0.003 is set there as the lower limit for this config value.

a01410207 commented 2 years ago

No, you need to manually change the code in this line:

https://github.com/BitBotFactory/MikaLendingBot/blob/b59ab8709220b3be1481ca8949a80f944b05018e/modules/Lending.py#L70

and depending on your configuration maybe also in this line:

https://github.com/BitBotFactory/MikaLendingBot/blob/b59ab8709220b3be1481ca8949a80f944b05018e/modules/Lending.py#L271

you can see the 0.003 is set there as the lower limit for this config value.

Thanks for your help, will try it out!