Why am I unable to obtain current data in pipeline? Can I buy some subscription from Quantopian or FactSet to have access to current data?
from quantopian.pipeline import Pipeline
from quantopian.pipeline.data import EquityPricing, factset
from quantopian.pipeline.domain import PL_EQUITIES
from quantopian.research import run_pipeline
pipe = Pipeline(
columns={
'price': EquityPricing.close.latest,
'volume': EquityPricing.volume.latest,
'mcap': factset.Fundamentals.mkt_val.latest,
'pe_cf': factset.Fundamentals.pe_cf.latest,
'div_cf_af': factset.Fundamentals.div_cf_af.latest,
},
domain=PL_EQUITIES,
)
result = run_pipeline(pipe, '2019-04-09', '2019-04-09')
result.head()
result:
HoldoutError: Pipeline attempted to access data that is held out of research and backtesting.
Attempted use of quantopian.pipeline.data.EquityPricing is not allowed because:
- Data is available up to 2019-04-08, but was requested up to 2019-04-09.
For more information on holdouts for EquityPricing see:
https://www.quantopian.com/docs/data-reference/daily_pricingAttempted use of quantopian.pipeline.data.factset.Fundamentals is not allowed because:
- Data is available up to 2019-04-08, but was requested up to 2019-04-09.
For more information on holdouts for Fundamentals see:
https://www.quantopian.com/docs/data-reference/factset_fundamentals