@jemmyca Sure. Here you have a simplified version:
Posts made by l'andorrà
-
RE: How to auto close EAposted in Questions & Answers
-
RE: max number of trades per trendposted in Questions & Answers
@piptheripper You will need some boolean variable to do it. For example, when a crossing uptrend happens one boolean variable moves from false to true. Than you use a condition block requiring all trades on that trend to met than condition. Additionally you will need a blue 'check trades count' controlling that maximum number.
When a downtren crossing happens the other boolean variable is moved to true and the previous one to false.
-
RE: Check Profit (unrealized) Take Profit point not showingposted in Questions & Answers
@bhadzlagayan Can you please share the link to your project?
-
RE: show profits minus loss of the expert attached to each chartposted in Questions & Answers
@itadila You will need to create some variables to get it that way. This is an example I created some tome ago for MT5:
https://fxdreema.com/shared/hrWKbecve
You can do the same for MT4. And you should remove both condition blocks 9 and 10. You do not need them necessarily.
-
RE: Order IDposted in Questions & Answers
@piptheripper You need to define as many different groups as strategies. You will find the way to create them here:
https://fxdreema.com/instructions/builder/groups-and-magic-numbers
-
RE: TP and SL modified in loopposted in Questions & Answers
@yogajangkung But what is supposed to happen first? Lines to be drawn maybe? Additionally, I do not recommend to over burden the EA witj objects. Why not storing the values into variables and then let the EA to calculate if price is above/below any of them?
-
RE: Help to import this mq5 indicatorposted in Questions & Answers
@alex81 Sadly, fxDreema is not good at correctly identifying buffers in mq5 files.

-
RE: closing price minus X times the ATR.posted in Questions & Answers
@kepler De acuerdo. Aquí hay dos posibilidades. Usar el valor del ATR en el momento (es decir, que va variando a medida que pasa el tiempo) o bien usar el valr fijo que había en el momento de la apertura de la operación. ¿Cuál quieres?
-
RE: Risk percentageposted in Questions & Answers
@piptheripper Then you should select this option instead:

-
RE: MACD Level captured in a variable?posted in Questions & Answers
@highmoose You can create two variables and store both values this way:

Than you can use normal 'condition' blocks to check when one number is above the other.
-
RE: Pending Order from previous high or lowposted in Questions & Answers
@kallosh Do you mean programming a pending order at the exact same price of a closed order? If so, wich one exactly?
-
RE: hello,i want to know code of lot multiplyer when profit is increase.posted in Questions & Answers
@shubhankar-kumar This is one way to do it, but that can change depending on your initial lot size, of course:

-
RE: Help Stop This Loopposted in Questions & Answers
@econsulttt Can you please share the link to your project? I don't fully understand what you need.
-
RE: Payment cant get throughposted in Questions & Answers
@majinbot This is weird. You should contact the admin here and let him know:
-
RE: Slope on VWAPposted in Questions & Answers
@gonannster I'm afraid fxDreema cannot understand the available buffers. It simply can't identify them. I'm afraid this is a common issue for this plartform. I'm afraid you will need a programmer to edit those indicators manually before using them here.

-
RE: hello,i want to know code of lot multiplyer when profit is increase.posted in Questions & Answers
@shubhankar-kumar What do you need exactly? A new open trade immediately after the previous one closed in profit or more new trades open at the same time but on higher prices?
-
RE: TP and SL modified in loopposted in Questions & Answers
@yogajangkung You are combining both 'once per bar' and 'once per day' blocks on the same tree branch. What do you exactly need?
-
RE: How to auto close EAposted in Questions & Answers
@jemmyca You need to create a variable controlling when the EA is active. A simple boolean true/false can do the job. Only when its value is true the EA works and it stopn when it is false.

