PureBytes Links
Trading Reference Links
|
can detailed fundamental data be imported from QP with this new feature? I use the getextradata function but I would like to be able to import more than what is offered.
Thanks
Tomasz Janeczko <amibroker@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx> wrote:
Hello,
For example the formula that uses 1yr target estimate price (not very reliable, btw :-( ):
OneYearTarget = GetFnData("OneYearTargetPrice");
UpsidePotential = 100 * ( ( OneYearTarget / Close ) - 1 );
// only include stocks that have price higher than $5
// and 1yr target higher than current close
Filter = Close > 5 AND OneYearTarget > Close AND Status("lastbarintest");
AddColumn( UpsidePotential, "1yr target / current price [%]", 1.2 );
Or another one a bit more complex, that uses EPS estimates and dividends:
CurEPS = GetFnData("EPS");
PE = Close / CurEPS;
NextYearEPS = GetFnData("EPSEstNextYear");
Dividend = GetFnData("DividendPerShare");
UpsidePotential = 100 * ( ( NextYearEPS / CurEPS ) - 1 );
// only include stocks with current PE < 50
// that pay dividends
// and have price higher than $5
// and have next year EPS est higher than current EPS
Filter = PE < 50 AND Dividend > 0 AND Close > 5 AND UpsidePotential > 0 AND Status("lastbarintest");
AddColumn( UpsidePotential, "NextYearEPS / CurEPS [%]", 1.2 );
Best regards,
Tomasz Janeczko
amibroker.com
----- Original Message -----
From: Don Lindberg
To: amibroker@xxxxxxxxxxxxxxx
Sent: Friday, June 09, 2006 12:12 AM
Subject: Re: [amibroker] Why am I not getting any Fundamental Data with new AM4.81 beta?
Tomasz,
Thanks a lot, Problem was I did not have Auto import checked. It works like a breeze now. Now if we can just get some formulas that use this info. (hint hint)
Thanks again,
Donald F Lindberg
51 Arthur Drive
Santa Rosa, Ca 95403
(707) 836-1848
-------Original Message-------
From: Tomasz Janeczko
Date: 06/08/06 14:33:49
To: amibroker@xxxxxxxxxxxxxxx
Subject: Re: [amibroker] Why am I not getting any Fundamental Data with new AM4.81 beta?
Hello,
1. Do you have "Automatic import" box checked ?
2. Did you open View->Symbol Information ?
3. Look into "downloads" subfolder for files with the extension .aqfn (Yahoo Fundamental Basic)
and .aqfe (Yahoo Fundamental Extra). You may open them with Notepad and look if there
are any data inside.
Best regards,
Tomasz Janeczko
amibroker.com
----- Original Message -----
From: "Don Lindberg" <dlindber@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx>
To: <amibroker@xxxxxxxxxxxxxxx>
Sent: Thursday, June 08, 2006 10:59 PM
Subject: [amibroker] Why am I not getting any Fundamental Data with new AM4.81 beta?
>I am trying to test the new 4.81.1 beta by downloading Fundamental
> data into a small database using the new AmiQuote 1.90. My database
> gets its main data from a metastock plugin, but I have local database
> enabled. I have tried to download from both Yahoo Fundament Basic and
> extended. While AmiQuote goes through the process, when it is complete
> and I look in the information window there is no fundamental data
> there. Am I doing something wrong? I am a registered user of both
> AmiBroker and AmiQuote. Help please.
>
> Don
>
>
>
>
>
>
>
> Please note that this group is for discussion between users only.
>
> To get support from AmiBroker please send an e-mail directly to
> SUPPORT {at} amibroker.com
>
> For other support material please check also:
> http://www.amibroker.com/support.html
>
>
> Yahoo! Groups Links
>
>
>
>
>
>
>
>
Please note that this group is for discussion between users only.
To get support from AmiBroker please send an e-mail directly to
SUPPORT {at} amibroker.com
For other support material please check also:
http://www.amibroker.com/support.html
Yahoo! Groups Links
__________________________________________________
Do You Yahoo!?
Tired of spam? Yahoo! Mail has the best spam protection around
http://mail.yahoo.com
|