Quantopian's community platform is shutting down. Please read this post for more information and download your code.
Back to Community
Is there a way to import data from quandl that is not list ed in the datasets?

I'm trying to find a dataset for the Case Schiller PE Ratio, and I found this one https://www.quandl.com/data/MULTPL/SHILLER_PE_RATIO_MONTH-Shiller-PE-Ratio-by-Month but I'm unsure how to go about getting this data in? Is there a way to add this as a data set? or do I have to import the data manually

2 responses

Looks like you just use the fetch_csv function to load it

context.schillersandp = fetch_csv('https://www.quandl.com/api/v3/datasets/MULTPL/SHILLER_PE_RATIO_MONTH.csv?api_key=YOURAPIKEYHERE', date_column='Date',date_format='%m/%d/%y', timezone='UTC', symbol="CASE")  

@Karl, When you create an account on Quandl, you are provided with an API_KEY.