I’m running into an issue with creating a new order sometimes. It sometimes returns old orders somehow, is this an issue on my side or is this still work in progress from Coinbase’s side? All other APIs work fine. Here’s my code:
I’m only trying to put in a simple LIMIT order, both BUY and SELL do the same thing. Eventually if I keep trying it works fine. The returned data doesn’t help me out much either, except that the clientorderid isn’t matching the clientorderid I’ve sent to the server. The return status just returns “true” all the time.
Hello @R4z8r! Thank you for taking an interest in trying out Coinbase APIs. For the details regarding your concern, we will check on this for you with our team. We will get back to you once we have more information. Keep in touch!
Not super familiar with [some version of C?], but I think you probably want to double check your client_order_id. Make sure it is what you think it is, and make sure it’s really truly random. double check parameters etc.
You can only use a client_order_id once, even if you cancel the order later. Coinbase will always associate it with the first order you place with it. If you ever place another order with the same client_order_id, Coinbase will just return info for the first one. This is nice because if you send an order and, say, lose the connection before the response, you can safely try again without worrying about duplicating the order and trading twice as much crypto as you thought.
Correct me if I’m wrong but my understanding is that rand() is pseudo-random, and will generate the same “random” numbers every time you run the program. seeding it with srand() is better, but make sure the seed is different every run or it will still generate the same sequence of numbers.
That’s my best guess as to what’s happening, which would explain why it works after you keep trying for a while. rand() eventually generates a “random” number that Coinbase hasn’t seen yet, and the new order goes through.
I had a similar problem so I just started generating UUIDs for my client IDs and haven’t had that problem since. Hope that helps
Yes, I’ve triple checked all of the clientorderids, they’re all unique. I think it’s a bug in my code somewhere, it returns different old orders for like 10 times sometimes( from old to new, not in random order ). I initialize srand() with time() in the constructor of the class. I think I’m going to rewrite the code and try it again. Weird thing is that all the other APIs work fine though. Thought I was doing something wrong with the postfields, but that seems fine as well.
Do you want to be doing that in the constructor or in main? Are you creating multiple orders at once? If you are, then is there a chance you’re doing srand() multiple times in the same second?
None of the other endpoints require a user generated random string, so I feel like it has to be a problem with the client ID generation. idk
Nope, they’re all unique. It doesn’t matter at all, even if I use some kind of counter for clientorderid it does the same thing. I think it’s somewhere in my CURL code or it’s a bug in my account. I use the same code just fine for 3 other exchanges though, that’s the weird issue. I’ve logged everything, everything seems OK. It could also be that it has to do with my account, I’ve used normal CB and CB Pro on this one. Even if I use the new “Advanced Trade API” wallet endpoint which uses the V3 I get 0 balance on some accounts with the same accountids. If I use V2 it’s just fine with the same accountid. I kinda have the feeling it’s not properly merged yet( as Advanced Trade API is still in BETA also ).
Hi there @R4z8r! WIth regards to your concern, can you provide with us your userid? Rest assured that the team is working hard in investigating your case and we would provide an update as soon as we heard from them. On another note, if you could not be able to provide us the information being asked, your query would be better served by creating a support ticket using our Contact Us form: https://help.coinbase.com/en/contact-us. Thank you!