Simple REST api for Okex exchange
Install by typing:
go get -u github.com/donfrigo/go-okex
Currently supported api calls:
- Get User Info : returns user info (funds)
- Trade: place a trade
- Cancel order: cancel a standing order
- Get Order Info: returns information on an order based on the order Id
- Get Order History: returns information on orders from the last two days for a given coin
User data is stored in .json format in the Config.json file. Modify and rename the config-example.json file in order to use the library.
Implementation based on the official Okex api documentation.
Using the GoRequest http client to send calls and some functions have been copied from GoCryptoTrader. Thank you!
Have fun :)