What's the exchange suffix for German and Australian stocks for GoogleFinance API? For London stocks, it's .L (e.g. VOD.L). Just wonder what's the suffix for Germany and Aussie?
I tried something like .DE for German but it didn't work..(that's the exchange suffix for Yahoofinance anyway)
btw, below is my code to call GoogleFinance API with R
ticker <- "VOD.L"
a <- getSymbols(ticker, src="google", from = as.Date("2010-01-01"), to = as.Date("2017-05-16"))
Here in Australia, our main exchange is the Australian Securities Exchange (ASX).
Personally, when I query Google Finance manually (i.e. through the web interface), I write my queries as
ASX:WOW
, like so. Note that some vendors treat this differently. E.g. Yahoo Finance prefers theWOW.AX
convention (I believe Bloomberg does also, from memory).