Stock Portfolio Organizer

The ultimate porfolio management solution.

Shares, Margin, CFD's, Futures and Forex
EOD and Realtime
Dividends and Trust Distributions
And Much More ....
For Portfolio Manager Click Here

WiseTrader Toolbox

#1 Selling Amibroker Plugin featuring:

Advanced Adaptive Indicators
Advanced Pattern Exploration
Neural Networks
And Much More ....
Find Out More Here

Price Chart - Fundamental for Amibroker (AFL)
kaiji
about 14 years ago
Amibroker (AFL)

Rating:
5 / 5 (Votes 1)
Tags:
amibroker, fundamental

Price charts with PE, EPS, EPS Yield Dividend and Dividend Yield.

By MTR Investors Group – MTRIG.com

Similar Indicators / Formulas

Fundamental Exploration
Submitted by chaser2009 over 12 years ago
Fundamental Data SCAN
Submitted by mahsud over 13 years ago
Pentuple Exponential Moving Average
Submitted by extremist about 11 years ago
Kavach Of Karna v2
Submitted by hbkwarez almost 10 years ago
Williams Alligator System
Submitted by durgesh1712 over 12 years ago

Indicator / Formula

Copy & Paste Friendly
//-----------------------------------------
// 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