Debu Market Efficiency Ratio for Amibroker (AFL)
agent301 almost 14 years ago Amibroker (AFL)
Debu Market Efficiency Ratio
Indicator / Formula
Copy & Paste Friendly
_SECTION_BEGIN("Debu Market Efficiency Ratio");
pds= Param("Periods",8,3,200);
Speed= C - Ref(C, -pds);
Volatility= Sum(abs(C - Ref(C, -1)),pds);
Efficiency= Speed / Volatility;
MER= EMA(EMA(Efficiency, 5),3);
Plot(MER,"MKt Eff. Ratio",colorRed);
Plot(0,"ZERO LINE",colorBlue);
_SECTION_END();0 comments
Leave Comment
Please login here to leave a comment.