GetPrivateProfileInt 函数在 MT4 中并不直接适用,因为 MT4 主要使用 MQL4 语言进行编程,而 GetPrivateProfileInt 是Windows API 函数,用于从初始化文件中读取整数值。 在MT4 的 MQL4 编程环境中,如果你需要读取配置文件或初始化文件中的整数值,你需要使用 MQL4 提供的文件操作函数来实现类似的功能。MQL4 没有直接...
The MT4 is nice but missed some built-in conversionfunctions, e.g. the "DoubleToInt" proposed currently I have to use "DoubleToString" then "StringToInt" to do this , maybe a build-in would do it much faster
I'm developing some tools that requires by default to have a 0 value so the trader can customize them but I'd like to know if there's a way to set on a double value a default message like "Input here the TP value" or something like that? input double TPValue = 0; // input he...