Power ( double number , double power );    
Description
Returns the value of the first argument raised to the power of the second argument.
Input parameters
| Parameter | Default value | Description | 
|---|---|---|
| number | - | Defines the number to raise to the power. | 
| power | - | Defines the power to which the number is raised. | 
Example
declare lower;
plot Close1_5 = Power(close, 1.5);
The example draws the plot of the close value raised to the power of 1.5.