@max-c in the setting of your builder
Posts made by miki
-
RE: does ea work without ind on chartposted in Questions & Answers
-
RE: does ea work without ind on chartposted in Questions & Answers
@max-c in the setting set display indicator after test on no like in the picture.

-
RE: Variable issueposted in Bug Reports
@jsauter86 said in Variable issue:
names for variables are not allowed to be "Short" or "Long" apparantly...is this a thing?
Yes,because long and short are data types, compiler don't recognize them like a variables, or you must write Long/Short
-
RE: unable to resolve EA Critical Errorposted in Bug Reports
@jlakins I don't know what to tell you, I don't have that error
-
RE: unable to resolve EA Critical Errorposted in Bug Reports
@jlakins testing it, i haven't any error. Error in question refers when you use fixed ratio by Ryan Jones in money management, have you used this method in buy now block?
Ps:sensitive information better hide it.
-
RE: Chiusura di tutte le operazioni al profittoposted in Questions & Answers
@ddemuru usa il blocco check profit (unrealized) →money (total sum)
-
RE: My EA not working as my expect, please help me :(posted in Questions & Answers
@polyarmour what are your broker's stop levels? It may be that the stop level is greater than 10 and the take profit is not entered. Are there errors in the journal?
-
RE: Help EAposted in Questions & Answers
@geitec you can try so https://fxdreema.com/shared/YUsECto4 if you copy paste the blocks remember to add an "int today" variable to the project.
-
RE: Help for Write custom block Mql Code: Condition + modify variablesposted in Questions & Answers
@bocadeangu said in Help for Write custom block Mql Code: Condition + modify variables:
@miki Thanks a lot for the help.
In what I need to program, I don't need to confirm that the condition is false. If it is not true, you can move on to the next comparison.
If I write the way below is there a problem ???
if (Variable1> 0) {Variable1 = Variable1 * Constant;}
if (Variable2> 0) {Variable2 = Variable2 * Constant;}
if (Variable3> 0) {Variable3 = Variable3 * Constant;}
if (Variable4> 0) {Variable4 = Variable4 * Constant;}If you use only "if" all variables are checked, if you use "else if" the next variable is checked if the previous is not true. However it would be faster to create an array and loop with a "for" but it would be difficult to explain
-
RE: Help for Write custom block Mql Code: Condition + modify variablesposted in Questions & Answers
@bocadeangu not knowing your project and what you actually you have to do, the only thing that i can say you in custom block you can write so:
if (Variable1> 0) { Variable1= Variable1 * Constant ; Pass=true ; }
else if (Variable2> 0) {Variable2= Variable2 * Constant ; Pass=true}
and so on... but remember that all these variables sooner or later must be reset. -
RE: Help for Write custom block Mql Code: Condition + modify variablesposted in Questions & Answers
@bocadeangu connect the blocks as in the picture

-
RE: Can't use any Custom indicator in MT5posted in Questions & Answers
@alex81 Is this indicator in the path Indicators/ ?
-
RE: Can't use any Custom indicator in MT5posted in Questions & Answers
@alex81 try to cancel blank space in indicator name and after add again indicator in fxdreema myindicator tab with new name and use it
-
RE: Custom indicator supertrendposted in Questions & Answers
@l-andorrà thanks, I do not use this indicator and I think I will never use it, I just give some advice to those who want to use it
-
RE: how to write ichimoku cloud?posted in Questions & Answers
@osamaababneh like this:
- if senkou spanA > senkou spanB → bid/ask < senkou spanA → bid/ask > senkou spanB → condition
- if senkou spanA < senkou spanB → bid/ask > senkou spanA → bid/ask < senkou spanB → condition
-
RE: Hi I'm new. Need help with EX4 type indis and ENUM values.posted in Questions & Answers
@johann-0 fxdreema should directly detect indicator buffers for use in your project
-
RE: Custom indicator supertrendposted in Questions & Answers
@piptheripper Are you sure there is a cross in supertrend indicator, normally there's only one line see here: https://fxdreema.com/forum/topic/12268/supertrend-indicator-for-ea/15