aboutsummaryrefslogtreecommitdiffstats
path: root/packages/pipeline/src/data_sources/ohlcv_external/crypto_compare.ts
Commit message (Collapse)AuthorAgeFilesLines
* Update dependency packagesHsuan Lee2019-01-191-110/+0
|
* change to camelCasexianny2018-12-111-2/+2
|
* lint: remove unused variablexianny2018-12-081-1/+0
|
* refresh rate limit every second instead of every minutexianny2018-12-081-3/+3
|
* cleanup: stray import, rename variablexianny2018-12-081-4/+3
|
* query CC with larger batch sizexianny2018-12-081-3/+4
|
* rename variable and define default in only 1 locationxianny2018-12-081-2/+3
|
* upgrade throttling codexianny2018-12-081-13/+11
|
* Fix/pipeline/ohlcv (#1393)Xianny2018-12-061-9/+27
| | | The OHLCV script in data pipeline quits early when we get no data from Crypto Compare. Sometimes Crypto Compare gives us a valid empty response (e.g. when we query for way back in time) and we need to just continue. This adds better filtering for the types of Crypto Compare responses to detect when we should continue and when we should really quit.
* pull OHLCV records from Crypto Compare (#1349)Xianny2018-12-051-0/+94
* [WIP] pull OHLCV records from Crypto Compare * lint * refactor to pull logic out of script and into modules * add entity test for ohlcv_external entity * implement rate limit and chronological backfill for ohlcv * add unit tests; cleanup variable names * Fetch OHLCV pairs params from events table * better method names * fix outdated test * lint * Clean up after review * oops * fix failing test * better filtering of most recent records * fix bug when generating pairs * fix default earliest backfill date * fix bug with retrieving backfill time * prettier