Sorry, I didn't see your last reply. If I understand it correctly, there can be an infinite number of trades open at the same time. The question then is how those '3 lots' are supposed to be distributed between, 2, 5, 20 or 100 trades. Do they need to be equally distributed?
Posts made by l'andorrà
-
RE: Hedging problemposted in Questions & Answers
-
RE: R/R and take porofitposted in Questions & Answers
Do you mean the 5th candle's low? And what if that price level is above price level now? I guess you will need the opposite for a sell, right?
-
RE: Need help to partial close trade and move SL to BE.posted in General Discussions
You can remove both 'if position' blocks on top. They are redundant. Then remove blocks 79 and 86. They are not necessary.
-
RE: how to draw trend lineposted in Questions & Answers
I definitely recommend using fxDreema for MT4. It will create a 99.9% robust bot. On your last question, I do not recommend using Zigzag. It is a very tricky indicator. Didn't you find any other alternative?
-
RE: Heiken Ashi Trade Mgnt Close by opposite signalposted in Questions & Answers
@fifeivkbdedwcf I replied to that same question in your other thread. Please be patient and wait for someone to reply instead of opening new threads.
-
RE: Buy Sell Block Take Profit by indicatorposted in Questions & Answers
@fifeivkbdedwcf The problem is that you selected candle ID 0 as the TP level. That means the current candle in formation. You should select any past candle you are interested into (candle ID 1, Id 2...).

-
RE: If position Close or Trail Trade Mgmt MT5posted in Questions & Answers
The trailing stop block is checking any open trade by itself so you don't need to connect it below that 'is position'. Even more, I recommend to separate it from there and connect it separately. For any other open trade that is not supposed to be modified by the trailing stop you definitely need that 'if position' block.
-
RE: varias operacionesposted in Questions & Answers
Eso es más compliocado. Debes guardar el precio de SL de la primera opración en una variable y así luego podrás usarlo luego para decirle a las demás que también lo usen.
-
RE: Urgent. Unsupported filling mode (10030).Converting EA from MT4 to MT5posted in Bug Reports
Never seen this error before. I'm not a programmer, sorry. I hope someone can help.
-
RE: Need helping w/ buildingposted in Questions & Answers
You need to separate your current structure into different separate structures. One for buying and selling and another one to close trades. You can also remove those pass blocks once you do it.
-
RE: Check Type Last Block / Reset?posted in Questions & Answers
What is the bot supposed to do exactly?
-
RE: condition for Candle stick pattern - helpposted in Questions & Answers
@Uriel-0 You need some changes, The first one is connecting block 4 to the orange output dot of block 3. Then you need to use different candle IDs for those blocks defining the engulfing. Now all of them are set to search candle ID 1 as you pointed out. One of the blocks need to search for what's happening on candle ID 2 according to your definition of an engulfing.
-
RE: Change base coordinatesposted in Questions & Answers
@sara-m Wow, this is new to me!
I didn't know you could get that info. I' never tried it, but I guess the way to get what you want is knowing the exact distance in pixels of your screen width. That will be you X distance. Then the distance in pixels of your screen hight. That will be the Y distance. Please don't hesitate to share your tests here. I'm really interested. -
RE: Fibonacci Expansion Price Levelsposted in Questions & Answers
In my opinion fxDreema is very unintuitive when working with fibos. I always recommend to do the calculation via variables instead. It is far more efficient although cumbersome. Are you familiar with variables?
-
RE: how do you write the time in the constans input area so it is able to be changed in the ea settings after?posted in Questions & Answers
Wow, this is the first time I see that!I can see the values correctly on all my MT4 platforms. Are you using any additional custom code maybe?
-
RE: How to put an expiration date on an indicator?posted in Questions & Answers
@jstap Wonderful. Thank you!
-
RE: How to reset bucket of trades?posted in Questions & Answers
I guess more trades are open because the buffer inside the 'bucket of trades' block is not properly reset. You should use a variables structure instead. You can control how and when they are reset.