Check the link below.
should work just fine for what you asked for.
Posts made by albertomtferreira
-
RE: Close orders EAposted in Questions & Answers
-
RE: Money management option .. 500>1000 = 0.02lotposted in Questions & Answers
@saeed-2 I think the link below should work just fine for what you asked. I haven't had a chance to test it.
https://fxdreema.com/shared/OMdXX25Qd
You need to create two variables as below.

-
RE: Money management option .. 500>1000 = 0.02lotposted in Questions & Answers
@saeed-2 If you tell me exactly the levels that you want I can write something for you. Just le me know, for example:
0 to 200 --> 0.02 lots
200 to 400 --> 0.04 lots
400 to 600 --> 0.06 lots and so on.
Just let me know and I will try to help you. -
RE: Money management option .. 500>1000 = 0.02lotposted in Questions & Answers
@saeed-2 I think you can do all that using a custom MQL code with a few if statements.
You test the account balance and if between the amounts that you want you return the value that you want to your lots size variable.Something like
if account balance >=200 && <400; Lot_Size=0.05 and so on...Hope that makes sense.
-
RE: Constants and Variablesposted in Questions & Answers
Good afternoon.
You can find some information on the links below.
Check both of them and try a play around with it.
If after that you have any specific questions bring them on, myself, I will be happy to give you some support.https://fxdreema.com/instructions/builder/constants-and-variables
-
RE: Probability EAposted in Questions & Answers
I think that I’ve managed to make something. Have a look and let me know if was what you were looking for.
-
RE: Probability EAposted in Questions & Answers
@provinccigomes If I will have some spare time during the weekend I will try to draft something and share it with you.
-
RE: Probability EAposted in Questions & Answers
@l-andorrà Let me see if I have some spare time during the weekend and I can try to draft something. At the moment I'm a bit busy fighting to build my own EA.
I will let you know if I can achieve anything. -
RE: No siempre me detecta el cruce de 2 EMASposted in Questions & Answers
I do not know the exact answer, but I would guess that you have to many conditions and with very close periods. Visually, for example, on H1 timeframe it could seem that all conditions are met, however because they are so close to each other that can mislead you.
Share your project and I will try to help. -
RE: Finally , Integration of News Filter :) [ MT4 Only ]posted in Tutorials by Users
@padletut

Any idea why that is happening? -
RE: Finally , Integration of News Filter :) [ MT4 Only ]posted in Tutorials by Users
It works just great. Amazing work.
-
RE: How to put name and data on the chartposted in Questions & Answers
Hi.
To print some data in the screen you can use the Comment (on the output & communications tab) or draw text (on the chart & objects tab).
the details like name, broker and others can be find on the account drop down option. -
RE: Probability EAposted in Questions & Answers
I would suggest a loop for “n” times to test the last “n” candles on the open price vs close price. something like
for n=0 until n=10; n++
if open price > close price
bull++
else if open price>close price
bear ++
return bull and bear.Hope that makes sense....
-
RE: Display current profit/ close profit (money) of EAposted in Questions & Answers
Amazing. Works fine.
-
RE: move SL every 10 positive pipsposted in Questions & Answers
@kevdiaz The only way that I can think as a solution is to create a trail, where you can move your stop loss in pips.