RulePoint
- RulePoint 6.1.2
- All Products
max(number1,[number2],...)
Argument
| Required
Optional
| Description
|
---|---|---|
number1
| Required
| Numbers for which you want to find the maximum value.
|
number2,...
| Optional
| Other numbers for which you want to find the maximum value
|
Parameter Input Options
| Datatype
|
---|---|
Event property
| Real number
|
Watchlist values
| Real number
|
WHEN stock s WITH max(s.value1,s.value2,value3) as result =45.0 then response with body =”${result}”
Event Property Value
| Description
| Result
|
---|---|---|
s.value1=22.0
s.value2=37.8
s.value3=45.0
| Returns the maximum value in the list.
| 45.0
|