PureBytes Links
Trading Reference Links
|
Bob,
I ran this and this worked
FLT = GetExtraData("SharesFloat"); // Need Quotes-Plus Data for this
MKTCAP = C * FLT;
Filter = Close > 1 AND Volume > 100000;
AddColumn(Close,"Close");
AddColumn(Volume,"Volume");
AddColumn(MKTCAP,"MarketCap",8.0);
But this formula does not
FLT = GetExtraData("SharesOutstanding"); // Need Quotes-Plus Data for
this
MKTCAP = C * FLT;
Filter = Close > 1 AND Volume > 100000;
AddColumn(Close,"Close");
AddColumn(Volume,"Volume");
AddColumn(MKTCAP,"MarketCap",8.0);
Error message is GetExtraData failed.
How do I use the "Shares Outstanding" to work in the formula
Thanks,
Brian
--- In amibroker@xxxxxxxxxxxxxxx, "Bob Jagow" <bjagow@xxxx> wrote:
> Brian,
>
> "Get extra Data" [for a use with a scan] only works with QPlus [and
> TC2000?] AFAIK.
> Lacking QPlus, you might consider scanning at one of the free sites
and
> importing the symbols into a watch list.
>
> Bob
>
> -----Original Message-----
> From: Brian Elijah [mailto:cadvantag@x...]
> Sent: Friday, September 26, 2003 9:28 AM
> To: amibroker@xxxxxxxxxxxxxxx
> Subject: Re: [amibroker] Re: Market Capitalization
>
>
> Bob,
>
> Can this be done with yahoo data? or do I need Quotes Plus?
>
> Brian
> ----- Original Message -----
> From: "Bob Jagow" <bjagow@xxxx>
> To: <amibroker@xxxxxxxxxxxxxxx>
> Sent: Friday, September 26, 2003 11:15 AM
> Subject: RE: [amibroker] Re: Market Capitalization
>
>
> > Market Cap = C * Shares Outstanding.
> >
> > Bob
> > -----Original Message-----
> > From: Fred [mailto:fctonetti@x...]
> > Sent: Thursday, September 25, 2003 9:47 PM
> > To: amibroker@xxxxxxxxxxxxxxx
> > Subject: [amibroker] Re: Market Capitalization
> >
> >
> > Gary,
> >
> > Wouldn't Market Cap = C * Float ?
> >
> > --- In amibroker@xxxxxxxxxxxxxxx, "Gary A. Serkhoshian"
> > <serkhoshian777@xxxx> wrote:
> > > Brian,
> > >
> > > If you interpret market cap simply as C * Volume, which is how I
> > interpret it, then
> > >
> > > MKTCAP = C * V;
> > >
> > > AddColumn(MKTCAP,"MarketCap",8.0);
> > >
> > >
> > > Hope this helps,
> > > Gary
> > >
> > > Brian <cadvantag@xxxx> wrote:
> > > Is it possible to scan/ explore using Market Capitalization?
> > >
> > > Can Market Capitalization be gathered with addcolumn feature?
> > >
> > > I tried but was unable to get it to work.
> > >
> > > If its not available would/ could it be something we can add in
the
> > > future.
> > >
> > >
> > > Thanks,
> > > Brian
> > >
> > >
> > > Yahoo! Groups SponsorADVERTISEMENT
> > >
> > > Send BUG REPORTS to bugs@xxxx
> > > Send SUGGESTIONS to suggest@xxxx
> > > -----------------------------------------
> > > Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx
> > > (Web page: http://groups.yahoo.com/group/amiquote/messages/)
> > > --------------------------------------------
> > > Check group FAQ at:
> > http://groups.yahoo.com/group/amibroker/files/groupfaq.html
> > >
> > > Your use of Yahoo! Groups is subject to the Yahoo! Terms of
> > Service.
> > >
> > >
> > > ---------------------------------
> > > Do you Yahoo!?
> > > The New Yahoo! Shopping - with improved product search
> >
> >
> >
> > Send BUG REPORTS to bugs@xxxx
> > Send SUGGESTIONS to suggest@xxxx
> > -----------------------------------------
> > Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx
> > (Web page: http://groups.yahoo.com/group/amiquote/messages/)
> > --------------------------------------------
> > Check group FAQ at:
> > http://groups.yahoo.com/group/amibroker/files/groupfaq.html
> >
> > Your use of Yahoo! Groups is subject to
http://docs.yahoo.com/info/terms/
> >
> >
> >
> > Send BUG REPORTS to bugs@xxxx
> > Send SUGGESTIONS to suggest@xxxx
> > -----------------------------------------
> > Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx
> > (Web page: http://groups.yahoo.com/group/amiquote/messages/)
> > --------------------------------------------
> > Check group FAQ at:
> http://groups.yahoo.com/group/amibroker/files/groupfaq.html
> >
> > Your use of Yahoo! Groups is subject to
http://docs.yahoo.com/info/terms/
> >
> >
> >
> >
>
>
>
> Send BUG REPORTS to bugs@xxxx
> Send SUGGESTIONS to suggest@xxxx
> -----------------------------------------
> Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx
> (Web page: http://groups.yahoo.com/group/amiquote/messages/)
> --------------------------------------------
> Check group FAQ at:
> http://groups.yahoo.com/group/amibroker/files/groupfaq.html
>
> Your use of Yahoo! Groups is subject to
http://docs.yahoo.com/info/terms/
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Buy Ink Cartridges or Refill Kits for your HP, Epson, Canon or Lexmark
Printer at MyInks.com. Free s/h on orders $50 or more to the US & Canada.
http://www.c1tracking.com/l.asp?cid=5511
http://us.click.yahoo.com/mOAaAA/3exGAA/qnsNAA/GHeqlB/TM
---------------------------------------------------------------------~->
Send BUG REPORTS to bugs@xxxxxxxxxxxxx
Send SUGGESTIONS to suggest@xxxxxxxxxxxxx
-----------------------------------------
Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx
(Web page: http://groups.yahoo.com/group/amiquote/messages/)
--------------------------------------------
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
|