Skip to content

Latest commit

 

History

History
59 lines (39 loc) · 1.05 KB

测试默认参数组功能.md

File metadata and controls

59 lines (39 loc) · 1.05 KB

Name

测试默认参数组功能

Author

小小梦

Strategy Description

如何使用代码精确调整“回测系统默认设置”

在策略的参数测试,不同时间段回测,多个标的物回测等,回测策略时由于参数需要反复调整,而且不能记录,下次回测时又要重新设置。平台为了方便参数调整,新增加功能 -- 使用代码精确调整“回测系统默认设置”。

Strategy Arguments

Argument Default Description
number 9999 数字类型
bool true 布尔类型
string Hello World! 字符串类型
comboBox 0 下拉框: combo1

Source (javascript)

/*backtest
start: 2017-03-01        
end: 2017-03-02           
period: 15              
mode: 1                 
*/

/*defaults
number : 0
bool: false
string: Hello BotVS!
comboBox : 2
*/

function main(){
    while(true){
        LogStatus("测试默认参数!");
        Sleep(1000);
    }
}

Detail

https://www.fmz.com/strategy/40155

Last Modified

2021-07-02 16:33:15