Post
Topic
Board Project Development
Re: [ANN] MarginBot - A Bitfinex Margin Lending Management Bot
by
HowardF
on 19/12/2015, 21:03:50 UTC
Just a quick update for everyone:

If you are having issues with MarginBot updating your daily returns, its because of change bitfinex made to their API a while ago.  Just change the following and it should start working again:

/inc/ExchangeAPIs/bitfinex.php
LINE 148:
if($l['description'] == 'Swap Payment on wallet deposit'){

change to:
if(strtolower($l['description']) == strtolower('Swap Payment on wallet deposit') || strtolower($l['description'])==strtolower('Margin Funding Payment on wallet Deposit') ){

Should start updating your daily returns again.