Mathematical function “Minimum”. Return the minimal value between two variables a and b.
Syntax:
| 
					 1  | 
						MIN(a,b)  | 
					
Example:
| 
					 1 2 3 4 5 6  | 
						mmA = average[20](low) mmB = average[50](low) result = MIN(mmA,mmB) RETURN result  | 
					
							MIN