-
Notifications
You must be signed in to change notification settings - Fork 31
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement Kucoin Exchange #92
Comments
Word of warning Kucoin currently only exports the spot history. it ignores trading bots and coin lending in the exports |
From what I've seen in the CSV exports and API documentation, we probably have to access the API with a key anyways to get the timestamp of order execution. If we're doing this, we might as well pull all the information from the API and not use the CSV at all. What do you think? |
yes i want to do this anyways for binance as well, because binance also ignores some actions in its exports (rewards from liquid swaps and even sometimes from staking) |
|
binance api issue #59 |
I propose to add Kucoin as new supported exchange.
The CSV export looks like this:
The Kucoin API seems to support historic prices: https://docs.kucoin.com/#get-trade-histories
And there is also an python SDK available: https://python-kucoin.readthedocs.io/en/latest/index.html
One problem that I currently see is that only the timestamp of order creation is available, not the timestamp of order execution. Therefore, we probably have to use the API: https://docs.kucoin.com/#list-fills
Edit: It may be possible to address this similarly as proposed for the Gate.io exchange #91 (comment)
The text was updated successfully, but these errors were encountered: