some EAs not working

 

In the Journal it says successfully loaded but not taking the deal of operation. others working fine but what I want and better for me not working properly.

 
Yazeedashrafi:

In the Journal it says successfully loaded but not taking the deal of operation. others working fine but what I want and better for me not working properly.

Well, check the code by debugging:

If the code can be compiled without any error but it doesn't do what you expect use the debugger to find out why - it is exactly made for this.
Code debugging:  https://www.metatrader5.com/en/metaeditor/help/development/debug
Error Handling and Logging in MQL5:  https://www.mql5.com/en/articles/2041
Tracing, Debugging and Structural Analysis of Source Code, scroll down to: "Launching and Debuggin": https://www.mql5.com/en/articles/272

Tips from a professional programmer (Part  I): Code storing, debugging and compiling. Working with projects and logs
https://www.mql5.com/en/articles/9266
Tips from a professional programmer (Part II): Storing and exchanging parameters between an Expert Advisor, scripts and external programs
https://www.mql5.com/en/articles/9327
Tips from a professional programmer (Part III): Logging. Connecting to the Seq log collection and analysis system
https://www.mql5.com/en/articles/10475


Code debugging - Developing programs - MetaEditor Help
  • www.metatrader5.com
MetaEditor has a built-in debugger allowing you to check a program execution step by step (by individual functions). Place breakpoints in the code...
 

It's long trip, no other way.

 

You need to debug the code of the EA. As was said – compiled file does not guarantee that the script will work perfectly, and even more be profitable. Ever EA needs to be checked and tested if it’s giving proper results.

You can start simple – by printing out messages in the code when functions are performed – this way you can diagnose at which part there is a problem with the EA or is it doing anything or not.

Reason: