|
Hello,
For example the formula that uses 1yr target estimate price
(not very reliable, btw :-( ):
color=#0000ff>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 __._,_.___ 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
SPONSORED LINKS
YAHOO! GROUPS LINKS
|
- [amibroker] Why am I not getting any Fundamental Data with... Don Lindberg
- Re: [amibroker] Why am I not getting any Fundamental ... Tomasz Janeczko
- Re: [amibroker] Why am I not getting any Fundamen... Don Lindberg
- Re: [amibroker] Why am I not getting any Fund... Tomasz Janeczko
- Re: [amibroker] Why am I not getting any ... Jason Hart
- Re: [amibroker] Why am I not getting... Tomasz Janeczko
- Re: [amibroker] Why am I not get... Jason Hart
- Re: [amibroker] Why am I not... Tomasz Janeczko
- Re: [amibroker] Why am I not... cstrader232
- Re: [amibroker] Why am I not... Tomasz Janeczko
- [amibroker] Watch list issue... MailYahoo
- Re: [amibroker] Why am I not get... Jason Hart
- [amibroker] Fundamental Data Randy Harmelink

