how to turn this '1 year 10 times profit ' strategy into mql5 ea?

 

high[1]>ma[1],cLOSE[2]<ma[2],open[0]-high[1]<N2, sell,

IF HIGH>high[1](sell bar),close sell,

if ma[1]>ma[2],close[1]>ma[1],close sell.

buy as the same.

 
You have only four choices:
  1. Search for it,
  2. Beg at
  3. learn 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 yours.
  4. or pay (Freelance) someone to code it.
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
          urgent help.
 

can you write the logic for buy please?

i maybe will do the ea

 
Jean Francois Le Bas:

can you write the logic for buy please?

i maybe will do the ea

If you search, you can find a tool for creating EA in a visual mode(without coding), just dragging objects and putting conditions
HTH

 
fight4fc:

high[1]>ma[1],cLOSE[2]<ma[2],open[0]-high[1]<N2, sell,

IF HIGH>high[1](sell bar),close sell,

if ma[1]>ma[2],close[1]>ma[1],close sell.

buy as the same.

You have to be more clear: what is N2? And what is the period of the MA? I'm trying to develop the EA...