How to set buy and sell to follow same Lot sequence?
-
I put my buy and sell in the same group number but they followed their individual lot growth.....

This is how it turned out:

How do I make them grow as one??
-
@TashaB don't divide the initial lot for buys/sells, use the same constant for each one. I mean, about this:

use the same on both
-
@Uriel-0 Thats the thing, I dont want them to have the same lot, the first trade created has lot size 0.01 then the nxt 0.02, then next 0.03 in that order....
so if the first trade is a sell it shld have 0.01 lot size, if the 2nd is buy it shld be 0.02, if 3rd is buy it shld have 0.03, that pattern -
Ok, I hope helped to solve it, because if I'm getting it well, the solution was as I wrote, use the same constant of initial lot
-
@TashaB Then you should use variable instead of constants. Variables can store variable values and that is exactly what you need. A constant will always be using the same value all the time.
-
@l-andorrà I just did that with bucket of trades block thnkx!
-
You're welcome.