I was able to search for this command which works
$(eval try{a=$(urlfetch json https://api.binance.com/api/v1/ticker/price?symbol=BTCUSDT);Binance BTC $ ${parseFloat(a.price)};}catch(e){Error!;})
But when I tried with the command below, I get a NaN
$(eval try{a=$(urlfetch json https://api.upbit.com/v1/candles/minutes/1?market=KRW-BTC&count=1);Upbit BTC ${parseFloat(a.trade_price)};}catch(e){Error!;})
I'm assuming that the second command is giving me a NaN because of the [ ] brackets.
After some hours of trying I've come to the point I must request for some help how to resolve this.
