While replicating the example on https://www.quantopian.com/docs/data-reference/daily_pricing with non US Equities and recent dates I received an error message saying that the data was only until 2018-11-11. Is there a mistake that I am making? Below is the code that I got the error message with. I tried the same code with different country codes and received the same message except for US_EQUITIES
from quantopian.pipeline import Pipeline
from quantopian.pipeline.data import EquityPricing
from quantopian.pipeline.domain import DE_EQUITIES
from quantopian.research import run_pipeline
# Get the latest daily close price for all equities
yesterday_close = EquityPricing.close.latest
# Get the latest daily trading volume for all equities.
yesterday_volume = EquityPricing.volume.latest
# Add our data columns to our pipeline and specify the domain to be DE_EQUITIES
pipe = Pipeline(
columns = {
'close': yesterday_close,
'volume': yesterday_volume
},
domain = DE_EQUITIES
)
#Run the pipeline over a one year period and print the output
df = run_pipeline(pipe, '2018-10-08', '2019-01-01')