Cryptocurrency-Trading-Bots-Python-Beginner-Advance icon indicating copy to clipboard operation
Cryptocurrency-Trading-Bots-Python-Beginner-Advance copied to clipboard

2 errors when i ran the script "could not convert string to float" and "'module' object is not callable"

Open hw00183 opened this issue 6 years ago • 4 comments

Hi i have 2 issues when executing the script :+1:

"LOADING BALANCES FROM BINANCE could not convert string to float: '[10.447733600487705'

FAILURE INITIALIZE

Restarting"

and before, when i can run the script and identidy potential arbitrage, i have this following error :

"PLACING ORDER

STARTING TRI ARB PAPER TRADING FUNCTION

'module' object is not callable

FAILURE INITIALIZE"

Can you please help me to resolve this 2 errors?

Thanks in advance.

hw00183 avatar Jan 18 '19 22:01 hw00183

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.

Second I am not sure about that error, have you installed all libraries appropriately?

Roibal avatar Jan 18 '19 22:01 Roibal

Hello, i installed the bot in windows 10, I was running on Windows 7 yesterday, i launch the script BinanceTriArbTrader.

However i still have the following error :

PLACING ORDER

STARTING TRI ARB PAPER TRADING FUNCTION

'module' object is not callable

I did not install package cryptography 2.1.4 and twisted 17.9.0 because the installation failed , i have newer version of that package.

How can i check that all libraries is installed?

hw00183 avatar Jan 19 '19 12:01 hw00183

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 it is calling the module rather than an instance.

Roibal avatar Jan 26 '19 17:01 Roibal

Hello, i installed the bot in windows 10, I was running on Windows 7 yesterday, i launch the script BinanceTriArbTrader.

However i still have the following error :

PLACING ORDER

STARTING TRI ARB PAPER TRADING FUNCTION

'module' object is not callable

I did not install package cryptography 2.1.4 and twisted 17.9.0 because the installation failed , i have newer version of that package.

How can i check that all libraries is installed?

import pprint change to: from pprint import pprint

JustP2W avatar Jan 03 '21 21:01 JustP2W