最新消息

[公告2014/05/30] 如有需要將部落格中,任何一篇文章的程式碼使用在商業用途,請與我聯繫。

[公告2015/04/26] Line版的 iInfo程式與投資應用 群組已上線想加入的朋友們,請先查看 "入群須知" 再與我聯繫 Line : aminwhite5168,加入請告知身分與回答 "入群須知" 的問題。

[公告2018/04/22] 台北 Python + Excel VBA 金融資訊爬蟲課程,課程如網頁內容 金融資訊爬蟲班:台北班 Python 金融資訊爬蟲、EXCEL VBA 金融資訊爬蟲

[公告2019/01/08] 請注意:我再次重申,部落格文章的程式碼,是要提供各位參考與學習,一旦網頁改版請自行修改,別要求東要求西要我主動修改,你們用我寫東西賺錢了、交差了,請問有分我一杯羹嗎?既然賺錢沒分我,請問有什麼理由要求我修改,如果沒能力改,就花錢來找我上課。

[公告2019/12/01] 若各位有 Excel VBA 案子開發需求,歡迎與我聯繫,可接案處理。

[公告2020/05/22] 頁面載入速度慢,起因為部分JS來源(alexgorbatchev.com)失效導致頁面載入變慢,目前已做調整,請多見諒。

2017年3月6日 星期一

MultiCharts 寫Log 函數

開發 MultiCharts 策略,Debug是一個必經的過程,但如果想在PLE中輸出檔案或記錄某些內容,就需要再PLE中寫記錄Log的函數,筆者這裡分享一下有在使用的Log函數。
{write log function}

inputs: 
       FolderPath(StringSimple),
       Messagetext(StringSimple);
 
vars : Now(0),
       MsgText(""),
       Millisecond(""),
       TimeText(""),
       DateText(""),
       FileName("");
 
{Format Date and Time}
Now = computerdatetime;
Millisecond = NumToStr(MillisecondsFromDateTime(Now), 0);
if StrLen(Millisecond) = 1 then Millisecond = "00" + Millisecond
else if StrLen(Millisecond) = 2 then Millisecond = "0" + Millisecond;
 
{Log format}
DateText = FormatDate("yyyy-MM-dd", Now);
TimeText = FormatTime("HH:mm:ss", Now) + "." + Millisecond;
MsgText = DateText + " " + TimeText + " " + Messagetext + NewLine;

{File name}
DateText = FormatDate("yyyyMMdd", Now);
FileName = FolderPath + "_" + DateText + "_log.txt";
FileAppend(FileName, MsgText);
第27行:檔名,讀者可自行修改