Test the default parameter set function

Author: The Little Dream, Date: 2017-05-05 17:36:54
Tags:

How to use code to fine-tune the filter feedback system to set the filter by default

In parameter testing of the policy, repeating at different time intervals, repeating objects of multiple parameters, etc., the repeating policy is reset the next time because the parameters need to be repeatedly adjusted, and cannot be recorded.


/*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);
    }
}

More