My google sheet returns Na when I write
=GOOGLEFINANCE("EOSEUR")
# or
=GOOGLEFINANCE("EOSGBP")
However, when I introduce
=GOOGLEFINANCE("BTCEUR")
# or
=GOOGLEFINANCE("EOS")
I got the right output.
Where can I find a list of symbols for all blockchains
try alternative:
=INDEX(TO_TEXT(IMPORTXML("https://finance.yahoo.com/quote/EOS-EUR/";
"//div[@data-reactid='32']")); 2; 1)
=INDEX(TO_TEXT(IMPORTXML("https://finance.yahoo.com/quote/EOS-GBP/";
"//div[@data-reactid='32']")); 2; 1)