Hi there,
I had a look on the forums but could not find an answer that could help me out (I am still getting up to speed with Python + Quantopian API).
I am trying to create a boolean filter for the pipeline, by IPO date:
#filter by IPO date
ipo_date = Fundamentals.ipo_date.latest > datetime.strptime('2015-01-01', '%Y-%m-%d')
Clearly the issue is with the "Fundamentals.ipo_date.latest", but I am not sure how to convert it into a format that can be compared.
Any help on the issue is greatly appreciated!