shrimpy-python
shrimpy-python copied to clipboard
Shrimpy’s Developer Trading API is a unified way to integrating trading functionality across every major exchange. Collect historical market data, access real-time websockets, execute advanced trading...
I am using this code: import shrimpy public_key = 'xxxxxx' secret_key = 'xxxxxxxx' client = shrimpy.ShrimpyApiClient(public_key, secret_key) users = client.list_users() print("\n users: " + str(users)) Getting this error: users: {'error':...
Hey folks, Just get started with shrimpy and I'm constantly getting "Invalid nonce" from all authentication end points when i use this client **_v0.0.15_**. I'm doing nothing fancy here but...
Hi, I am trying to follow the websocket price ticker Python example here: https://blog.shrimpy.io/blog/how-to-make-a-crypto-trading-bot-using-python But upon running client.subscribe(subscribe_data, handler), nothing was printed to the console. I noticed that client.connect() doesn't...
Currently Shrimpy doesn't support Python 3.9. I am running v3.9.6 and I am getting this error `AttributeError: type object '_asyncio.Task' has no attribute 'all_tasks'` That's because `asyncio.Task.all_tasks()` is fully moved...
ticker = client.get_ticker('bittrex') stuck on. File "/usr/lib/python3.9/ssl.py", line 1309, in do_handshake self._sslobj.do_handshake()
When client.disconnect() is called, an exception is raised: `Exception in thread Thread-1: Traceback (most recent call last): File "C:\Users\theco\AppData\Local\Programs\Python\Python39\lib\threading.py", line 950, in _bootstrap_inner self.run() File "C:\Users\theco\AppData\Local\Programs\Python\Python39\lib\threading.py", line 888, in run...
Hi, in the documentation, it said get token costs credits. Using WebSocket needs to pay some money? and sometimes streaming doesn't work and suddenly works again. Do you know the...
Traceback (most recent call last): File "C:////PycharmProjects/pythonProject/main.py", line 30, in client = shrimpy.ShrimpyApiClient(public_key, secret_key) AttributeError: module 'shrimpy' has no attribute 'ShrimpyApiClient' import shrimpy import plotly.graph_objects as go public_key = '...
Hi, still me. Just tried `get_predictions('binance', 'BNB', 'BTC')` and I don't get 7 objects as the documentation states but a messy 10 objects array with a few duplicates (16 twice,...
while using get_candles function noticed that i can't specify timezone which is GMT by default. Is there way to set a custom timezone?