you can do it with fxdreema ... it will contains only few blocks, try it 
Posts made by miro1360
-
RE: EA of management of another EAposted in Questions & Answers
-
RE: Baby Stepsposted in Questions & Answers
how the formula looks like exactly? can you type it in format similiar to this?
((A / B) + ((A + B) / C)) * 100
A = High
B = Low
C = Close
and so on ... -
RE: Virtual stops disappear ??posted in Questions & Answers
I dont know, tried both, limits and stops orders and for me it worked ... maybe if you provide more detailed example with example EA where it is not working, admin can check it ..
-
RE: Virtual stops disappear ??posted in Questions & Answers
this one is working ...
https://fxdreema.com/shared/TnIm2kA3d -
RE: Condition or EMA crossings on an RSI Indicatorposted in Questions & Answers
for that you need custom indicator where is EMA integrated directly on the RSI (two buffers, one for RSI and second for EMA)
-
RE: Compilation errors: '3' name expectedposted in Questions & Answers
somewhere replace '3' by a name

-
RE: Condition or EMA crossings on an RSI Indicatorposted in Questions & Answers
EMA and RSI have different group of values ... (RSI 0-100, EMA depends on price)
... you can not logically find cross between them ... -
RE: Does anyone know how to display the Daily Chart 8 EMA displayed on a 1 hr chart -EA?posted in Questions & Answers
8 EMA on D1 == 8x24=192 EMA on H1
-
RE: Combine variablesposted in Questions & Answers
you can combine string variables ...
string var1 = "EURUSD"
string var2 = "buy"
string var3 = "price:"
double var4 = "1.21212"
string var5into custom code block write this:
string var5 = var1 + " " + var2 + " " + var3 + " " + (string)var4;and result in var5 is: "EURUSD buy price: 1.21212"
-
RE: EAs working together. Could there be confusion in the price values sent or received?posted in Questions & Answers
somewhere must be logic error
try to find it with simplification of EA 
-
RE: what happened ?posted in Questions & Answers
here is old version for desktop but is not more supported by admin ...
https://fxdreema.com/desktopfor me is working ... you must wait few seconds during start
-
RE: Select the top 5 variablesposted in Questions & Answers
in that case use 2D array, mql support sorting by first dimension ... and other dimension will be reference for another string array which will be holding names of variables
here:https://fxdreema.com/shared/HSKz4cwHc



-
RE: EAs working together. Could there be confusion in the price values sent or received?posted in Questions & Answers
when pink block is used incorrectly, maybe it can cause issue

...this is how can you use Modify variables or Formula block with pink For each Trade selection block ...

I dont know if admin repairs this issue with null TP, maybe sometimes ..
-
RE: Sending variables from one MT5 platform to anotherposted in Questions & Answers
not directly, but maybe with files reading/writing ... or using database:
https://www.mql5.com/en/articles/932
... I have not tried
-
RE: EAs working together. Could there be confusion in the price values sent or received?posted in Questions & Answers
you need somehow understand how these "pink" things are working

... anywhere before Condition block, modify variable block or formula block must be the right trade preselected with dark ping block "For each Trade" ... -
RE: EAs working together. Could there be confusion in the price values sent or received?posted in Questions & Answers
ho are you working with this pink loop?
are you correctly selecting trade with dark pink block before? (For each trade) ...if not, here is how selection is working:
http://fxdreema.com/forum/topic/4246/example-for-each-trade


