firepol
firepol
Never mind, I uninstalled your module and just did like this: ``` [error, response] = await myAsyncFunction(myArg1, myArg2).then(response => { return [null, response]; ).catch(error => [error]); return response || error...
Hi guys, FYI I created a repo that queries the API by symbol (yet another one, since I read somebody else did something similar). I'm not a python expert, I...
Hi @barnumbirr, welcome back! I think that we have the same problem... we still need a way to map normal symbols such as "BTC", "IOTA", "ETH", "BTG" etc. to the...
@ajeep8 what are you waiting to submit a PR? ;)
Don't take me wrong, I don't think that disabling ALL tests is the way to go. But say there are these 2-3 annoying tests that always fail, what's the point...
Accoording to base, then it should be "in format [ts, price, size]": ``` {'bids': [['1480941692', '0.014', '10'], ['1480941690', '0.013', '0.66'], ['1480941688', '0.012', '3']], 'asks': [['1480941691', '0.015', '1'], ['1480941650', '0.016', '0.67'],...
Ok, then we have 2 issues: 1) put timestamp in the end and update base.py accordingly, are there tests using that? Then need to update the tests too... 2) binance...
Probably you've seen my binance PR, but I didn't address this issue. I tried to have a look at this, but I'm having some difficulty to understand how it works:...
There were several issues. The hardest to find was the one generated by this call: `req_kwargs = super(BinanceREST, self).sign_request_kwargs(endpoint, **kwargs)` ``` def sign_request_kwargs(self, endpoint, **kwargs): """ Generate dummy Request Kwarg...
@ajeep8 I'm also coding something based on bitex, I save APIs in a json config file and read it like this: Here how my settings json looks like: ``` {...