tardis-dev / tardis-python

Python client for tardis.dev - historical tick-level cryptocurrency market data replay API.
https://tardis.dev
Mozilla Public License 2.0
113 stars 16 forks source link

urllib - HTTP Error 414 #6

Closed shahp98 closed 3 years ago

shahp98 commented 3 years ago

Hi. I'm trying to replay Deribit "trades" and "book" channel for 2019-03-30 for all active symbols on that day (filtered using Instruments Metadata API). Hence I have around 312 symbols for that day for which I'm trying to replay the above 2 channels.

Stack Trace: image python==3.8.3 tardis-client==1.2.12

The only change in the replay params is the list of symbols for both the channels under filters.

Is there a way I can replay data for all active symbols for a particular day for both these channels using some other approach or other clients/tardis-machine?

thaaddeus commented 3 years ago

Hi, one approach would be to provide empty array as symbols list ([]) then data for all active instruments for a given day would be returned, would that help?

shahp98 commented 3 years ago

Yes, this helps! Thank you so much!