PureBytes Links
Trading Reference Links
|
mrmurty,
I found this some time ago. Not sure who Steve is so I don't know who
to credit.
/////////////////////////////////
FYI
Place the following line into your primary indicator whether it is
the Price pane or some other.
#include "C:\\program files\amibroker\afl\include\writeuponstock.afl";
Have the following in your include subdirectory as I have shown in
mine above. I have an include
subdirectory under \afl. I also have placed a file named
writeuponstock.afl into this subdirectory. This
information is fairly complete and it will show up in the
interpetation window.
This is nice when moving across a watch list of similar equities and
being able to see how they compare in a
fundamental way. You may have to click into price window (if this is
where you placed the line above) if you
are moving around in Amibroker to get the information show.
Steve
New File below: Mine was called writeuponstock.afl
_____________________
WriteIf(Buy==1 OR Buy == 0,GetExtraData("briefing"),"");//1
WriteIf(Buy==1 OR Buy == 0,"\n"+"QP2 Relative Strength ="+
WriteVal(GetExtraData("QRS")),"");//2
WriteIf(Buy==1 OR Buy == 0,"Shares Float = "+
WriteVal(GetExtraData("SharesFloat")),"");//3
WriteIf(Buy==1 OR Buy == 0,"Shares = "+
WriteVal(GetExtraData("Shares")),"");//4
WriteIf(Buy==1 OR Buy == 0,"PEG = "+
WriteVal(GetExtraData("PEG")),"");//5
WriteIf(Buy==1 OR Buy == 0,"Return on Equity = "+
WriteVal(GetExtraData("ROE"))+"%","");//6
WriteIf(Buy==1 OR Buy == 0,"1 Year EPS Growth = "+
WriteVal(GetExtraData("Yr1EPSGrowth"))+"%","");//7
WriteIf(Buy==1 OR Buy == 0,"5 Year EPS Growth = "+
WriteVal(GetExtraData("Yr5EPSGrowth"))+"%","");//8
WriteIf(Buy==1 OR Buy == 0,"1 Year Proj EPS Growth = "+
WriteVal(GetExtraData("Yr1ProjEPSGrowth"))+"%","");//9
WriteIf(Buy==1 OR Buy == 0,"3 to 5 Year Proj EPS Growth = "+
WriteVal(GetExtraData("Yr3to5ProjEPSGrowth"))+"%","");//10
WriteIf(Buy==1 OR Buy == 0,"Book Value per share = "+
WriteVal(GetExtraData("BookValuePerShare"))+"$","");//11
WriteIf(Buy==1 OR Buy == 0,"Annual Dividend = "+
WriteVal(GetExtraData("AnnDividend"))+"%","");//12
WriteIf(Buy==1 OR Buy == 0,"TTM Sales = "+
WriteVal(GetExtraData("TTMSales")),"");//13
WriteIf(Buy==1 OR Buy == 0,"TTM EPS = "+
WriteVal(GetExtraData("TTMEPS")),"");//14
WriteIf(Buy==1 OR Buy == 0,"Institutional Holdings = "+
WriteVal(GetExtraData("InstHolds"))+"%","");//15
WriteIf(Buy==1 OR Buy == 0,"Long Term Debt to Equity = "+
WriteVal(GetExtraData("LTDebtToEq")),"");//16
WriteIf(Buy==1 OR Buy == 0,"Cash Flow Per Share = "+
WriteVal(GetExtraData("CashFlowPerShare")),""); //17
WriteIf(Buy==1 OR Buy == 0,"Trailing 12 months EPS = "+
WriteVal(GetExtraData("TTMEps")),"");//18
WriteIf(Buy==1 OR Buy == 0,"LoW PE Range = "+
WriteVal(GetExtraData("LoPERange")),"");//19
WriteIf(Buy==1 OR Buy == 0,"High PE Range = "+
WriteVal(GetExtraData("HiPERange")),"");//20
WriteIf(Buy==1 OR Buy == 0,"Beta = "+
WriteVal(GetExtraData("BEta")),"");//21
//////////////
j
--- In amibroker@xxxxxxxxxxxxxxx, "mrmurty" <mrmurty@xxxx> wrote:
>
> Hi
>
> Any one can help me to
> " retrieve field values of fundamental ones in symbol"
>
> ex. BOOKVALUE in the Symbol->Information screen
>
>
> rgds
------------------------ Yahoo! Groups Sponsor --------------------~-->
In low income neighborhoods, 84% do not own computers.
At Network for Good, help bridge the Digital Divide!
http://us.click.yahoo.com/EpW3eD/3MnJAA/cosFAA/GHeqlB/TM
--------------------------------------------------------------------~->
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 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/
<*> 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/
|