MACD BB Indicator

hitesh

Active Member
#2
Please give me this afl please help me plz
MACD BB Indicator development for Amibroker
Here is the AFL
Code:
[COLOR="DarkRed"]
_SECTION_BEGIN("MACD");
SetChartBkColor( ParamColor("background",colorBlack) ); 

A1=EMA(C,12)-EMA(C,26); 
BBtop=BBandTop(A1,10,1); 
BBbot=BBandBot(A1,10,1);
Color=IIf(a1<0 AND a1>Ref(a1,-1), colorLime,IIf(a1>0 AND a1>Ref(a1,-1),colorBrightGreen,IIf(a1>0 AND a1<Ref(a1,-1),colorCustom12,colorRed)));
Plot(a1,"MACD",color,styleDots+styleLine);
Plot(BBtop,"BBtop",colorDarkGreen,styleDashed);
Plot(BBbot,"BBbot",colorDarkRed,styleDashed);
Plot(0,"",31,1);
_SECTION_END();[/COLOR]
 
Last edited:

MurAtt

Well-Known Member
#3
Please remove your email id. It is against the rules of the forum.

This has earlier been informed to you in another thread too but you are tending to ignore the courteous way in which you are told.

Next time your post will be reported for infringement....

Please give me this afl please help me plz
MACD BB Indicator development for Amibroker


xxx @ h o t m ai l . c o m
 

Similar threads