This is the second thread you created for the exact same question. Please don't duplicate threads.
Posts made by l'andorrà
-
RE: Error on eurusd and nzdusdposted in Bug Reports
-
RE: Trying to make EA detect if range between 8am and 9am in the morning is above the open and close range of the previous day but not workingposted in Questions & Answers
Not completely sure I get the idea. If I understand it correctly, you mean something like this:
Example 1.
- Range today from 08:00 to 09:00: 28 pips.
- Daily range yesterday: 100 pips.
No trades are open today.
Example 2.
- Range today from 08:00 to 09:00: 50 pips.
- Daily range yesterday: 40 pips.
Trades will be open today if all other conditions are met.
Is this correct?
-
RE: RSI Robot not workingposted in Bug Reports
@pipskok Although unlikely, I found over the years that a fxDreema project can be corrupt. Considering it is a small project, create a new one with new blocks from scratch and try again.
-
RE: Find & delete max object in a chartposted in Questions & Answers
Easy. Just select the name of the object with that specific level and delete it. Each object should have a unique name to identify it. You can also use number. That make it easier.
-
RE: TURNING A MONEY MANAGEMENT SEQUENCE INTO A LOOP AFTER A MAXIMUM LOT SIZE IS REACHED.posted in Questions & Answers
That would mean doing it for you.
I will help you, but you should do your part first too. 
-
RE: RSI Robot not workingposted in Bug Reports
Is this the whole project or just part of it? This part is perfectly fine. I guess the problem is in the data used to do the test.
-
RE: Hello how can I create an EA that, on the M1 timeline, draws a square showing the H1 candles?posted in Questions & Answers
This is the second reply for the exact same question. Please don't duplicate questions.
-
RE: Find & delete max object in a chartposted in Questions & Answers
You need a custom loop with a variable to do that. Are you familiar with them?
-
RE: Endless buy and sells in a rowposted in Questions & Answers
Because you are telling the bot that all condition on the right branch can be applied to open buys and sells on equal terms. What is the point of that? Then remove the buys branch on the left. Why two different sets of conditions are necessary to open a buy while only one set of conditions is applied to open a sell?
-
RE: PLEASE is there anyway you can draw vertical line on chart every 4 hours and write for each 4 hours its this timezoneposted in Questions & Answers
Technically, the whole strategy can be done with variables only. So are you sure you still need the rectangles?
-
RE: Repeat buy or sell from the same price pointposted in Questions & Answers
Yes, I fully understand how it works. The problem is that building such a structure is not that easy. Have you tried an initial version? We can begin from there.
-
RE: Opening two transactions with similar specifications at one pointposted in Bug Reports
I see it is a bot made for MT5. I'm almost sure that the problem is a change in the fxDreema code. Sadly that is a very common thing here. I recommend to build the blot from scratch and test it. The new mql5 code should be fully incorporated into it. Otherwise, if you did no change at all, it should work normally.
-
RE: Hello how can I create an EA that, on the M1 timeline, draws a square showing the H1 candles?posted in Questions & Answers
Do you really need the rectangles? Why not using variables only instead? That will make the EA far more efficient.
-
RE: PLEASE is there anyway you can draw vertical line on chart every 4 hours and write for each 4 hours its this timezoneposted in Questions & Answers
Sospecho que el cuadrado debe ser visible por motivos estéticos, ¿verdad? Es mejor usar variables y evitarlo. El bot será más rápido y eficiente.
-
RE: Opening two transactions with similar specifications at one pointposted in Bug Reports
Can you please share the link to the project to take a look at it?
-
RE: How to hide pending order from brokerposted in Questions & Answers
@baxpar As I replied in my previous post.

-
RE: Repeat buy or sell from the same price pointposted in Questions & Answers
As I pointed out. You need to create a completely separated structure doing that. Additionally, They do not need necessarily to be connected together. They can be separated depending on your current structure. There is no simple description to be embedded in one block or two, if that is your question.
-
RE: TURNING A MONEY MANAGEMENT SEQUENCE INTO A LOOP AFTER A MAXIMUM LOT SIZE IS REACHED.posted in Questions & Answers
Yes. That happens in block 72, but please notice that I used an input parameter that limits the number of iterations to be considered. I'm not sure you need it too.
-
RE: Endless buy and sells in a rowposted in Questions & Answers
Block 3 should specify sell positions only and not buys too.