1

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

from quantopian.pipeline.data import Fundamentals
BLimitless
  • 2,060
  • 5
  • 17
  • 32
J.J.
  • 75
  • 8

1 Answers1

0

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

BLimitless
  • 2,060
  • 5
  • 17
  • 32