Thread: ADX indicator?
View Single Post
  #5 (permalink)  
Old 02-09-2006, 10:34 PM
LazyForex LazyForex is offline
Member
 
Join Date: Dec 2005
Posts: 62
LazyForex is on a distinguished road
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)";
========================================
Reply With Quote