@ladydolares 1:Notrade block, 2:bull candel block (id5), 3:bears in a row block(row 4, id1), 4:Sell now.
Posts made by miki
-
RE: 1 bull and 4 bear candleposted in Questions & Answers
-
RE: Not sure if this is a bug or I'm missing somethingposted in Questions & Answers
@l-andorrà I don't know what else to tell you, I tried to test "trade closed" block by creating my own ea (my subscription does not allow me to download yours) and it works correctly. If I close the trade by hand before the stop loss no other trade is opened
-
RE: Not sure if this is a bug or I'm missing somethingposted in Questions & Answers
@l-andorrà in mt4 fxdreema to verify that a trade is closed by stop loss, check that in the trade comment there is the entry [SL] or by price. Can you verify that this entry is not in the comment of a hand closed trade?

-
RE: NoPosition and NoPosition/orderposted in Bug Reports
@Implosion maybe share the link to the project, those blocks normally work well.
-
RE: Sum profits from selected positionsposted in Questions & Answers
@xfire normally check profit unrealized block does this job without other block
-
RE: Stop Trading when the daily target or loss is achievedposted in Questions & Answers
@sauce unlink account management block from one a day and in turn off/on blocks put 1
-
RE: Stop Trading when the daily target or loss is achievedposted in Questions & Answers
@sauce it depends on what you have to calculate it on, whether only on closed or open and closed trades. However, a pattern can be as you see in the image.

-
RE: How to use more decimal places for automatic volume calculation?posted in Questions & Answers
@floko125 Probably the broker then rounds to the nearest executable
-
RE: how many blocksposted in Questions & Answers
@edmundo-vizarra it is strange, even if the subscription is terminated the project remains but you cannot download it.
-
RE: having problem hereposted in General Discussions
@champion90 If the payment was successful, refresh builder page, if your subscription is still free you have one way...contact administrator support@fxdreema.com
-
RE: Save .csv file to a different location.posted in Questions & Answers
@fabiobioware first step is open a custom mql code block, copy past the second part of code and use it in your project when you want copy file. If for example you want copy at start put the block in OnInit tab otherwise in OnTick tab.
Download source file .mql5 open it and add first part of code on the top after #define section. Stop.
-
RE: Save .csv file to a different location.posted in Questions & Answers
@fabiobioware if you want save file in other location on your pc , on the header of mql5 file you must add these lines:
#import "shell32.dll"
int ShellExecuteW(int hwnd,string operation,string file,string parameters,string directory,int showCmd);
#importand when you want to copy, in the project:
string strFrom = "C:\\Path\\you\\want\\copy\\namefile.csv";
string strTo = "C:\\Path\\where\\copy;
string strParameters = "/c copy " + strFrom + " " + strTo;int result = ShellExecuteW(0, "open", "cmd.exe", strParameters, NULL,1);
if (result <= 32) Alert("Shell Execute Failed: ", result);Important double backslash in the path.
-
RE: how many blocksposted in Questions & Answers
@edmundo-vizarra in free subscription a maximum of 10 connections are enabled
-
RE: Variable declaration (Initial)posted in Questions & Answers
@vancedavid normally is int 15 and in the project that 15 according to the block used it can be understood as pips
-
RE: Resources insert indicatorposted in General Discussions
@skauch giusto, ma anche nel blocco del trailing devi impostare gruppo 1
-
RE: Resources insert indicatorposted in General Discussions
@skauch said in Resources insert indicator:
@miki ho provato ma non funziona mi sembra di aver letto che col numero di gruppo cambi solo il magic number
I tried but it doesn't work I seem to have read that only the magic number changes with the group numberStrano che non funzioni, cambiando proprio il magic attraverso i gruppi e come se le operazioni fossero di 2 ea differenti.
Hai settato anche il trailing sull gruppo giusto?
Strange that it doesn't work, just by changing the magic through groups and as if the operations were of 2 different experts.
Did you also set the trailing on the right group? -
RE: Resources insert indicatorposted in General Discussions
@skauch puoi usare i gruppi, 1 ad esempio per i pending e 2 per i normali , di conseguenza il trailing va impostato solo sul gruppo 1.
you can use groups, 1 for example for pending and 2 for normals, consequently the trailing must be set only on group 1.

-
RE: Resources insert indicatorposted in General Discussions
@skauch ciao certo che si può ma il codice dell'indicatore và inserito nell'ea e non solo richiamato come hai fatto tu. Ti avevo postato un link che ti spiega come fare,ma non è una cosa semplice.
-
RE: Resources insert indicatorposted in General Discussions
@skauch parlare con te è come parlare ad un muro. Talking to you is like talking to a wall.
-
RE: "As money plus swap and commission" block not working fine.posted in Bug Reports
@fabiobioware I would say that for convenience in this case it is better to use "Bucket of position". It does the same steps as "For each Position" but they are implicitly contained within