'How to get historical orders from kucoin?

from kucoin.client import Client
api_key =<MY API KEY>
api_secret=<MY API SECRET>
api_passphrase =<MY PASSPHRASE>
client = Client(api_key, api_secret, api_passphrase)
client.get_historical_orders(symbol="LTC-ETH")

KucoinAPIException: KucoinAPIException 401000: The interface has been deprecated

I want to get Kucoin's historical orders using python-kucoin, but get_historical_orders() doesn't seem to work anymore. Does someone know the alternative interface?



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source