Tarea técnica
Hello guys,
I would be very happy if someone could programm my Expert Advisor for MT4 into MT5. It is very simple for someone who control the MT5 language, it's not a complicated EA.
It's an EA which trades with MA, Stoch and Rsi plus there is a Martingale function already programed in MT4 but it has to be in MT5.
There is 3 more things to do.
1. I would like if you could change the martingale function a little bit. At the moment it does trade like that: If i lose a trade it multiplicates the next trade lot x times ( the value x set by myself) and the third trade also the same x times like the first.
But i want to set for an example the second trade to multiplate 2 times if i lose the first / the third trade to 2.7 for an example if i lose the second trade.
But it could be any number that i want to set. Below is just an example.
| Trade | Multiplicator |
|---|---|
| 1 | 2.0 |
| 2 | 2.5 |
| 3 | 3.2 |
| 4 | 3.9 |
2. Modify the trade days. It should only trade these days which i turn true. Below is just an example.
| Days | Action |
|---|---|
| Monday | True |
| Tuesday | False |
| Wednesday | False |
| Thursday | True |
| Friday | True |
3. Modify the trade hours. It should only trade these days which i turn true. Below is just an example.
| Hours | Action |
|---|---|
| 22 | False |
| 23 | True |
| 24 | True |
| 1 | True |
| 2 | True |
| 3 | False |
| 4 | True |