- 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);
- }
复制代码
|