AndrijLischishin
AndrijLischishin
Hi @AvishaiW, when I am backtesting, exchange=bitfinex, at some points in my algorithm, I am placing limit orders, with limit_price = x, but when at the end I am looking...
Hi @lenak25, backtest
I have now the same issue as you, there is smth similar in issue #101 , take a look at it, I ll look at it later today
I keep getting this error: ```Traceback (most recent call last): File "bitfinex_api.py", line 36, in while not wss.account().empty(): AttributeError: 'BtfxWss' object has no attribute 'account' ``` I guess this is...
I solved that and what I am getting now is: ``` while not wss.account().empty(): TypeError: 'collections.defaultdict' object is not callable ```
``` import logging import time import sys from btfxwss import client, connection, queue_processor log = logging.getLogger(__name__) fh = logging.FileHandler('test.log') fh.setLevel(logging.DEBUG) sh = logging.StreamHandler(sys.stdout) sh.setLevel(logging.DEBUG) log.addHandler(sh) log.addHandler(fh) logging.basicConfig(level=logging.DEBUG, handlers=[fh, sh]) key...
I ve manually imported client.py and other files because account() is only in dev branch and btfxwss is installed via pip, but it doesn't contain dev branch, only master