I am using YQL to retrieve Financial Option data. Something like:
select * from yahoo.finance.options where symbol="AAPL" and expiration="2011-07"
However, the above query returns an optionsChain of data.
Is there a way to retrieve just the record for a specific option symbol, e.g. symbol=AAPL110716C00155000?
Thanks for your time.
You can apply a “local filter”, for your desired symbol, on the result set brought back from
yahoo.finance.optionsin addition to the “remote filters” (symbolandexpiration).For more info on filtering query results see the Filtering Query Results (WHERE) page in the YQL documentation.