Indirect solution method for Compilations Error problem
-
Unfortunately, I could not get any comments or solutions from the relevant people regarding the "Compilation errors" problem in FxDreema.
It was up to me to come up with a solution:
If there are "enum" inputs in the indicators you use and FxDreema does not support this, you will receive this error. All you do is use the indicator without implementing enum variables.
However, using the indicator without enum variables often leaves the indicator meaningless.
This is the error you will get in FxDreema if you use enum variables:

Let us solve the problem that FxDreema cannot solve ourselves. Save your project without enum variables and open your saved project with the IDE editor.
Here are the enum options in our code:

Manually define your enum in input fields:




This is what the variables for your indicator look like:

Also change the enum variable as follows:

Save your project and open it in Metatrader Strategy Tester. Here are the enum variables that you cannot create with FxDreema.

-
Impressive work. Thank you very much for sharing.