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 ....
Stock Codes and Names on Chart for Amibroker (AFL)
Rating:
3 / 5 (Votes 4)
Tags:
amibroker
Plot Stock Codes and Full Names on Chart
Screenshots
Indicator / Formula
Copy & Paste Friendly
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | SetChartOptions (0, chartShowArrows | chartShowDates ); _N (Title = StrFormat ( "{{NAME}} - {{INTERVAL}} {{DATE}} Open %g, Hi %g, Lo %g, Close %g (%.1f%%) {{VALUES}}" , O , H , L , C , SelectedValue ( ROC ( C , 1 ) ) )); Plot ( C , "Close" , ParamColor ( "Color" , colorDefault ), styleNoTitle | ParamStyle ( "Style" ) | GetPriceStyle () ); GfxSelectFont ( "Tahoma" , Status ( "pxheight" )/8 ); GfxSetTextAlign ( 6 ); // center alignment GfxSetTextColor ( ParamColor ( "Warna Tulisan Background" , colorLightGrey ) ); GfxSetBkMode (1); // transparent //GfxTextOut(Name(),Status("pxwidth")/2 , Status("pxheight")/12 ); GfxSetTextAlign ( 0 ); GfxSelectFont ( "Tahoma" , Status ( "pxheight" )/40 ); GfxTextOut ( FullName () + "(" + Name ()+ ")" , 10, Status ( "pxheight" ) - 50); GfxSelectFont ( "Tahoma" , Status ( "pxheight" )/28 ); GfxSetBkMode (1); // transparent GfxSetTextAlign ( 0 | 0 ); |
0 comments
Leave Comment
Please login here to leave a comment.
Back