here you go:
https://fxdreema.com/shared/1HwFwEh3b
Posts made by miro1360
-
RE: how to draw line in the futureposted in Questions & Answers
not working with negative ID ... hm ...
-
RE: how to draw line in the futureposted in Questions & Answers
not in on Chart, you must do it in on Tick ...
-
RE: help with this messageposted in Questions & Answers
field where is : "Put the result into this Variable:" -- right click and select variable where is your result saved ... variable must be added into Variables ..
-
RE: Add values of string and double variables?posted in Questions & Answers
lets say your third variable is
String result
use custom code block and "add" them together:
result = hello + (string)abc;(string)abc means, that abc you want convert to string from double ...
if you want space between, than this:
result = hello + " " + (string)abc;if you want to add something own:
result = hello + " " + (string)abc + " myText";if you need precision from double number, do this:
result = hello + DoubleToStr(abc, 4);
where number 4 means how much digits you need after decimal ... -
RE: Can't rearange constants or variables for a whileposted in Bug Reports
yes it is for me working ... I tried it with chrome ...


-
RE: Can't rearange constants or variables for a whileposted in Bug Reports
you must hold them with ::: in left ...
-
RE: how can i change the method of calculation for free margin ?posted in Questions & Answers
you can use Variables and blocks for calculation (as Formula), here are also blocks as Modify Variables, or even Custom Code block, and blocks for getting values from trades or history ... with combination of these blocks you can do any calculation you need ...
-
RE: Can I import .mq4 files?posted in Questions & Answers
if this someone else EA was not done in fxdreema, answer is no, this is not possible ...
-
RE: Ichimokuposted in Questions & Answers
ichimoku was discussed with examples, use search function and look for answer in this forum

-
RE: i want hide my condition ?posted in Questions & Answers
look somewhere in my replies about "hidetestindicators" or hide test indicator, or hide indicator in tester
some keywords like that 
-
RE: Draw an arrow above and Below Candlesposted in Questions & Answers
search somewhere for "loop" examples and replies in my posts, I posted it here many times how to do these things

-
RE: how i do that in ea ?posted in Questions & Answers
separate orders into different groups:
https://fxdreema.com/shared/W7uvaIBmc
-
RE: Freeze % of free marginposted in Questions & Answers
hi ambrogio ... I am not sure about calculation ... but what I think ...
management is working in way, that Lots are calculated from some reference, here is reference % of Free margin ... as example your Free margin is 9000 USD, and you set % as 10%, so your trade will have so much lots that next Free margin will be 8100 USD (because 10% of 9000 = 900 and 9000-900 = 8100) ... now your free margin oscilates about +-8100 USD and for next trades you get lots calculated again with the same principle, 10% from 8100 USD is 810 and next trade have so much lots that free margin will be 8100-810=7290 USD ... if your portfolio get free margin higher, like 12000, 10% from 12000 USD is 1200 and next trade opens so much lots that Free margin will be 12000-1200=10800 USD
... but I am not sure if this is right, it is what I think ... -
RE: Help wanted, please!posted in Questions & Answers
look on my trades when they were closed and than look when I posted my post
.. you can see, that EA recognize trades which were opened before EA was running
.... be sure, that Magic ID of previous closed trades is right ... -
RE: Help wanted, please!posted in Questions & Answers
what can be wrong ... because for me it is working for sure, I tested it also in demo (not only in tester) ... are you sure that your blocks are in right order, or have you not forget for something?

-
RE: Help wanted, please!posted in Questions & Answers
interesting problem with that 0.0 ... my metatrader give it automatically as 0.0 ... as input type it can be int instead of double (as I gave) but it should converts automatically ... but good that you have what you want
