訊號版
指標版
<aside>
💡 指標版@auto_switch_MovingDayDD
是給舊生無痛升級使用, 全新設定請用@autoCF
</aside>
// *******************************
// *********** Report ************
// *******************************
Vars: recalcpersist CsvPath("C:\\DayProfits\\"); // 報表輸出路徑
// ******************************
// ******* MR.AutoTrading *******
// ******************************
Vars: recalcpersist MrAutoTradingTxtPath(""); // MR.AutoTrading文字擋輸出路徑
// ******************************
// ********** MR.Guard **********
// ******************************
Vars: recalcpersist MrGuardTxtPath(""); // MR.Guard文字擋輸出路徑
Vars: recalcpersist MrGuardQuotePath(""); // MR.Guard行情文字檔輸出路徑
// ******************************
// ******* MR.Bridge Lite *******
// ******************************
Vars: recalcpersist MrBridgeLiteTxtPath(""); // MR.Bridge Lite文字擋輸出路徑
// ******************************
// ******** Order-Master ********
// ******************************
Vars: recalcpersist OrderMasterTxtPath(""); // 下單大師文字擋輸出路徑
// ******************************
// ********* LINE Notify ********
// ******************************
Vars: recalcpersist LineToken(""); // Line Notify權杖, 部位變動/上下架通知
// ******************************
// ********** Telegram **********
// ******************************
Vars: recalcpersist TelegramBotId(""); // Telegram BotId, 部位變動/上下架通知
Vars: recalcpersist TelegramChatId(""); // Telegram ChatId
補充:
Inputs:
filename("TX"), // 投組名稱
signalNO(0), // 策略代號(>0, 同個投組代號不能重複)
posi(1), // 權重
DD_Mode(1), // 上下架DD計算方式: 0=不計算, 1=MovingDD, 2=MaxDD
DownDD(99999999), // DD上限, Session1收盤時DD超過上限就會下架
daysago(250), // DD計算週期(日)
report_on_off(1), // 是否輸出報表: 0=不輸出, 1=輸出
report_subfolder(""), // 報表副目錄, 完整路徑: "{CsvPath}\\{report_subfolder}\\"
AutoReloadPrice(0), // 自動回補, 0=不啟用, 1=啟用 *註1
~~posDecimals(0), // 部位的小數點位數, 台指=0~~
priceDecimals(0), // 行情報價的小數點位數, 台指=0
MaxContracts(1), // 輸出給MR.AutoTrading/MR.Guard文字檔會用到的值
TextLocation(2); // 訊號autoCF面板位置, 0=隱藏, 1=左上, 2=右上, 3=右下, 4=左下
<aside>
💡 *註1: 只需設定一隻@autoCF
的AutoReloadPrice=1
, 在同個MultiCharts裡的所有圖表(不分週期/商品), 都會一起自動回補
</aside>