If you need dynamic periods, boxes are completely unnecessary. You can simply use constants to establish the beginning and the end of the period.
Best posts made by l'andorrà
-
RE: How do i make an EA to work the next day?posted in Questions & Answers
-
RE: Implementing MA and RSI indicatorposted in Questions & Answers
@Creven You will need a custom indicator like the one described above. No block in fxDreema can do that itself.
-
RE: offer Christmasposted in Questions & Answers
I'm using fxDreema for almost 9 years now and I never saw any discount...ever. So I'm afraid that will not change, sadly.

-
RE: find open price tradeposted in Questions & Answers
@cup2020 You can store it into a variable as soon as the trade was created this way:

-
RE: For Each Position blockposted in Questions & Answers
@samsony None of your trades will have to be using an initial SL and then this structure can be used:

-
RE: How can i find highest price from specific time. e.g 21/11 21:45 to 22/11 03:50posted in Questions & Answers
@sepek jstap is right. That is the way to do it.
-
RE: Time optimization Strategy testerposted in Questions & Answers
You can create constants for hours and minutes, if that is what you need. Then you can use the components form on the 'time filter' block.
-
RE: How to add option to turn ON-OFF MA'sposted in Questions & Answers
Do you mean you should choose any combination of MAs to be used at will, right? So for example if you are using a maximum of 3 MAs (A, B and C) you should be able to choose any of these options.
- A alone.
- B alone.
- C alone.
- A, B and C combined.
- A. and B combined.
- A and C combined.
- B and C combined.
Is that what you want?
-
RE: Ignore sunday bars for calculationposted in Questions & Answers
@MT4Nutzer There is no block in fxDreema doing that. You will need a customized indicator doing it, I'm afraid.
-
RE: Recommended VPS services?posted in Questions & Answers
@Bimoldas Contabo may be cheap, but their quality is mediocre, at best. I paid for a multicore VPS and it never worked at full capacity. And they never accept any compensation request because of unprovided service.

-
RE: Problem adding Custom indicatorposted in Questions & Answers
Super trend indicator is terrible! It repaints like mad. If you use it, your bot is doomed. I strongly recommend using a completely different indicator.
-
RE: ZegZag indicatorposted in Questions & Answers
There is a problem with that logic. When you say 'previous' that means one of those high or low will be confirmed whereas the other one is still in formation. Do you mean both 'previous' high and low need to be confirmed?
-
RE: Problem adding Custom indicatorposted in Questions & Answers
@mohsen-2 Exactly. No bot will be profitable on a real market if the custom indicator repaints as badly as super trend does.
-
RE: how to assign each new trade to its OBV indicator value ?posted in Questions & Answers
@bacharchoura1 You can remove blocks 33 and 37. They are redundant. Then you need to add this on both 'for each trade' blocks:

And then add a pink block named 'once per trade/order' just below the condition block.
-
RE: Problem adding Custom indicatorposted in Questions & Answers
@sktsec Agreed. And supertrend is one of the worst of them.
-
RE: check profit of the last trade in percentposted in Questions & Answers
@MT4Nutzer That depends on your conditions. If both groups are supposed to be managed exactly in the same way, then yes.
-
RE: Change bot values via web formposted in Questions & Answers
@mohsen-2 You will need custom code that fxDreema does not provide. You will have to hire a programmer connecting your bot to a web server to get that.
-
RE: How to determine tp and sl levels according to some specific candles sizes'posted in Questions & Answers
@allstarengin You need to move the 'once par bar' block on top of both block trees. Then you need to create 2 variables for buys and another 2 for sells. Then, below your conditions blocks you need to do this (for buys only):

You will have to modify it for sells accordingly.