Doug Dellolio

Results 18 comments of Doug Dellolio

hi @dsconsole283 the websocket seems to be working on my end. Here is an example snippet you can try. You should fill in the authenticator with your sandbox credentials and...

@GITMIKRO To start... you will have to new up a new gdax client with your credentials which can be found here for the live server https://www.gdax.com/settings/api or https://public.sandbox.gdax.com/settings/api for sandbox....

@GITMIKRO no worries. please provide code and i would be happy to take a look and help

@GITMIKRO it looks like the channel you want to subscribe to is the ticker channel: https://docs.gdax.com/#the-code-classprettyprinttickercode-channel here is some code I threw together to print out the best bid and...

@olegboksner im not sure I understand your question. The data is contained in the eventargs (the e in `webSocket.OnTickerReceived += (sender, e) =>`. you can replace the write statement with...

@olegboksner it sounds like you are looking at the right channel.....level2 is what you want. The way this channel works is it will send a message with "snapshot" type and...

@olegboksner no worries. my comment above does exactly what you are looking for (the 6th comment down). it will print the best bid and ask continuously using the websocket feed...

@olegboksner I am not sure I understand what you're asking for. If you want a streaming view of all bids and asks you should subscribe to `OnLevel2UpdateReceived` as shown in...

from what I can tell, there is no way to do what you are asking for based on their docs itself (as a specific request related to the websocket) when...

@olegboksner according to the docs, there is no way to get just the top 5 or 10 that I can find. Although as I said, I don't believe its expensive...