Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
Colorful Price for Amibroker (AFL)
Colorful Price of Bars. It makes the bars more colorful.
Similar Indicators / Formulas
Indicator / Formula
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | _SECTION_BEGIN ( "Price" ); upbar = C > Ref ( C , -1 ); downbar = C < Ref ( C , -1 ); /* Colourized price bars drawn here */ Graph0 = Close ; Graph0Style = 128; barcolor = IIf ( downbar, 4, IIf ( upbar, 5, 1 ) ); Graph0BarColor = ValueWhen ( barcolor != 0, barcolor ); SetBarFillColor ( IIf ( Close > Open , colorWhite , colorDarkRed ) ); 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" , colorBlack ), styleNoTitle | ParamStyle ( "Style" ) | GetPriceStyle () ); _SECTION_END (); |
0 comments
Leave Comment
Please login here to leave a comment.
Back