Don, Thanks for your help-- my problem was in the downloading of the fundamental data using AQ-- I didn't realize that there was a seperate Yahoo download site for the fundamental data vs the price data...
Tomasz- Your right... I'll start reading the "READ ME" info... ;) Dave --- In [email protected], "Don Lindberg" <[EMAIL PROTECTED]> wrote: > > Dave, > Try this: > EPS=GetFnData("EPS"); > Filter = C>5 AND C<50 AND MA(V,20) >75000; > AddColumn(C,"Close",1.2); > AddColumn(EPS,"EPS",1.2); > > This will give you what you want. > > Don > -------Original Message------- > > From: davelansing2004 > Date: 12/18/2006 10:08:01 AM > To: [email protected] > Subject: [amibroker] Re: Yahoo Fundamental Data > > Tomasz, > > Thank you. However, when I imput the following code into AA: > > Filter = C>5 AND C<50 AND MA(V,20) >75000; > AddColumn(C,"Close",1.2); > AddColumn(GetFnData("EPS"), "EPS", 1.2); > > the "EPS" column returns zero for all 400+ stocks in my watchlist. > Any suggestions? > > Thanks. > > Dave > > --- In [email protected], "Tomasz Janeczko" <groups@> > wrote: > > > > Hello, > > > > Look into "READ ME" file. This feature is present only in BETA, > > and BETA docs are in READ ME. Official guide (F1) covers official > versions > > only (4.80). > > > > Best regards, > > Tomasz Janeczko > > amibroker.com > > ----- Original Message ----- > > From: "davelansing2004" <d.ankrapp@> > > To: <[email protected]> > > Sent: Monday, December 18, 2006 4:11 PM > > Subject: [amibroker] Yahoo Fundamental Data > > > > > > > Hi, > > > > > > I've searched the AB web page for this question but couln't find > the > > > answer or a description of the AFL code "GetFnData"... the "F1" > link > > > is broken... so how do you access the Yahoo Financial Data using > > > the "GetFnData" code, and how do you call it up on a chart? I'd > like > > > to rank my filtered stocks based on PE and PEG ratios. > > > > > > Thanks. > > > > > > Dave > > > > > > > > > > > > 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 NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG: > > > http://www.amibroker.com/devlog/ > > > > > > For other support material please check also: > > > http://www.amibroker.com/support.html > > > > > > Yahoo! Groups Links > > > > > > > > > > > > > > > > > > > > > Filter = C>5 AND C<50 AND MA(V,20) >75000; > AddColumn(C,"Close",1.2); >
