gatornuke:
It has to be read left to right, 0 to n, otherwise 0 could not be valid for the start parameter, 0 is the default for the start parameter.
I have a question regarding the ArrayMaximum / Minimum functions. The documentation is not clear as to whether or not the arrays are read from right to left or left to right. For instance, say i want to record the maximum of elements 6,7,8 in the following array:
Will the following expression return the maximum value of elements 6,7,8, or 4,5,6? I suspect it's the former, but would like to confirm.
That's what i thought. Thanks.
RaptorUK:
It has to be read left to right, 0 to n, otherwise 0 could not be valid for the start parameter, 0 is the default for the start parameter.
It has to be read left to right, 0 to n, otherwise 0 could not be valid for the start parameter, 0 is the default for the start parameter.
It is read from [start to start+n-1]. Left and right depend on ArraySetAsSeries

You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
I have a question regarding the ArrayMaximum / Minimum functions. The documentation is not clear as to whether or not the arrays are read from right to left or left to right. For instance, say i want to record the maximum of elements 6,7,8 in the following array:
Will the following expression return the maximum value of elements 6,7,8, or 4,5,6? I suspect it's the former, but would like to confirm.