min
Minimum operator
min(a, b)
Parameters
| Name | Type | Description |
|---|---|---|
a |
field | First value |
b |
field | Second value |
Formula
min = LEAST(a, b)
Examples
// bar body smaller than 2 points
min(close, open) - max(close, open) < 2;
// price capped below resistance
min(high, 100) == high;
Returns
float