IDWMA - custom indicator not loading properly
-
Hi All
Newcomer to FXD just getting my head around the UI and putting my first EA together.
Can someone help me with why this indicator won't load to FXD properly? It's an MQL5 file type but none of the buffers or input parameters are loading. If I was to do this manually, how should the output look? This is how I've done it:

Thanks all!
-
You need to declare the enum in the enumerations section. Will be something like:
enum enMaTypes
{
ma_sma,
ma_ema,
ma_smma,
ma_lwma,
}; -
Cheers for reply. Are you sure on that, I don't see that expressed in the source file anywhere like I do with other indicators? File is attached btw
-
More of a guess, but enum normally needs to be added, these are pre defined, but still worth a try. if you have the source code add it from the MQ file?
-
The MQ file doesn't have the enum types in it.
Here's what I've put now -

But getting an error -


-
When you add the indicator from the MQ file all inputs and buffers will be added, working better than manually adding. If no buffers are added automatically, then the indicator probably doesn't have them.
-
Yeah I've got the MQ file but nothing is loading in... guess I'll just move on - thanks anyway!
-
.......
