ICUSTOM WRONG PARAMETER COUNT aftre del. INPUT & EXTERN
-
Hello everyone!
So I'm trying to build an EA based on the attached indicator but I keep geting error 'iCustom' - wrong parameters count.
I looked through the forum and there was one suggestion to delete all the words INPUT & EXTERN but it did not work.
Can someone please help me and make it work ?
-
@archer Try this, create a variable and add this to a custom code block:
VARIABLE = iCustom(NULL,0,"name of the custom indicator",0,0);
in your platform run the indicator and open the data window , starting at 0 count down until you get to the number of the data you want, put this into the penultimate 0, make sure the created variable is of the same type.
-
@jstap said in ICUSTOM WRONG PARAMETER COUNT aftre del. INPUT & EXTERN:
@archer Try this, create a variable and add this to a custom code block:
VARIABLE = iCustom(NULL,0,"name of the custom indicator",0,0);
in your platform run the indicator and open the data window , starting at 0 count down until you get to the number of the data you want, put this into the penultimate 0, make sure the created variable is of the same type.
OK, thx. Will try to figure it out