I might be interested in helping. I have more MQL coding knowledge than Forex, but learning both agressively. So, if you can explain the rationale behind the method (or your trading experience) I could provide the programming experience.

You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
Hello
I'm not a code wiz and a total newbie to MT4 and there i'm not able to write my own scripts, so i wonder if anyone would be kind enough to make this piece of code for me.
The code should be able to trade all currency pairs and one any time frame
The psudo code:
Create three EMAs
EMA (1)
EMA(2)
EMA(3)
Rule:
---------------Sell order------------
-
When EMA(1) crosses EMA(3) from above create a sell order
- Take profit when EMA(1) crosses EMA(2) from below
-- Don't take profit if the distance between EMA(1) and EMA(3) is more than 3 pips
--- Always take profit when EMA(1) crosses EMA from below
-
---------------Buy order------------
-
When EMA(1) crosses EMA(3) from Below create a buy order
- Take profit when EMA(1) crosses EMA(2) from above
-- Don't take profit if the distance between EMA(1) and EMA(3) is more than 3 pips
--- Always take profit when EMA(1) crosses EMA(3) from above
I hope this little piece of psudo code explains what it is i want to accomplish
Can anyone make this for me ?