老师好,看了上述代码,有如下问题: 一、//连续交易阶段,请根据实际时间调整这里的时间 if not(isjh) and currenttime>93000 then begin 。 对于连续交易阶段,这里的currenttime>93000能不能不写只写if not(isjh) then begin? 二、 1、//集合竞价时间 请根据品种自行配置。 isjh:currenttime>=92500 and currenttime<92900; 能否改成isjh:(currenttime>205500 and currenttime<205900) or (currenttime>085500 andcurrenttime<085900) or (currenttime>092500 and currenttime<092900);?涵盖白盘夜盘中金所品种所有品种的集合竞价时间,就不区分品种了。 2、我软件里设置的行情数据时区是金字塔时区(北京时间加4个小时),这里isjh:currenttime>=92500 and currenttime<92900; 写策略的时间是金字塔时间还是北京时间? 三、集合竞价时间,若用上一个的结算价加减涨跌停比例, if hc>=0 and tsellho>0 then tsellshort(1,tsellho,lmt, DYNAINFO(62)*(1+0.1))可以不?交易所若调整涨跌停比例我再调整0.1. 四、连续交易阶段为什么写在竞价竞价阶段前面?
|