- 'Close all'/'Open' tools
- My EA open trade where condition set is not met
- Need Help How to make the EA to filter Maximum allowed pair to trade based on Equity draw down
Search the CodeBase for example code to analyse, while at the same time referencing the documentation.
Help you with what? You haven't stated a problem, you stated a want.
How To Ask Questions The Smart Way. (2004)
Prune pointless queries.
You have only four choices:
-
Search for it (CodeBase or Market). Do you expect us to do your research for you?
- Try asking at:
- Coding help - MQL4 programming forum
- Make It No Repaint Please! - MQL4 programming forum
- MT4 to MT5 code converter - MQL5 programming forum
- Please fix this indicator or EA - General - MQL5 programming forum
- Requests & Ideas (MQL5 only!) - Expert Advisors and Automated Trading - MQL5 programming forum
- Indicator to EA Free Service - General - MQL5 programming forum
-
MT4: Learn to code it.
MT5: Begin learning to code it.If you don't learn MQL4/5, there is no common language for us to communicate. If we tell you what you need, you can't code it. If we give you the code, you don't know how to integrate it into your code.
-
Or pay (Freelance) someone to code it. Top of every page is the link Freelance.
Hiring to write script - General - MQL5 programming forum (2019)
We're not going to code it for you (although it could happen if you are lucky or the problem is interesting.) We are willing to help you when you post your attempt (using CODE button) and state the nature of your problem.
No free help (2017)
As a newbie, I want EA to open maximum of three positions each with a difference of 100 point when condition is met. Anyone who could help us with a general idea, which will help us all thank you
As a newbie, I want EA to open maximum of three positions each with a difference of 100 point when condition is met. Anyone who could help us with a general idea, which will help us all thank you
You have been given the best advice so far on this platform.
As a newbie, I want EA to open maximum of three positions each with a difference of 100 point when condition is met. Anyone who could help us with a general idea, which will help us all thank you
simple example:
int OnInit() { //////////// return(INIT_SUCCEEDED);} void OnTick(){ ////////// call some fuction to check if it's a new bar, so that your verification string will be reset. string verify_it = " "; if(/* your_condtion */ ){ verify_it = "ready"; } for(int i =0; i<3; i++){ if (verify_it == "ready"){ ///////OrderSend or what you want to be execute three time////////; break;}} return(0); }
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
You agree to website policy and terms of use