關于返回bar數據形成excel表格的問題
作者:開拓者 TB 來源:cxh99.com 發布時間:2016年01月28日
- 咨詢內容:
求各位大神幫我看看哪里有問題!
Begin
If(CurrentBar==0)
{
FileAppend("c:\\輸出每根K線的 Bar數據.csv","CurrentTime,Date,Time,0pen,High,Low,Close,CurrentBar,BarStatus");
}
FileAppend("C:\\輸出每根K線的bar數據.csv",
DateTimeToString(CurrentDate+CurrentTime)+","+DateToString(date)+","+ TimeToString(time)+","+Text(0pen)+","+ Text(High)+","+ Text(Low)+","+ Text(Close)+","+Text(CurrentBar)+","+ Text(BarStatus));
End
- TB技術人員:
顯示是編譯錯誤的