Lotları bir dizide sıralamak istiyorum
-
I want to manually set the lot sizes and sort the lots in an array, as in the example: 0.01;0.02;0.03;0.04;0:05;0.07;0.09;0.11;0.13. Can you help me with which block and variable assignment I should do?

-
Do you mean every new trade regardless of type (buy/sell) should add 0.01 then if last was 0.05 add 0.02 and stop at 0.13, is there a reason to go back to 0.01?
-
@jstap No, I want to sort the lots manually, how can I do it? Can you help me?
-
what do you mean? have an edit field on screen you can set the lot for the trade?
-
@jstap Yes, I want to install it myself..jstap sir..
-
https://fxdreema.com/builder Can you add blocks to this area?
-
That's the builder not your project. This is roughly hoe to achieve, but mt5 is not the same on backtest, as mt4. All you will see is how things will look, if you create this on mt4 you can test on backtest: https://fxdreema.com/shared/rDvs6tQ5chttps://fxdreema.com/shared/rDvs6tQ5c
-
@jstap The link you provided did not open.

-
Not sure what happened, this should work: https://fxdreema.com/shared/bD3bTCWbb
-
@jstap No, it didn't work, but thank you very much for your interest.
-
What do you mean by didn't work?
-
Here's what happened: MT5 didn't go according to the plan I said I was running.
-
Did that buy when you clicked the button?, on mt4 backtest you could change the lot size in the edit field and the trade placed would use the selected size, it should work on mt5 live. It wasn't suppose to follow any plan, was just a way you could implement what you needed.
-
https://fxdreema.com/shared/LTirxqFrd
I want to create an entry that the user can easily change, separated by a lot sequence; I want to use lot sizes in an order that I specify before opening the trade (e.g. 0.01;0.01;0.01;0.01;0.02;0.02;0.04;0.05;0.06......) and I want to automatically get the next value each time a position is opened. Could you please help me and add the blocks? I kindly request you.
-
The user's input string. (example): 0.01;0.01;0.01;0.01;0.02;0.02;0.02;0.02;0.04;0.04;0.04;0.04
The user can change this field before the EA runs or for optimization purposes. Could you please add a similar input? -
double lotSize = InitialLot * MathPow(LotMultiplier, sellCount);
use this with input double LotMultiplier = 1.1; // Lot Multiplier -
I couldn't do it in blocks. Please do it in blocks.
-

-
It didn't work. I couldn't do it. Could you explain it in a little more detail? I kindly ask you.
