Custom Indicator- Compilation error
-

I'm using a custom indicator, but I'm unable to download the exe file-getting this compilation error when trying to download exe file.
I've declared the input/output buffers as shown:

In my custom indicator the first input is actually set as "---------------". Like this:

So I'm not sure if i need to actually declare it in the Input parameters or not, however, i did it but I'm getting that error message.I tried removing it, still i get the same error message.
Few days back it was working fine but today the indicator got cleared from the list while updating the relative path, and so I'm trying to bring it back all again.
I'm able to download the mq4 file, so I had a look at iCustom() part, this is what its like at the moment:
iCustom(symbol, timeframe, "Indicators/custom_indicator" , (Str)0, buffer, shift);which I believe is incorrect.
This is what it actually should be I guess (unsure):
iCustom(symbol, timeframe, "Indicators/cutom_indicator" , (int)2, (int)2, (int)2, (int)6, (int)5, (int)3, (int)1, buffer, shift);I made these changes, it compiles successfully but doesn't work when I pull it on the chart.
Any help on this please!!
-
Output buffer session. Enter names for buffers
-
@sktsec the buffer names are same as in the indicator.
It's working fine now with nothing changed, was a glitch in fxdreema itself I guess.