Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
加载个股没问题,但我在加载股票指数方面苦苦挣扎了一段时间,所以我想我应该分享一下。
如果您想使用 zipline 加载索引,只需将其添加到 stock 参数,如下所示:
data = load_from_yahoo(stocks=['AAPL', '^gspc', '^ixic'], indexes={}, start=datetime(2014, 1, 1), end=datetime(2015,4,2))
这将加载苹果的股票价格、纳斯达克综合指数和标准普尔 500 指数。