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 ....
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
Advanced Adaptive Indicators
Advanced Pattern Exploration
Neural Networks
And Much More ....
PE plot for Amibroker (AFL)
Copy & Paste Friendly
Back
1 2 3 4 5 6 7 8 9 10 11 | //----------------------------------------- SetChartOptions (0, chartShowArrows | chartShowDates ); PE = IIf (EPS != 0, ( Close / GetFnData ( "EPS" )),0); //Dividend and Yield DIV = GetFnData ( "DividendPerShare" ); DIVYield = ( GetFnData ( "DividendPerShare" ) / C ) * 100; Plot (PE, "Close" , ParamColor ( "Color" , colorBlack ) ); |