coinbasepro-python icon indicating copy to clipboard operation
coinbasepro-python copied to clipboard

The unofficial Python client for the Coinbase Pro API

Results 95 coinbasepro-python issues
Sort by recently updated
recently updated
newest added

When working with the gdax module it is working as expected but not with cbpro. As example my test code to test 1 hour historical data. #!/usr/bin/python import gdax import...

enhancement

Using decorators is a much cleaner way than subclassing WebsocketClient. Will it be taken into consideration?

command: b=auth_client.place_order(product_id='ETC-EUR', order_type='limit', side='buy', price='4.23', size='1', time_in_force='GTT', cancel_after='1min') *** response --------------------------------------------------------------------------- ValueError Traceback (most recent call last) in () 5 size='1', 6 time_in_force='GTT', ----> 7 cancel_after='1min') /usr/local/lib/python2.7/dist-packages/cbpro-1.1.1-py2.7.egg/cbpro/authenticated _client.pyc in place_order(self,...

Is there a way to replicate the functionality offered by the `depositCrypto` method in the official Node client? As in a method that returns an address to send crypto to...

Hey there! I'm trying to add some retry / error handling logic to the code that I'm writing. I want to be able to split between errors that should be...

It is the end users job to measure and limit their requests, not a task that a simple api should be trying to do. Please do not ever include code...

I have code to convert the string to a csv file. However, the following command: **str(list(auth_client.get_orders(status='open')))** Intermittently returns the following at the end of the string: **}, 'message']** Which consistently...

Hi, I have the following code that works fine on Mac Terminal. ```python import json import time import sys import cbpro import os from dotenv import load_dotenv load_dotenv(verbose=True) """LOAD UP...

1. Added kwarg for the name of the main thread of WSC 2. Added kwarg for the keepalive thread name

Can anyone think of an elegant solution to the problem of initializing an order book? Any time I want to initialize a book it takes a long time, and sometimes...