The MedianPrice constants give the value of the last average of the high and the low.
Syntax:
1 |
MedianPrice |
Example:
Smoothing the price information with less noises with the MedianPrice value :
1 2 3 4 5 6 7 8 |
i1 = MedianPrice i2 = MedianPrice[1] if(i1>i2) THEN result = i1 ENDIF RETURN result |