I'm working with the stock market end of day feed. I pass multiple ticker symbols in one request. Around 400 or so I get an error that the string is too long. But anything less than that runs fine, but returns less symbols than I requested. I get back about 30-36% of the symbols I request. The kicker is that it doesn't matter how many I send... if I send 100, I get 36; if I send 10, I get 3.
Does anyone know the formatting of data returned/ implemented by that server, or a way I can find out? I'm fine to work with it in whatever form it takes, as long as I reliably understand it. Here's a sample string with one symbol "A":
http://query.yahooapis.com/v1/public/yql?q=select%20*%20from%20yahoo.finance.quotes%20where%20symbol%20in%20(%22A%22%2C%22A%22)&diagnostics=true&env=store%3A%2F%2Fdatatables.org%2Falltableswithkeys
Any other help in understanding the implementations of yql tables/ data sources would be great.
Edit:
I should mention that the lower than expected count is after parsing the xml returned, filtering out elements that have null values for key child elements such as "LastTradeDate" and "symbol."