Tomasz: Is it possible to "combine" fundamental data downloaded with AQ into the FastTrack database? How would this be done? It is not obvious at all, and I do not want to worry about screwing up my FastTrack database in trying.
Thanks for a few more details on this question. Ken -----Original Message----- From: [email protected] [mailto:[EMAIL PROTECTED] On Behalf Of Tomasz Janeczko Sent: Wednesday, February 14, 2007 9:06 AM To: [email protected] Subject: [amibroker] Re: Filter stocks by market cap Hello, And when you have new AmiBroker 4.90 you can use built-in fundamental data support http://www.amibroker.com/guide/h_fundamental.html To get number of shares outstanding you can use GetFnData("SharesOut") then multiply by closing price to get capitalization (as in Edward's example). Capitalization = GetFnData("SharesOut")*Close; Best regards, Tomasz Janeczko amibroker.com --- In [email protected], "Edward Pottasch" <[EMAIL PROTECTED]> wrote: > > if you have Quotes Plus you can use: GetExtraData( "Shares") and multiply with the last price. > > sometime like: > > Filter = GetExtraData( "Shares") * C > 500000000; AddColumn( > GetExtraData( "Shares") * C, "Market Cap", 1.2 ); > > and run explore > > > > ----- Original Message ----- > From: Tony Lei > To: [email protected] > Sent: Wednesday, February 14, 2007 12:34 AM > Subject: [amibroker] Filter stocks by market cap > > > Hi all, > > Does anyone know how to filter stocks by market capitalization in AB? > > market capitalization > 500,000,000 > > thanks > > qi > 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
