Zipline Fundamental data

337 views Asked by At

Does Zipline have the same fundamental data access as quantopian, if not how do I access it?

from quantopian.pipeline.data import Fundamentals
1

There are 1 answers

0
BLimitless On

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.)