【发布时间】:2015-12-11 21:55:05
【问题描述】:
我正在构建一个需要历史股票报价的小型概念验证应用。我的应用程序中的 UI 允许用户选择日期范围,我一直在使用 YQL 控制台生成 REST 调用来请求历史报价数据。 YQL 调用如下:
select * from yahoo.finance.historicaldata where symbol = "JNJ" and startDate = "2015-01-01" and endDate = "2015-12-11"
工作正常,但如果我像这样回到过去:
select * from yahoo.finance.historicaldata where symbol = "JNJ" and startDate = "2013-01-01" and endDate = "2015-12-11"
我没有得到任何引号,并在 XML 中找到如下所示的警告:
<warning>Too many instructions executed: 50223882</warning>
在达到限制之前我们可以查询多长时间?
【问题讨论】: