Re: newbie q-n about FinancialData
- To: mathgroup at smc.vnet.net
- Subject: [mg105224] Re: newbie q-n about FinancialData
- From: dh <dh at metrohm.com>
- Date: Wed, 25 Nov 2009 02:30:22 -0500 (EST)
- References: <hegeut$1fd$1@smc.vnet.net>
xamdam wrote:
> Hi,
> I would appreciate some pointer on how to use FinancialData API to
> retrieve fundamentals (e.g. PERatio ) on a list of tickers (all US)
> and export it to a file. One hour of googling did not help!
> Thanks a lot,
> max.
>
Hi,
here is an example how to retrive the data:
FinancialData[#, "PERatio"] & /@ {"GE", "AAPL"}
note that many data are missing.
To write it to a file you can e.g. use Export.
Daniel