I am trying to get EPS information from the fundamentals and for some reason getting an error. I have other criteria extracting data successfully from the Fundamentals so not sure where I am getting the EPS wrong.
I am specifically trying to use basic_eps from https://www.quantopian.com/help/fundamentals#earnings-ratios
In my code (Notebook) this line is the one causing the problem:
basic_eps = Fundamentals.basic_eps.latest
This is the fragment of the error that contains the issue:
---> 12 basic_eps = Fundamentals.basic_eps.latest
13
AttributeError: type object 'Fundamentals' has no attribute 'basic_eps'
Am I using the wrong attribute for EPS?