Joaquin Roibal

Results 9 comments of Joaquin Roibal

I used (after ending with binance-trader), python-binance then converted my bot functionality using ccxt. I have a few youtube vids on this process.

Hi friend, which bot are you running? I remember running into the first error, can't recall how I fixed it. Hopefully you are using an outdated version of the bot....

So the error is the part " 'module' object is not callable " , see if you can find out more about the source / line of this error. somewhere...

The reason you are receiving that error is because 'BCC' , 'BCH' and a few other bitcoin forks get de-listed from binance or their code changes. Additionally, the try-except should...

You can see the updated 'try-except' code on line 554-556 of BinanceTriArbTrader.py This block of code will print out the raised error which helps greatly with debugging.

Hello - I believe when fee percentage is used, it is either divided by 100 or it compares to a value with a similar order of magnitude.

on line 691, you can see that the calculated fees are multiplied times 100, converting them into percentage. So fee percentage is in percentage, line 573 ----- fee_percentage = 0.1%*3

Also the fee percentage will be different if you pay with Binance coin as well.

Hi, are you using Tri Arb Trader? I have been seening this exact error 'module not callable' many times from different sources, this seems to be the new bottleneck /...