SirBricksALot
SirBricksALot
Only way on KC that I know of would be to code your own OCO (one cancels other) which would require some routine ticker polling of the server to check...
Maybe try something like this . . ``` from kucoin.client import Trade trade = Trade(api_key, api_secret, api_passphrase, is_sandbox=False, url='', is_v1api=False) def close(symbol, size): my_order = trade.create_market_order( symbol=symbol, side='sell', size=size )...
Same issue here for a long time but glad I found your post. Was able to add remarks for Trade account at least. Hope they fix this for margin someday...
One other (noob Py question) - I'm trying to add functions to the Trade.py file but getting the following error when calling AttributeError: 'Trade' object has no attribute Not sure...
SOLVED (partially) - The second part of my question re: adding functions to trade.py solved by grep'ing, locating and testing mods to the file located in path ~/.local/lib/python3.6/site-packages/kucoin/trade/trade.py The MISTAKE...
So it looks like this sdk is pretty much unsupported? Too bad because Kucoin is referred to as the 4th largest exchange. Would be great to have real support for...