coinbasepro-python
coinbasepro-python copied to clipboard
The unofficial Python client for the Coinbase Pro API
Recursive + Binary Search
Hi, Especially in volatile situations, I have seen some of my stop orders were run past because the limit price and stop price are the same thus there is a...
Per https://algotrading101.com/learn/coinbase-pro-api-guide/ and I just confirmed this Not taking credit, but wanted to record it here
I noticed that running ``` pip install cbpro ``` seems to install an older version than installing ``` pip install git+git://github.com/danpaquin/coinbasepro-python.git ``` Specifically, the "AuthenticatedClient"'s "get_fees" method is present when...
Per question, wondering if it's still being maintained.
Hello, ``` $ pip list | grep cbpro cbpro (1.1.4) ``` Today, my websocket stopped working because of Error 104: `[Errno 104] Connection reset by peer - data: None` I...
**PROBLEM** 1. Currently this library does not support error handling for HTTP requests. This causes library clients to implement error handling on their end. A big problem with this is...
The last version available to download from pip3 seems not to be the same as the one available here. The version I have throws _AttributeError: "AuthenticatedClient" object has no attribute...
Currently, when you create an order with `place_stop_order()` you create a stop _limit_ order where the limit price is equal to the stop price. This PR adds an optional argument...
I'm looking to query the high, low and closing price for each hour. So far, the only way I see to accomplish this is by calling `.get_product_historic_rates()` every hour. However,...