- void OnStart()
- {
- string text;
- //方法一:
- text=StringConcatenate("Account free margin is ", AccountFreeMargin(), " Current time is ", TimeToStr(TimeCurrent()));
- //方法二:
- text="Account free margin is " + AccountFreeMargin() + " Current time is " + TimeToStr(TimeCurrent())
- //打印字符串
- Print(text);
- }
复制代码
|