14 lines
662 B
MQL5
14 lines
662 B
MQL5
|
|
//+------------------------------------------------------------------+
|
||
|
|
//| stdlib.mqh |
|
||
|
|
//| Copyright 2000-2025, MetaQuotes Ltd. |
|
||
|
|
//| http://www.metaquotes.net/ |
|
||
|
|
//+------------------------------------------------------------------+
|
||
|
|
#import "stdlib.ex4"
|
||
|
|
|
||
|
|
string ErrorDescription(int error_code);
|
||
|
|
int RGB(int red_value,int green_value,int blue_value);
|
||
|
|
bool CompareDoubles(double number1,double number2);
|
||
|
|
string DoubleToStrMorePrecision(double number,int precision);
|
||
|
|
string IntegerToHexString(int integer_number);
|
||
|
|
|
||
|
|
#import
|