CheckUp
-
i see all the checkup blocks in fxdreema. is there a way to see the current calculated values of the data?
for example check average profit from "n" trade, can i output the value in there to the comment for me to see while the ea is running?
theres the trade statistic but it only shows gross loss of current or history, but i wish to have a certain number of trade calculated.
what im doing now is when the ea opened it first trade, if it goes into a loss it enters the trade management mode where it open a series of trade, i only want to check the current average profit of the entry trade to the trade management trade. -
These blocks are like black boxes
There was a time when I decided to make it possible to output some values, but then I stopped developing this option. But you can always do simple calculations using some pink blocks and Variables. -
ok
, was hoping that it would be an easy addition to the system since there was a check for it. seems like it is not haha. -
It depends. Now I'm thinking for a block similar to "For each Trade", but to load a group of trades, so then different values of that group (min, avg and max of something) can be found somewhere in "Condition". But people have problems working with "For each Trade", so I don't know what will be the best way to do something like this

-
not sure if this would help you but this is what i think i would add to my main project,
-
-
oo nice i din know we can do this in the variables too. thanks
-
In every input field you can put pure MQL4 code, and sometimes this is even easier, like the way I used those OrderProfit() functions. Of course, you should understand what OrderProfit() means, but I think this is easy.
-
yea its easy to understand this part with the documentation. i added this to my project. its better than my current method. haha something new learned
