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 ....
percentbands for Amibroker (AFL)
Copy & Paste Friendly
Back
1 2 3 4 5 6 7 8 9 10 | SECTION_BEGIN( "Percent Bands" ); P = ParamField ( "Price field" ,-1); Periods = Param ( "Periods" , 15, 2, 300, 1 ); Width = Param ( "Width%" , 2, 0, 10, 0.05 ); Color = ParamColor ( "Color" , colorCycle ); Style = ParamStyle ( "Style" ); CenterLine = MA ( P, Periods ); Plot ( (1 + Width * 0.01) * CenterLine, "%EnvTop" + _PARAM_VALUES (), Color, Style ); Plot ( (1 - Width * 0.01) * CenterLine, "%EnvBot" + _PARAM_VALUES (), Color, Style ); _SECTION_END (); |