Alex Ansuh
Alex Ansuh
I've also been working on this most of today. With minimal success, I've used this. ``` wss = BtfxWss(key, secret) wss.start() while not wss.conn.connected.is_set(): time.sleep(1) wss.authenticate() p = wss.positions while...
I got quite a bit further. 1. You need to be in the dev branch, while issue #101 is from 7 months ago the main branch hasn't been updated to...
I'm not sure. Can I look at some more code? All I could recommend is make sure you're using wss.account() instead of without the () wss.account won't work
I use ``` from btfxwss import BtfxWss wss = BtfxWss(key secret) ``` so your wss = client.BtfxWss(key,secret) may not be working correctly. Try importing like that.