MT4智能交易编程教程-SymbolInfoDouble函数
返回一个规定交易样品的类似特性,函数有两个变量。 1. 快速返回规定值。 double SymbolInfoDouble(
string name, // 交易品种
ENUM_SYMBOL_INFO_DOUBLE prop_id // 属性标识符
); |
2. 返回真值或失败值取决于函数操作是否成功,如果成功,属性值通过引用从最后的参量传递到接受变量中。 bool SymbolInfoDouble(
string name, // 交易品种
ENUM_SYMBOL_INFO_DOUBLE prop_id, // 属性标识符
double& double_var // 这里假设属性值
); |
参量 name [in] 交易品种名称 prop_id [in] 交易样品属性标识符,值可能是计算式 ENUM_SYMBOL_INFO_DOUBLE 中的一个。 double_var [out]双精度型变量接收需求属性的值 返回值 双精度型值。In case of execution failure, information about the error can be obtained using GetLastError() function: ·5040 – invalid string parameter for specifying a symbol name, ·4301 – unknown symbol (financial instrument), ·4302 – symbol is not selected in "Market Watch" (not found in the list of available ones), ·4303 – invalid identifier of a symbol property.
|