Maybe this helps https://fxdreema.com/forum/topic/4501/video-tutorial-signals-dashboard-ea-advanced-looping-objects-arrays?page=1
Posts made by roar
-
RE: How to pass contsants and variables from one project to another?posted in Questions & Answers
You can effectively copy all by importing an .mq5 file as a new project, otherwise there is no way.
Related: https://fxdreema.com/forum/topic/15542/feature-request-constants-import-export-to-csv
-
RE: How to put multi variables into group in the block?posted in Questions & Answers
@noteza700 the group filter probably doesnt support multiple variables... maybe trying a concatenated string variable could help, but why do you need to change the group number anyway?
-
RE: How to get my HMA to be identified in MT4posted in Questions & Answers
@jameshovey85 your indicator probably has different buffers for green and red line. So you need separate condition for the red line.
My guess:
Green = Buffer 1
Red = Buffer 2 -
RE: Why doesn't division work here?posted in Questions & Answers
Your EA tries division by zero, in some cases.
-
RE: My first MQL5 array doesn't workposted in Questions & Answers
I think this is a graphics and chart refreshing issue, array itself works

If you print out the array elements (using Print() function) instead of commenting on the chart, it always works.
Also, if you make a ChartRedraw() after the comment block, the commenting works too.
https://fxdreema.com/shared/71T8DgAze
Mql5 is such a diva, always demanding some weird special tricks lol
-
RE: Ea conversion to ex5posted in Questions & Answers
@ykmark mt4 and mt5 versions of an EA must be completely different things on mql5 market, there is no shortcut conversion.
However you can convert your fxdreema project between mt4 and mt5.
-
RE: My first MQL5 array doesn't workposted in Questions & Answers
@l-andorrà the array works just fine in my backtest

-
RE: calculate custom number of candles averageposted in Questions & Answers
Highest and lowest can be found in Market properties. You should also check out Williams % range, it does basically that
-
RE: Editing source codeposted in Questions & Answers
It is probably an issue too. Try disabling those blocks where you change chart settings. You can always update your EA later, after publishing.
-
RE: Editing source codeposted in Questions & Answers
I would just enable the low risk option by default
-
RE: Editing source codeposted in Questions & Answers
But you need to change the default settings so that the EA actually makes trades
-
RE: Editing source codeposted in Questions & Answers
Its because the EA tries to change chart colors On Init. Not sure why the error though...
Also, I dont get any trades on some basic settings.. You should make sure the EA makes trades with default settings
-
RE: Editing source codeposted in Questions & Answers
@ykmark have you checked that the "data mismatch" is the only type of error?
-
RE: Editing source codeposted in Questions & Answers
Well it sounds like mql5 company has poor history data and they dont accept your EA because of their own problems

I think this is a rare case when "try again later" is appropriate
-
RE: Editing source codeposted in Questions & Answers
Mql5 upload test is telling you about data mismatch error?
-
RE: Editing source codeposted in Questions & Answers
@ykmark what kind of errors do you have? It may be possible to do everything in fxdreema
Edit: Data mismatch is about your history data, EA is fine

