0

I'm using Yahoo Finance Api to extract stockrates. To find the symbols using Yahoo Finance - but oddly a few of the symbols that Yahoo presents, doesn't return any data when using the API?!

Here are a few examples (Try looking them up with the above url):

  • DKIEUIXBNP.CO
  • DKIENGKEUO.CO
  • DKIGLOIXVAKK.CO

But when trying to extract data. The symbol seems to be unknown.

API-txt-file-download

Using the YQL, it says "Unknown ticker symbol"

YQL Example

Why o' why?

Thanks in advance

Barsum
  • 128
  • 1
  • 2
  • 13

1 Answers1

1

I would not use the yahoo YQL, but rather their older web-service that returns a CSV. I have an open-source plugin on Grails framework called yahoofinance that gets stock data from yahoo finance. I tested your stock symbols and it does return a response but like I said since these particular stocks have very low trading data, the data returned is mostly 0.0 and N/A

Try using the yahoo web-services (using example symbol)

finance.yahoo.com/d/quotes.csv?s=DKIENGKEUO.CO&f=snl1d1t1cc1p2pohgvmlt7a2ba

-> f=snl1d1t1cc1p2pohgvmlt7a2ba, represents the statistics you are requesting.

ibaralf
  • 12,218
  • 5
  • 47
  • 69