Ceil ( double value );    
Description
Rounds a value up to the nearest integer (which is not less than the value).
Input parameters
| Parameter | Default value | Description | 
|---|---|---|
| value | - | Defines value to round up. | 
Example
plot data = Ceil(close);
The example returns the integer that is equal to or next higher than the close price.