新增函數名稱為 MP..
狀況一:
程式碼如下:
- VAR:MP(0);
- MP=marketposition*currentcontracts;
複製代碼
編譯出現下面的錯誤..
- ------ Compiled with error(s): ------
- syntax error, unexpected 'function return value', expecting 'identificator'
- errLine 1, errColumn 4, errLineEnd 1, errColumnEnd 4
- causal study: (Function)
複製代碼
狀況二:
程式碼如下:
- VAR:MPX(0);
- MPX=marketposition*currentcontracts;
複製代碼
編譯成功, 訊息如下:
- ------ Build started: ------
- Study: "MP" (Function)
- Please wait ....
- 30.11.12 13:26:17
- ------ Compiled successfully ------
複製代碼
|