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

Trend Bands for Amibroker (AFL)

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

When prices cross or bounce at mid band the gold lines show projected profit targets.

The gold lines are calculated using ATR of central band.

The central band is created using EMA34 (or EMA55) of High and Low.

The opposite side of central band can be used as initial stop loss when trade is started.

Similar Indicators / Formulas

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

Indicator / Formula

Copy & Paste Friendly
SetChartBkColor(colorGrey50);

_N(Title = StrFormat("{{NAME}} - {{INTERVAL}} {{DATE}} Open %g, Hi %g, Lo %g, Close %g (%.1f%%){{VALUES}}",
O, H, L, C, SelectedValue( ROC( C, 1 ) ) ));

SelPds = ParamList("Periods:", "34,55,89,144",0);

if( SelPds == "34" ) Pds= 34;
if( SelPds == "55" ) Pds= 55;

Middle = EMA(C,pds);

Himid = EMA(H,Pds);
Lomid = EMA(L,Pds);

UpperBand = Middle + 3.5 * ATR(Pds);
UpperBand1 = Middle + 1.75 * ATR(Pds);
LowerBand = Middle - 3.5 * ATR(Pds);
LowerBand1 = Middle - 1.75 * ATR(Pds);

Plot(C,"",colorBlack,styleCandle);

Plot(Middle, "Middle",colorCustom12,styleThick);
Plot(Himid, "",colorCustom12,styleDashed);
Plot(Lomid, "",colorCustom12,styleDashed);
Plot(UpperBand, "Upper",colorGold,styleThick);
Plot(UpperBand1, "",colorGold,styleDashed);
Plot(LowerBand, "Lower",colorGold,styleThick);
Plot(LowerBand1, "",colorGold,styleDashed);
PlotOHLC(Lomid,Himid,Lomid,Himid,"",ColorRGB(230,200,200),styleCloud | styleNoLabel);

0 comments

Leave Comment

Please login here to leave a comment.

Back