Monthly Indicator for Amibroker (AFL)
standris almost 15 years ago Amibroker (AFL)
This formula to give the indication when the stock still bullish or bearish
Screenshots
Indicator / Formula
Copy & Paste Friendly
BDIn=IIf(C>O, V,0); BDOut=IIf(C< O,V,0);
BDAccW=Sum(BDIn, 5); BDAccM=Sum(BDIn, 21);
BDDistW=Sum( BDout,5); BDDistM=Sum( BDout,21) ;
BDWeek=(BDAccW- BDDistW);
BDMonth=(BDAccM- BDDistM);
ColorBM=IIf( BDMonth>O, colorBrightGreen ,colorRed) ;
Plot(BDMonth, "BDMth",colorBM, styleHistogram| styleThick) ;0 comments
Leave Comment
Please login here to leave a comment.