Hi All, My question is, why does the following piece of code work in the desktop, but not as a Cloud APIFunction?
wlfrmfx[] := Module[{},
currencies = FinancialData["Currencies"];
(*currencies={"USD","GBP","JPY","CNY","INR","DKK","CAD","SEK",
"NOK","HKD","SGD","TWD","BRL","RUB","XAU","XAG","TZS","UGX","ETB",
"RWF"};*)
fxlist = FinancialData["EUR/" <> #] & /@ currencies;
Partition[Riffle[currencies, fxlist], 2] // TableForm]
Thanks in advance for any help!