|
I found some codes for the ADX function and would appreciate if anyone here can add this for MT4's ADX
Thanks
========================================
//ADX CODE
ADXcolor= IIf(ADX(14)>=20,colorLime,colorRed);
Plot(ADX(14),"ADX(14)",ADXcolor,styleLine,styleNoT itle);
Plot(30,"",colorBlue,styleLine);
Title="ADX(14)";
========================================
|