void OnTimer()
{
//---MQL4 第一节课,学习各种类型,文本型,数字型,小数型,时间型,数组型,Print函数的应用。静态变量;过程函数的写法,过程函数的调用,创建一个按钮。
double a=8.12;
int b=2233;
int static n=1;
n++;
Print (n);
string c="文本";
int shuzu[2][2]={{1,2},{3,4}};
Print (shuzu[0][0],"和",shuzu[0][1],shuzu[1][0],shuzu[1][1]);
color d=Red;
bool f=true;
datetime g=LocalTime();
datetime h=CurTime();
Print (g,"和",h);
Print (a);
Print("当前自由保证金 ", AccountFreeMargin());
} |