Indicator with 100 Input Parameters
-
Hello,
i will use an indicator with over 100 Input Parameters. Error message in fxDreema is "'iCustom' - wrong parameters count". What can i do? I would like to use the indicator with default values, so i put it into FxDreema without Input Parameters. Did not work.
Any help for me? Thank you very much.
-
edit indicator in metaeditor, open it and save it with different name, than somewhere in begin of code you can find "input" or "extern" ... for parameters, which should be non visible in fxdreema, delete all "input" or "extern" words and leave rest of code ...

as example:
original: input int adxPerioda = 14;
edited: int adxPerioda = 14;or original: extern int adxPerioda = 14;
edited: int adxPerioda = 14;or you can change their default value, as this:
edited: int adxPerioda = 34;click on compile button in metaeditor and import your new indicator into fxdreema, now only desirable parameters are visible