Quantopian's community platform is shutting down. Please read this post for more information and download your code.
Back to Community
How to get a full list of fundamentals' data field

Hi,

I would like to get a full list of fundamentals' data field or methods. I have tried following approach but return an error:" first argument is not callable". May I know if there is a way to get a full list programmatically rather than writing everything down through documents? I appreciate your help and suggestions very much.

from quantopian.pipeline.data.morningstar import Fundamentals  
dir(Fundamentals)  
1 response

I guess I have found a solution.

from quantopian.pipeline.data.morningstar import Fundamentals

funda = Fundamentals()  
dir(funda)