@Fisher Do you really need those lines? I mean, if the bot is 100% automatic it will never need them because you can store the values into variables instead.
Best posts made by l'andorrà
-
RE: New to fxdreema and need some helpposted in Questions & Answers
-
RE: input my indicator name in the input settingposted in Questions & Answers
@sktsec Interesting. Thank you.
-
RE: EA works with some brokers and not others?posted in Questions & Answers
@nitetrading Yes, I found that problem several times in the past, but only in projects on MT5, never on MT4. This is because of the discrepancy on mql5 language and fxDreema. Sadly, this is something you need to accept when using fxDreema. You should contact directly the admin to let him know the issue. That is what I always do.
-
RE: PLEASE HELP ME GUYS. Unstable EAposted in Questions & Answers
You are requesting the same variable to do more than one calculation at the same time. This is why you are having issues. You are requesting to be multiplied by 2 and by 8 at the exact same time. Just remove all other variants higher than multiplying by 2.
-
RE: mql4 code issues fixingposted in Questions & Answers
@Chiheb This site is dedicated to help on fxDreema projects, not on mql4. There are many great programmers here, but I' pretty sure you will find more help on mql5.com's forums, for example.
-
RE: Variables in blocksposted in Questions & Answers
Very briefly, you can use any variable (not constants) on those positions. If you use a variable on the white dot, it will be modified BEFORE executing the block. If you use it on the orange one it will be modified IF the block condition is true AND AFTER the execution of the block. Finally if you use the yellow one, the variable will be modified IF the block condition is false AND AFTER the execution of the block. I hope this helps.
-
RE: cross open candle today no workposted in Questions & Answers
Could you please share the link to the project instead of just sharing screenshots?
-
RE: BackTest MT5 no trades on broker candles but on duckscopy downloadedposted in Questions & Answers
@Fireblade Without knowing how the bot is built, it is impossible to say.
-
RE: ¿¿Sera posible pedirle al EA que funcione a partir de un parametro que se pueda cambiar diariamente??posted in Questions & Answers
@michele-vitulli No, lo que digo es que el mismo robot lo podrás usar cada día, pero que sí deberás cambiar esos dos valores de soporte y resistencia. Es tan fácil como retirar el robot del gráfico al final de la jornada de hoy y volverlo a ejecutar a primera hora de mañana. Así dispondrías del control manual. ¿Te parece bien?
-
RE: price off set pending orderposted in Questions & Answers
@MT4stefano If you are using the standard 'pending order' block and you type 20, it immediately understands +20 pips for a buy and -20 for a sell. You don't need to use any symbol unless you want to consider subtracting (for a buy) or adding (for a sell).
-
RE: EA works with some brokers and not others?posted in Questions & Answers
@sarunbot That is exactly what I was referring to in my post. Thanks for the clarification.
-
RE: datetimeposted in Questions & Answers
Just copy the suggested code into a grey 'custom mql code' block.
-
RE: Draw Custom Indicator automaticallyposted in Questions & Answers
Can you please open a new thread for your question?
-
RE: Lot sizeposted in Questions & Answers
Not sure what you mean by 'with 25% of the already opened lot size'. Do you mean opening a second trades with 25% lot size of the previous one?
-
RE: How to backtest the close order by object on chart on MT5 ?posted in Questions & Answers
Is the object really necessary? You can store the value of the object into a variable and do the calculations normally instead.
-
RE: EA to trade with custom indicator on chartposted in Questions & Answers
Did you check if the custom indicator is compatible with fxDreema? That is the first step before moving on.
-
RE: Problem with output buffersposted in Questions & Answers
I found that same issue some years ago (several buffers sharing the same position) and there was no solution other than using some custom code to fix it. No fxDreema block can understand that buffers distribution.
-
RE: Vertical Lines*posted in Questions & Answers
@Morpheus_0 You can substitute the pink line for candle ID. The pink line is a candle in the past that will be increasing its ID by as new candles are appearing on the chart.
The green line is reached when its candle ID is zero:

-
RE: Telegram to MT5 orderposted in Questions & Answers
@PlugPong You will ned some custom code. Here you have some hints to do that:
https://fxdreema.com/forum/topic/6716/mt4-to-telegram-group/3
https://fxdreema.com/forum/topic/7192/send-screenshot-to-telegram
https://fxdreema.com/forum/topic/15201/send-variables-to-telegram/8 -
RE: NRTR custom indicator from MT5posted in Questions & Answers
@Lerumo Sadly, not all custom indicators work fine on fxDreema. Can you try to find a different one?