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 ....
For Portfolio Manager Click Here

WiseTrader Toolbox

#1 Selling Amibroker Plugin featuring:

Advanced Adaptive Indicators
Advanced Pattern Exploration
Neural Networks
And Much More ....
Find Out More Here

Percent Bands for Amibroker (AFL)

Rating:
5 / 5 (Votes 1)
Tags:
amibroker, bands

percent bands

Similar Indicators / Formulas

%B of Bollinger Bands With Adaptive Zones
Submitted by kaiji about 14 years ago
Trend Bands
Submitted by rogercraft almost 14 years ago
Bollinger - Keltner Bands
Submitted by kaiji about 14 years ago
Bollinger %B
Submitted by konidena almost 14 years ago
Bollinger Band Squeeze & Expansion
Submitted by razasia almost 14 years ago
Jurik's Spandex Band
Submitted by xavier over 12 years ago

Indicator / Formula

Copy & Paste Friendly
_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();

0 comments

Leave Comment

Please login here to leave a comment.

Back