@sibkis You are using the highest price on blocks 3 and 7. Shouldn't it be the lowest instead for sells?
Posts made by l'andorrà
-
RE: Swing Trading Ideaposted in Questions & Answers
-
RE: RSI EAposted in Tutorials by Users
@youngtreptrader You can do that by creating a loop. There is no block doing it automatically, if that is what you are asking.
-
RE: script input not showingposted in Questions & Answers
@frank-2 Can you please share the link to it?
-
RE: Convert mq4 to mq5 error in codeposted in Questions & Answers
@xfire I'm afraid not. I'm not a programmer, sorry.

-
RE: Using groups to place orders?posted in Questions & Answers
@iagnew Interesting. This means we can say 45 groups is the maximum number of groups than can be used effectiviely. Good to know. Thank you for sharing.
-
RE: Como detectar donde el EA o Bot esta detenidoposted in Questions & Answers
@rodrigo-ortuzar Creo que se trata de un error de programación de fxDreema, con lo que me temo que no puedo darte una solución, ya que eso lo debe arreglar el administrador. Cuando vayas a la página principal de los foros verás que hay uno llamado 'Bugs forum'. Abre el hilo allí (en inglés) y el administrador edbería revisarlo.
-
RE: Array out of rangeposted in Questions & Answers
@piptheripper Then you shlukd contact him via the support page.
-
RE: can you help to completed this grid eaposted in Questions & Answers
@watcharapon In that case you shoud nt use a grid, but a 'For each trade' structure like this:

-
RE: Ma not respectedposted in Questions & Answers
@jannemar The problem is with blocks 19 and 23 you are requiring that same condition to be false initially and then true. You need to fix that part. Additionally, block 26 should be split into two, one for buys only and another one for sells only.
-
RE: Array out of rangeposted in Questions & Answers
@piptheripper I'm afraid I'm not a programmer, I would need to see the project, if possible.
-
RE: RSI EAposted in Tutorials by Users
@nidalzd You need to use variables. When prices crossed >70 a boolen variable is moved from false to true. Then a different tree structure uses a condition block on top as that variable to be true above the next condition block asking for RSI crossing down 69.
-
RE: Margin in positionsposted in Questions & Answers
@xfire Well, never considered that question. You can always store the value of current margin into a variable at the exact moment it is open and then add/substract it from any previous existing margin being used for previous open trades.
-
RE: Convert mq4 to mq5 error in codeposted in Questions & Answers
@xfire The admin himself recommends not to use the converter but to modify manually the extension of the file from mq4 to mq5. I tried on two different projects and it worked.
-
RE: Replicating an EA From Youtube Just to See if Its Possibleposted in Questions & Answers
@sibkis You need some changes.
- Blocks 31 and 32 are searching for buys and sells. You need to specify buys only on the left and sells only on the right.
- I see a problem with the logic on both condition blocks. Current price will always be above below typical price on the current candle. Do you mean candle ID 1 instead?
- You need a condition before the 'modify stops' block. Other wise the Sl will be modified as soon as the trade is open.
-
RE: Stop Loss Parabolic first dotposted in Questions & Answers
@wctrade36 You need to swap block ID numbers 11 and 16. The 'SAR change detector' need to be activated before. Then you need to substitute your current SL level on the buy now blocl by that of the variable instead.
-
RE: Countdown to executtionposted in Questions & Answers
@youngtreptrader You need to use a 'once per bar' block immediately above the 'buy/sell now' block. That will open one ony trade per bar.