Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
Price Chart - Fundamental for Amibroker (AFL)
Price charts with PE, EPS, EPS Yield Dividend and Dividend Yield.
By MTR Investors Group – MTRIG.com
Similar Indicators / Formulas
Indicator / Formula
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | //----------------------------------------- // MTR Investors Group ~ www.MTRIG.com // // Price charts with PE, EPS, EPS Yield // Dividend and Dividend Yield // // Use AMIQuote to download funamental data // from Yahoo! Finance. //----------------------------------------- SetChartOptions (0, chartShowArrows | chartShowDates ); //Get EPS set to ZERO if EPS is null EPS = Nz ( GetFnData ( "EPS" )); PE = IIf (EPS != 0, ( Close / GetFnData ( "EPS" )),0); //EPS Yield EPSYield= ( GetFnData ( "EPS" ) / C ) * 100; //Dividend and Yield DIV = GetFnData ( "DividendPerShare" ); DIVYield = ( GetFnData ( "DividendPerShare" ) / C ) * 100; /* --- If you want to show other indicator values on the chart...use the {{VALUES}} line Title = StrFormat("{{NAME}} - {{INTERVAL}} {{DATE}} {{VALUES}}") + */ Title = StrFormat ( "{{NAME}} - {{INTERVAL}} {{DATE}} " ) + StrFormat ( " C:%.2f" , C ) + StrFormat ( " (%.1f%%)" , SelectedValue ( ROC ( C ,1))) + StrFormat ( " ~ PE:%.2f" ,PE) + StrFormat ( " [ EPS:%.2f Yield:%.2f%% ]" ,EPS,EPSYield) + StrFormat ( " ~ [ DIV:%.2f Yield:%.2f%% ]" ,DIV,DIVYield); Plot ( C , "Close" , ParamColor ( "Color" , colorBlack ), styleNoTitle | ParamStyle ( "Style" ) | GetPriceStyle () ); |
0 comments
Leave Comment
Please login here to leave a comment.
Back