PureBytes Links
Trading Reference Links
|
Thanks Jim. Much more complicated than I expected though.
Do you know if there's any way to get te full company name? I didn't
see it as a parameter for GetExtraData or GetFnData.
Thanks again.
Dan
--- In amibroker@xxxxxxxxxxxxxxx, James Hutchison <phutch@xxx> wrote:
>
> At 09:52 AM 10/26/2007, you wrote:
>
> >Is there anything special I have to do to get fundamental data from
> >QuotesPlus? I've gotten it before but am not getting it anymore. I
> >don't even get full company names.
> >
> >Any help appreciated.
> >
> >Dan
>
> Dan
> I use this to get information into the Interpretation Window
> Some one on this board shared it with us
> Jim Hutchison
>
> Qp = 1;
>
> WriteIf(Qp ==1,GetExtraData("briefing"),"");//1
>
> WriteIf(Qp ==1,"\n"+"QP2 Relative Strength ="+
> WriteVal(GetExtraData("QRS")),"");//2
>
> WriteIf(Qp ==1,"Shares Float = "+
> WriteVal(GetExtraData("SharesFloat")),"");//3
>
> WriteIf(Qp ==1,"Shares = "+
> WriteVal(GetExtraData("Shares")),"");//4
>
> WriteIf(Qp ==1,"PEG = "+
> WriteVal(GetExtraData("PEG")),"");//5
>
> WriteIf(Qp ==1,"Return on Equity = "+
> WriteVal(GetExtraData("ROE"))+"%","");//6
>
> WriteIf(Qp ==1,"1 Year EPS Growth = "+
> WriteVal(GetExtraData("Yr1EPSGrowth"))+"%","");//7
>
> WriteIf(Qp ==1,"5 Year EPS Growth = "+
> WriteVal(GetExtraData("Yr5EPSGrowth"))+"%","");//8
>
> WriteIf(Qp ==1,"1 Year Proj EPS Growth = "+
> WriteVal(GetExtraData("Yr1ProjEPSGrowth"))+"%","");//9
>
> WriteIf(Qp ==1,"3 to 5 Year Proj EPS Growth = "+
> WriteVal(GetExtraData("Yr3to5ProjEPSGrowth"))+"%","");//10
>
> WriteIf(Qp ==1,"Book Value per share = "+
> WriteVal(GetExtraData("BookValuePerShare"))+"$","");//11
>
> WriteIf(Qp ==1,"Annual Dividend = "+
> WriteVal(GetExtraData("AnnDividend"))+"%","");//12
>
> WriteIf(Qp ==1,"TTM Sales = "+
> WriteVal(GetExtraData("TTMSales")),"");//13
>
> WriteIf(Qp ==1,"TTM EPS = "+
> WriteVal(GetExtraData("TTMEPS")),"");//14
>
> WriteIf(Qp ==1,"Institutional Holdings = "+
> WriteVal(GetExtraData("InstHolds"))+"%","");//15
>
> WriteIf(Qp ==1,"Long Term Debt to Equity = "+
> WriteVal(GetExtraData("LTDebtToEq")),"");//16
>
> WriteIf(Qp ==1,"Cash Flow Per Share = "+
> WriteVal(GetExtraData("CashFlowPerShare")),""); //17
>
> WriteIf(Qp ==1,"Trailing 12 months EPS = "+
> WriteVal(GetExtraData("TTMEps")),"");//18
>
> WriteIf(Qp ==1,"LoW PE Range = "+
> WriteVal(GetExtraData("LoPERange")),"");//19
>
> WriteIf(Qp ==1,"High PE Range = "+
> WriteVal(GetExtraData("HiPERange")),"");//20
>
> WriteIf(Qp ==1,"Beta = "+
> WriteVal(GetExtraData("BEta")),"");
>
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
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/amibroker/join
(Yahoo! ID required)
<*> To change settings via email:
mailto:amibroker-digest@xxxxxxxxxxxxxxx
mailto:amibroker-fullfeatured@xxxxxxxxxxxxxxx
<*> To unsubscribe from this group, send an email to:
amibroker-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|