Implementation Of A Custom Function Using fxDreema Studio MQL5
-
Hi folks,
I have tried to implement some code into the fxDreema Studio MQL5 "New" custom functions facility at the bottom right of the studio editor.
The code is very simple as follows:double OnTester()
{
return NormalizeDouble(v::V_Custom_Metric, 2);
}I assume that once it is created in the Studio it becomes a part all new projects?
The Studio editor saves the code but when I search for it in the .mq5 output file of a new project it does not exist.If I add the code with a text editor manually into the "Functions" section of an fxDreema produced .mq5 file it executes as expected.
If I try to import that project back into the fxDreema builder it strips out that code.Am I missing something here on how to instruct a new project to load that custom functions code or is it a bug?
Looking forward to some help.