Mathematical function “Maximum”. Return the maximal value between two variables a and b.
Syntax:
1 |
MAX(a,b) |
Example:
1 2 3 4 5 6 |
mmA = average[20](high) mmB = average[50](high) result = MAX(mmA,mmB) RETURN result |
How can i search the max value of 2+n elements?
Can you give me an example of what you’re looking to get?