Can you please share the latest version?
Posts made by l'andorrà
-
RE: What am I doing wrong here?posted in Questions & Answers
Can you please share the link to the project instead?
-
RE: Error, opens operations contrary to the construction conditionposted in Questions & Answers
You need to create t2o separate groups. One for those open manually and another one for those open automatically. The bot cannot distinguish them now.
-
RE: How can I make a dd indicatorposted in Questions & Answers
Having that as an indicator is far better than as an EA. Sadly, fxDreema cannot be used to build indicators. Maybe you can find it in mql5.com.
-
RE: Filtro de noticias, que cierre todas las operaciones abiertas y suspenda el EA con X tiempo antes para reactivar el EA X tiempo despues de las noticiasposted in Questions & Answers
@DragonZueloTrends ¡Eso sería asombroso! ¿Serías tan amable de compartirlo?
-
RE: to make divergence on RSI be controlled by moving averageposted in General Discussions
Are you using a custom indicator for that RSI divergence? If so, you can use that info to compare to the MA info.
-
RE: Is there a template like this in FxDreema?posted in Questions & Answers
Can you please share the link to your current project?
-
RE: Multiply historic levelsposted in Questions & Answers
Then you need a custom code array storing that information. Sadly, fxDreema doesn't allow custom code arrays. You will need a programmer to do that. Sorry for not being helpful.

-
RE: money management rouletteposted in Questions & Answers
Blocks 22,23,18 and 21 should be moved to the 'on trade' tab and be connected below 2 'position closed' blocks.
-
RE: Crear y compartir enlace de EA detector de DD% maximo, que nos indique en el grafico en la pantalla, de cuanto ha sido el maximo DD y el DD actual, en cada activo donde estes ejecutando el EAposted in Questions & Answers
Crear un EA para eso es ineficiente. Un indicador sería más adecuado, ya que podría ser combinado luego con un EA. Por desgracia, fxDreema no sirve para crear indicadores, perpo seguro que en mql5.com hay alguin que ya lo ha creado. Una vez lo encuentres, tráelo aquí y te ayudaré a integrarlo en el EA si es posible.
-
RE: Zig zag string pending orderposted in Questions & Answers
I think your conditions are too restrictive when combined that way. I suggest to try them separately just to check if they work and then recombine them one by one until finding which one is stopping the pending order.
-
RE: Resize/Reduce rectangle when price come back to rectangle areaposted in Questions & Answers
You need to draw the first rectangle with those conditions. Then when the second condition is met, the bot need to delete the previous rectangle and then draw the new one.
-
RE: Fractal Indicatorposted in Questions & Answers
@sajjad3245 Every time a new fractal appears, store the price value into a variable. If current price is moving beyond that price, the fractal will disappear, so here you have what you need.
-
RE: why i cannot coneect block together today ?posted in Questions & Answers
Sounds weird. I don't have this problem. Is it still persistent?
-
RE: How can i count all trades that broke even and put it in a variable if my robot that has a single condition on multiple currencies??? any one can help with this?posted in Questions & Answers
@Rem1978 Pues no es un cálculo trivial. Deberías usar una variable que cuente cuántas operaciones hay en este momento en las que esta condiciçon sea cierta:

Y eso para todos los charts en uso, por supuesto.
-
RE: Cross below highest price - Valueposted in Questions & Answers
That 'check profit' block should be connected below a 'For each position block. Otherwise it will not work correctly. Additionally, profit is checked once per bar. Shouldn't it be checked all the time? It should be disconnected from that position and use a separate block tree for that.