[amibroker] Re: Fundamental Data Import Possible?

2009-12-27 Thread donald_brown_48367
I can answer my own question - found it; http://www.amibroker.com/guide/h_fundamental.html --- In amibroker@yahoogroups.com, "donald_brown_48367" wrote: > > Is there a way to import other data into Amibroker such as: > PE Price to Earnings ratio > EPS Earnings Per Share > DivYield Dividend Y

[amibroker] Re: Fundamental Data Import Possible?

2009-12-30 Thread pcavatore
as a side note you can also create synthetic tickers for importing HISTORICAL fundamentals in case you need them for backtesting purposes. The best solution I came up with the help of the support is to use something like "MSFT_fundamental" as fundamental ticker for Microsoft and reference it us

Re: [amibroker] Re: Fundamental Data Import Possible?

2010-01-01 Thread Bill S
The easiest way would be to calculate these ratios yourself. For example : pe = Nz(Close/GetFnData("EPSEstCurrentYear")); On Wed, Dec 30, 2009 at 9:43 AM, pcavatore wrote: > > > as a side note you can also create synthetic tickers for importing > HISTORICAL fundamentals in case you need them f