I did this example some time ago. Maybe it is what you are looking for.
https://fxdreema.com/forum/topic/5984/unable-to-draw-arrow-on-crossover
I did this example some time ago. Maybe it is what you are looking for.
https://fxdreema.com/forum/topic/5984/unable-to-draw-arrow-on-crossover
To do that you would need a custom indicator that gives you what you want to get the signals to enter at market. If you have that custome indicator (.ex4/.ex5 file), you can import it into fxdreema and build your project. Try to get it over internet.
Please, share a screenshot of your project. If not, it is difficult to help you. But this kind of behavior is usually related to the block "No Position"

This block should be placed in some where to avoid opening a trade while another is running.
This might be an approach:
At "OnTrade" section, when a position is closed, increase by one a variable called like "CloseTradesCount"

At "OnTick" section, add a condition like: if CloseTradesCount >= MaxTradesPerDay -> Close all --> Stop/Reset Counter or what you would like to do.
0.0009354757473274575e5 == 0.0009354757473274575e5 * 0.0001 (PointSize) = 9.354757473274575
You can try this:
double CalcResult
double PipsCalc
Formula block -> CalcResult * PointSize --> PipsCalc
(PointSize --> MarketProperties->PointSize [Customized or Original])

And display "PipsCalc".
You can add a "Custom MQL" block and apply the NormalizeDouble function to "PipsCalc".
You can place as many blocks Sell/Buy one after one as how many trades are going to be opened or you can use the "loop block" that will pass as times as you set inside it

Tienes muchas opciones.

Sólo es cuestión de ir probando.
This could be an starting point

Or you can set a variable to use it in a "Condition" block:
If Daily Profit> 50 $, then "Close positions".
Here
https://fxdreema.com/examples#Simple-Programs
You can find an example of what you are requesting under
Buy-Sell-Buy-Sell on opposite conditions
La versión free te debería dejar hacer un EA básico.
Algunos ejemplos están disponibles en
Aunque estaría bien que te pases por
Saludos