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 ....
sultans for Amibroker (AFL)
Copy & Paste Friendly
Back
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | _SECTION_BEGIN ( "Keltner Bands" ); P = ParamField ( "Price field" ,-1); Periods = Param ( "Periods" , 15, 2, 300, 1 ); Width = Param ( "Width" , 2, 0, 10, 0.05 ); Width = 0.5 ; Color = ParamColor ( "Color" , colorCycle ); Style = ParamStyle ( "Style" ); CenterLine = MA ( P, Periods ); KTop = CenterLine + Width * ATR ( Periods ); KBot = CenterLine - Width * ATR ( Periods ); Plot ( KTop, "KBTop" + _PARAM_VALUES (), Color, Style ); Plot ( KBot, "KBBot" + _PARAM_VALUES (), Color, Style ); Plot ( MA ( P, 15 ), "" , colorBlack , styleLine , styleThick ); PlotOHLC (KTop,KTop,KBot,KBot, "" , colorLightBlue , styleCloud ) ; //PlotOHLC(ACDHigh,ACDHigh,ACDLow,ACDLow,"",colorLig htBlue,styleCloud ); _SECTION_END (); |