Can any one help me with this EA

 

I want to use this wildersDMI v3 to to replace the ADX inside attach  ea. can any help me out.

Moderator edit - <CODE REMOVED>

Files:
 
mikecool:

I want to use this wildersDMI v3 to to replace the ADX inside attach  ea. can any help me out.

<CODE DELETED>

Please edit your post . . .    please use the   SRC   button to post code: How to use the   SRC   button.

 

You should read this,  you code will not work properly as your loops count up:   Loops and Closing or Deleting Orders

 
mikecool:

I want to use this wildersDMI v3 to to replace the ADX inside attach  ea. can any help me out.



double ADX_Plus  = iCustom(NULL,0,"WildersDMI_v3",1,14,14,14,1,1,0,1,RealTime + 0);

double ADX_Minus = iCustom(NULL,0,"WildersDMI_v3",1,14,14,14,1,1,0,2,RealTime + 0);

//---- Indicador ADX (+D e -D) - TREND - M15

         double ADX_Plus_1  = iCustom(NULL,0,"WildersDMI_v3",1,14,14,14,1,1,0,1,RealTime + 1);

         double ADX_Minus_1 = iCustom(NULL,0,"WildersDMI_v3",1,14,14,14,1,1,0,2,RealTime + 1);

//---- Indicador ADX (+D e -D) - TREND - M15

         double ADX_Plus_2  = iCustom(NULL,0,"WildersDMI_v3",1,14,14,14,1,1,0,1,RealTime + 2);

         double ADX_Minus_2 = iCustom(NULL,0,"WildersDMI_v3",1,14,14,14,1,1,0,2,RealTime + 2); 

//---- 

         double ADX_Plus_Prev_Trend  = iCustom(NULL,0,"WildersDMI_v3",1,14,14,14,1,1,0,1,1);

         double ADX_Minus_Prev_Trend = iCustom(NULL,0,"WildersDMI_v3",1,14,14,14,1,1,0,2,1);

         

         double ADX_Plus_Trend  = iCustom(NULL,0,"WildersDMI_v3",1,14,14,14,1,1,0,1,0);

         double ADX_Minus_Trend = iCustom(NULL,0,"WildersDMI_v3",1,14,14,14,1,1,0,2,0); 

 

Reason: