Hi,

I want to extract the first value of an array using Binance API and I'm interested on extract just the first value of it, which reppresent the price of BTC 1 h ago. Since Binance API doesn't provide any 1h price change, I found the only article online which is really interesting cause this particular API allow me to get the 60 candles prices. Knowing the actual price, I just need now to extract the first value wich now at 2.11PM is
[[1615600800000,"47224.48000000"
I think that "1615600800000" it s the timestamp, while I need to grab 477224,48 from it. I've been googling lots of forums about arrays but all the examples are referring to a list of numbers. In my case, how should I remove that first timestamp to grab just the 1h ago price? Thanks ,
Mattia