MACD BB Indicator development for Amibroker

#63
hey there guys.i am a beginner nd almost no technical language. can u guys plz help me to provide formluas for amibroker for intraday trdng.....plz provide with details on how to use nd install it in amibroker nd if possible do mail also on [email protected] thnks in advance.......u guys doing great job....
 
#65
I have downloaded and installed amobroker but I could not link nse data with amibroker. Can anybody tell me how to get data from nse and link with amibroker? It is 30 days trial verson.
 
#69
here is the code for the abvoe AFL

_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",colorGreen,styleDashed);
Plot(BBbot,"BBbot",colorRed,styleDashed);
Plot(0,"",31,1);
_SECTION_END();

vidyasagar
 

Similar threads