MQL4 Reference
Conversion functions
StrToDouble
| double StrToDouble( |
string value) |
Converts string representation of number to double type (double-precision format with floating point).
Parameters:
| value |
- |
String containing the number character representation format. |
Sample:
double var=StrToDouble("103.2812");
|
|
|