使用stooq的熊猫数据阅读器发生了什么?

时间:2018-11-29 19:55:37

标签: python-2.7 pandas-datareader

我建立了一组脚本,这些脚本使用pandas-datareader获取股票并进行技术分析。已经运行了6-8个月,没有任何问题。

这周突然,datareader函数返回空帧,例如:-

    import pandas_datareader as web
    BAC = web.DataReader("AAPL.US", "stooq")
    print BAC

格式已更改-我现在需要用不同的措词吗?

非常感谢

1 个答案:

答案 0 :(得分:0)

0.7.0中引入了一个错误,该错误会自动将.US附加到每个行情收录器中。可能会在0.8.0中恢复该状态(请参阅此拉取请求),但现在使用:

BAC = web.DataReader("AAPL", "stooq")

作为解决方法。