外汇智能交易MQL4语言教程(四)
Eagle Trader 发布于 2024-08-02
4.2.3. IF-THEN条件语句 If-Then条件语句使得控制智能交易系统指令的执行顺序得以可能。该语句可能有不同的方式编写:if Condition then Statement;orif Condition then beginStatement;Statement;&...
阅读(22)评论(0)赞 (0)
Eagle Trader 发布于 2024-08-02
4.2.3. IF-THEN条件语句 If-Then条件语句使得控制智能交易系统指令的执行顺序得以可能。该语句可能有不同的方式编写:if Condition then Statement;orif Condition then beginStatement;Statement;&...
阅读(22)评论(0)赞 (0)
Eagle Trader 发布于 2024-07-03
在MQL中,变量是极其重要的,变量在使用前必须先定义,而且各个变量名称不能重复,基本变量有四样: int:整型,也就是整数。 double:浮点型,也就是可以带小数点的数字。 bool:true或false string:字符串。 如: int a; double b; bool...
阅读(19)评论(0)赞 (0)