If you want to see the value of your KuCoin exchange coins in Google sheets, like this:
then you just need a little code.
Step 1: Enter code editing mode in Google sheets
Step2: Enter the code
Here it is for copy and pasting:
function Get_KuCoinPrice(market)
{
// example HST-BTC
var url = "https://api.kucoin.com/v1/open/tick?symbol="+market;
var response = UrlFetchApp.fetch(url);
var text = response.getContentText();
var myjson = JSON.parse(text);
var price = myjson.data.lastDealPrice;
return price;
}
Step 3: Call the code in your sheet
Step 4: Enjoy!
Some example Markets are:
- DBC-BTC (for Deep Brain Chain)
- KCS-BTC (for KuCoins themselves)
Thanks so much! I had been looking for that for a while! How would you get the Open Buy/Sell Orders in Google Sheets? Thanks in advance!