Reputation: 73
Does Zipline have the same fundamental data access as quantopian, if not how do I access it?
from quantopian.pipeline.data import Fundamentals
Upvotes: 1
Views: 359
Reputation: 2605
Zipline comes with builtin Equity data, but does not come with builtin Fundamentals. You can access equity using:
from zipline.pipeline.data import EquityPricing
The default quantopian-quandl data bundle, which zipline comes with and is not dependent on Quantopian being live, is a repackaged Quandl WIKI dataset.
Documentation here. (Note: zipline.io is down, so documentation link is a mirror.)
Upvotes: 0