Fundamental data

mjorg

New Member
#1
Hello,
Is there a data service that provide historical fundamental data for amibroker?
If the service does provide info for amibroker how can it be accessed? Amibroker Fundamental does not have the below info to query.

Looking for past info on the following

Dividend rates
Past 5 yr growth
Past PE
Past ROE
Beta
Ect


Thnx
Marty
 

mastermind007

Well-Known Member
#2
Hello,
Is there a data service that provide historical fundamental data for amibroker?
If the service does provide info for amibroker how can it be accessed? Amibroker Fundamental does not have the below info to query.

Looking for past info on the following

Dividend rates
Past 5 yr growth
Past PE
Past ROE
Beta
Ect

Thnx
Marty
Which markets? If you are trading in American stocks, such data is made available by a company named Global Financial and Vignite. No idea about cost or quality .

Data for Indian companies is available from Capital markets but it is extremely hard work to get data into format that is uploadable into amibroker.
 

trash

Well-Known Member
#3
Hello,
Is there a data service that provide historical fundamental data for amibroker?
If the service does provide info for amibroker how can it be accessed? Amibroker Fundamental does not have the below info to query.

Looking for past info on the following

Dividend rates
Past 5 yr growth
Past PE
Past ROE
Beta
Ect


Thnx
Marty
If your data service vendor has proper table format then it is very easy to store the data within AmiBroker for further processing. Don't listen to people telling you otherwise. They don't have a clue.

An example source for US stocks is this one http://www.stockpup.com which provide data in CSV format.

Now, since AmiBroker has inbuilt functions InternetOpenURL(), InternetReadString(), InternetClose() and native matrix functionality it is very simple to iterate through the data and to store it to matrix once and save matrix to static/persistent variable.

Then you compare the matrix's datetime column with the array elements of the symbol array in order to assign the fundamental data column(s) to array variable. Also you can easily scroll through the matrix columns via Param() slider.

All very easy.. with short code (50 to 100 lines).

That is just one example.. there are other ways... as always.
Other ways: using ODBC plugin, Osaka plugin, ...

Last but not least here is result example using upper mentioned data source. That one is just for backing up said things.

 

Similar threads