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

Fundamental Exploration for Amibroker (AFL)

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

Holding a high dividend yield stock is good for long term investment in the bear market. You need to double check their dividend yield from their website if you want to invest.

Similar Indicators / Formulas

Price Chart - Fundamental
Submitted by kaiji about 14 years ago
Fundamental Data SCAN
Submitted by mahsud over 13 years ago
bad tick clean
Submitted by pious243 about 11 years ago
Williams Alligator System
Submitted by durgesh1712 over 12 years ago
*Level Breakout system*
Submitted by Tinych over 12 years ago

Indicator / Formula

Copy & Paste Friendly
PriceFrom = Param("Price From:", 15, 1, 200, 1); 
PriceTo   = Param("Price To:",   45, 5, 200, 1); 
Vol= Param("Vol*10000",100,5,100,5);

Cond=Close>PriceFrom AND Close<PriceTo AND MA(Volume,125)>200*Vol;

Filter = 1 AND  Cond; 
SetSortColumns( -8 ); 

AddColumn( Close, "Close",1.2, colorDefault, colorDefault ,70);
//AddColumn( ROC(C,1), "%Ch",1.2, IIf (ROC(C,1)>0, colorGreen,colorRed), colorDefault ,50);

EPS =  Nz(GetFnData("EPS"));
PE = IIf(EPS != 0, (Close / GetFnData("EPS")),0);
AddColumn( PE, "PE",1.0, colorDefault, colorDefault ,35);
AddColumn( EPS, "EPS",1.2, colorDefault, colorDefault ,40);
EPSYield= (GetFnData("EPS") / C)  * 100;
AddColumn( EPSYield, "Yield%",1.2, colorDefault, colorDefault ,45);
DIV = GetFnData("DividendPerShare");
AddColumn( DIV, "DIV",1.2, colorDefault, colorDefault ,40);
DIVYield = (GetFnData("DividendPerShare") / C)  * 100;
AddColumn( DIVYield, "Yield%",1.2, colorDefault, colorDefault ,45);
AddColumn( GetFnData("ExDividendDate"), "ExDividendDate", formatDateTime,colorDefault, colorDefault,100); 
AddColumn( GetFnData("DividendPayDate"), "DividendPayDate",formatDateTime,colorDefault, colorDefault,100);

0 comments

Leave Comment

Please login here to leave a comment.

Back