Skylar Saveland

Results 70 comments of Skylar Saveland

https://bittrex.github.io/guides/v3/upgrade maybe some clues to look at ... https://pypi.org/project/bittrex-api/

Is there anywhere I can read up on `corehub = connection.register_hub('coreHub')`? Where can I get a listing of possible values for eg `'updateSummaryState'`, `'updateExchangeState'`? Is this stuff documented?

The code works. I adapted it to a little class: ```python from requests import Session from signalr import Connection class WebsocketAPI(object): url = 'http://socket.bittrex.com/signalr' def __init__(self, market, timeout=120000): with Session()...

I think this issue should stay open; we should get support for this into this library one way or the other. Maybe @ericsomdahl wants to weigh in. This is the...

Is anyone else experiencing this? ``` HTTPError: 503 Server Error: Service Temporarily Unavailable for url: http://socket.bittrex.com/signalr/negotiate?connectionData=%5B%7B%22name%22%3A+%22coreHub%22%7D%5D&clientProtocol=1.5 ``` I don't think I've changed anything. I'm thinking maybe Bittrex is under heavy...

I didn't notice the connection token parameter before. This is what gets sent from the website now: ``` wss://socket.bittrex.com/signalr/connect?transport=webSockets&clientProtocol=1.5&connectionToken=28%2BotNt6hw6w%2BaNTgvve4ME4aTHBf5Mk2niqkjoyMXRA9c7KU088N8q%2F3DYcoOlNdE4W8tuqy1vR8ssLLaMQ0YKfUkCJ%2B0UsiI%2B8A6b&connectionData=%5B%7B%22name%22%3A%22corehub%22%7D%5D&tid=1 ```

@dparlevliet is my hero. So, altogether, I have working, as of right now, for ticker data for example: ``` class BittrexSignalr(object): url = 'http://socket.bittrex.com/signalr' def __init__(self): # important! imports go...

Hrm. Yeah, confirmed that I'm not getting any data anymore. The connection seems to happen just fine; but, `self.corehub.client.on('updateSummaryState', self.update)` event never fires :/

Paging Dr. @dparlevliet ... any idea where 'updateSummaryState' got off to?

Is there any updateSummaryState equivalent?