PureBytes Links
Trading Reference Links
|
Sorry, meant Mr, Valley
j
--- In amibroker@xxxxxxxxxxxxxxx, "John" <jea55129@xxxx> wrote:
> Mr. Velley,
>
> I don't receive this via email either, but whenever there is a
> attachment I want to see, I go here maybe a day later sometimes
less
> and search. It works pretty good.
>
> <http://www.purebytes.com/cgi-local/swish/swish-cgi.pl>
>
> Regards,
>
> John
> --- In amibroker@xxxxxxxxxxxxxxx, "Mr Valley" <valleymj@xxxx> wrote:
> > Can someone post the QP2FundData.afl as listed in Message 10043 -
> AmiBroker
> > YahooGroup
> >
> > Too bad Yahoo scrapped the attachments...
> >
> > Thanks
> >
> > Mr Valley
> >
> > -----Original Message-----
> > From: Mark H [mailto:amibroker@x...]
> > Sent: Friday, December 05, 2003 11:19 PM
> > To: amibroker@xxxxxxxxxxxxxxx
> > Subject: Re: [amibroker] Accessing qp2 data with activeX
> >
> >
> > I believe that GetExtraData() function provide the following
data
> from
> > QP2. Not sure that's sufficient for your purpose.
> > a.. "AnnDividend"
> > b.. "Shares"
> > c.. "SharesFloat"
> > d.. "IssueType" (string)
> > e.. "SharesOut"
> > f.. "SharesShort"
> > g.. "TTMsales"
> > h.. "Beta"
> > i.. "TTMEps"
> > j.. "HiPERange"
> > k.. "LoPERange"
> > l.. "PEG"
> > m.. "InstHolds"
> > n.. "LTDebtToEq"
> > o.. "CashFlowPerShare"
> > p.. "ROE"
> > q.. "TTMSales"
> > r.. "Yr1EPSGrowth"
> > s.. "Yr5EPSGrowth"
> > t.. "Yr1ProjEPSGrowth"
> > u.. "Yr2ProjEPSGrowth"
> > v.. "Yr3to5ProjEPSGrowth"
> > w.. "BookValuePerShare"
> > x.. "Briefing" (string)
> > y.. "QRS" (array)
> > z.. "HasOptions"
> > ----- Original Message -----
> > From: zouyuanjie
> > To: amibroker@xxxxxxxxxxxxxxx
> > Sent: Saturday, December 06, 2003 1:00 AM
> > Subject: [amibroker] Accessing qp2 data with activeX
> >
> >
> > Hi all,
> >
> > I found the following code pretty useful for accessing qp2
data
> (such as
> > QuotesPlus.RevEps) with AFL formula. However, I could not find
> additional
> > information for this functionality. I want to access additional
> data such as
> > estimated earnings in QP2, do anyone know where I can find such
> > documentation.
> >
> > Thanks in advance!
> >
> > <%
> >
> > try
> > {
> >
> > RevEps = new ActiveXObject("QuotesPlus.RevEps");
> > CInfo = new ActiveXObject("QuotesPlus.CompanyInfo");
> > RevEps.Symbol = AFL("ticker");
> > CInfo.Symbol = AFL("ticker");
> >
> > AFL("RevQtr0") = Number(RevEps.Revenues(0)); // THIS RULES
GIVE
> ERROR
> >
> >
> > // AND SO ... SHOULD CHECK IF DATA IS AVAILABLE OR
> >
> > // THROW AN ERROR ...
> > AFL("RevQtr1") = Number(RevEps.Revenues(-1));
> > AFL("RevQtr2") = Number(RevEps.Revenues(-2));
> > AFL("RevQtr3") = Number(RevEps.Revenues(-3));
> > AFL("RevQtr4") = Number(RevEps.Revenues(-4));
> > AFL("EarQtr0") = Number(RevEps.Earnings(0));
> > AFL("EarQtr1") = Number(RevEps.Earnings(-1));
> > AFL("EarQtr2") = Number(RevEps.Earnings(-2));
> > AFL("EarQtr3") = Number(RevEps.Earnings(-3));
> >
> > }
> > catch( e )
> > {
> > }
> >
> > %>
> > RevFac=1.05; // 10% increase in revenues
> > EarFac=1.05; // 10% increase in earnings
> > //RevCond=(RevQtr0>RevFac*RevQtr1) AND
(RevQtr1>RevFac*RevQtr2)
> > AND(RevQtr2>RevFac*RevQtr3);
> > //EarCond=(EarQtr0>EarFac*EarQtr1) AND
(EarQtr1>EarFac*EarQtr2)
> > AND(EarQtr2>EarFac*EarQtr3);
> >
> >
> >
> >
> >
> > 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.
> >
> >
> > Yahoo! Groups Sponsor
> > ADVERTISEMENT
> >
> >
> >
> >
> > 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.
------------------------ 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/
|