From c455fd856d971c0c5024c0f7b9e045f86094a902 Mon Sep 17 00:00:00 2001 From: n1rna Date: Wed, 16 Oct 2019 10:57:30 +0330 Subject: [PATCH] Remove `endDate` argument from crypto top of book endpoint --- tiingo/api.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/tiingo/api.py b/tiingo/api.py index 35cde06..897326f 100644 --- a/tiingo/api.py +++ b/tiingo/api.py @@ -334,16 +334,13 @@ class TiingoClient(RestClient): # Crypto # tiingo/crypto - def get_crypto_top_of_book(self, tickers=[], - endDate=None, exchanges=[], + def get_crypto_top_of_book(self, tickers=[], exchanges=[], includeRawExchangeData=False, convertCurrency=None): url = 'https://api.tiingo.com/tiingo/crypto/top' params = { 'tickers': ','.join(tickers) } - if endDate: - params['endDate'] = endDate if len(exchanges): params['exchanges'] = ','.join(exchanges) if includeRawExchangeData is True: