-
Notifications
You must be signed in to change notification settings - Fork 131
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
added pagination to the calls #14
Conversation
…ences to the coinbase api (note - not gdax). CoinbaseExchange needs renaming to gdax to avoid this confusion
… api that already exists for the coinbase service
…e associated entity style classes
…e names of a few methods in the order service to more clearly reflect their purpose
…a test that failed because I wrote it badly and the sandbox appears to be down
Sorry for the wait |
No worries - I got the websocket feed working by the way. I then went down
the route of trying to build a functioning GUI for the orderbook as I've
noticed in the past that the GDAX website went down but the API was still
up and running. This meant when the price dropped (after the SEC didn't
approve the bitcoin ETF), there were a ton of buy orders which could have
gotten in a lot lower - if only they'd had access. So I thought a
downloadable, usable GUI front end might be a good work around for this.
I've not spent any time on it for the past few weeks as I went on holiday
and haven't managed to start back up again yet - a lot going on. Anyway I
wondered how good you were with orderbook stuff? Seems like you may have a
background in it? Is it something you could be interested in working on?
Regards,
Rob
…On Fri, May 12, 2017 at 4:42 PM, Ishmael Rufus ***@***.***> wrote:
Sorry for the wait
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#14 (comment)>, or mute
the thread
<https://github.com/notifications/unsubscribe-auth/ADuxmxHMgtYfxm3fTr4j1NEhkXJZp49Gks5r5H4BgaJpZM4MFl68>
.
|
Oh yeah I have a lot going as well (starting a new job soon) When I originally started this project my intent was building a platform that would add more features than what Coinbase Exchange (GDAX) offered like automatic trading, signal trading and peer trading. So building separate features like a usable GUI for the order book would be beneficial. Right now the current order book on GDAX is very chaotic and could probably use something that is more user friendly and useful. (Not a fan of top-down order books) I see a lot of features in platforms like ThinkOrSwim (ThinkTDA) that would certainly help with this issue. This is something I am interested in working on and will try to take a look at starting next week. (Hopefully earlier) |
Good news all round! Are you going anywhere exciting for your next role?
I'm not familiar with ThinkOrSwim so will have to see if I can find out
more about it.
Here's the link https://github.com/robevansuk/gdax-java/tree/websocketfeed
- you need to supply your own api key/secret/etc. (don't commit them). See
if you can get it running - think the start up command is just:
./gradlew bootRun or the equivalent for Windows.
Hopefully start back up on this some day soon.
…On Thu, May 18, 2017 at 5:31 PM, Ishmael Rufus ***@***.***> wrote:
Oh yeah I have a lot going as well (starting a new job soon)
When I originally started this project my intent was building a platform
that would add more features than what Coinbase Exchange (GDAX) offered
like automatic trading, signal trading and peer trading. So building
separate features like a usable GUI for the order book would be beneficial.
Right now the current order book on GDAX is very chaotic and could
probably use something that is more user friendly and useful. (Not a fan of
top-down order books) I see a lot of features in platforms like ThinkOrSwim
(ThinkTDA) that would certainly help with this issue.
This is something I am interested in working on and will try to take a
look at starting next week. (Hopefully earlier)
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#14 (comment)>, or mute
the thread
<https://github.com/notifications/unsubscribe-auth/ADuxm3X8UdDgvQE65-CT8Usbva93BzChks5r7HJggaJpZM4MFl68>
.
|
@robevansuk Quick question about the websocket example. I put the following code in a method which I am calling at the startup.
I have put all the necessary parameters in my property file and that doesn't seem to be the issue. Appreciate any direction on how to resolve this or any actual working example. I am using this in a Spring boot project by the way.`` |
product_ids should be a comma separated list of IDs you want to receive messages for. I'm looking to rewrite this bit anyway as its not working the way it should |
Follow this bit of code which already works.
|
Added pagination to the calls that made sense. tidied up the project dependencies (might have done that last time). provided better documentation about whats offered from this client library. more tests (warning: a lot of untested methods as well - these are provided as a convenience but require integration with the coinbase api really since they rely on coinbase account details). Another version bump. Added payments/transfers/withdrawal api calls. Changed name of everything to GDAX rather than coinbase since there is already a coinbase api which makes it confusing otherwise. Report calls implemented.
Outstanding - comprehensive tests for all the new endpoints. Will get these added in time but need the sandbox exchange to come back online!