Functions by Category Functions by Alphabetical list
Max([Column]/[Value]...) returns [Column] |   | This function returns a new column, filled with the maximum value for each of the passed in columns/values. Columns and values can be freely mixed. Examples: #returns a column filled with the close or 9, depending on which one is higher
Max(Close,6,9,3,9,4);
#returns a new column filled with the High column...
Max(Low,High);
Related functions: log , cos , exp , abs , int , sqrt , sin , atan2 , ceil , floor , log10 , IsNull , IsEqual , NVL , MinValue , MaxValue , Min , Sum , Cum , Round , RoundToQuarter , RoundToTickSize
|