I have been attempting to get a stock quote history from a specific symbol (BHP.AX) with a specific start and end date.
Here is my attempted query:
select * from yahoo.finance.quotes where symbol in ("BHP.AX") and startDate = "2014-01-01" and endDate = "2014-06-16"
I was testing it in the YQL console here: https://developer.yahoo.com/yql/console/
Am I missing something? Because the console does not seem to be spitting out the correct data.