以文本方式查看主题

-  金字塔客服中心 - 专业程序化交易软件提供商  (http://weistock.com/bbs/index.asp)
--  公式模型编写问题提交  (http://weistock.com/bbs/list.asp?boardid=4)
----  [求助]麻烦将这个模型改成固定轮询模式,提前几秒下单  (http://weistock.com/bbs/dispbbs.asp?boardid=4&id=48915)

--  作者:zyf1199
--  发布时间:2013/2/26 11:16:00
--  [求助]麻烦将这个模型改成固定轮询模式,提前几秒下单
  • 您好老师,这个模型能否可以改成固定轮询模式,还设置提前1-10秒的下单参数
  • input:n1(32,6,50,1);

W1:=-100*(HHV(H,N1)-C)/(HHV(H,N1)-LLV(L,N1))+50;
T1:=TIME>093000 AND TIME<143500;
T2:=TIME>150500;

if W1>45 AND REF(ANY(W1>45,9),1) then begin
 sellshort(holding<0, 0, thisclose);
 buy(holding=0 AND T1, 1, thisclose);
 end

if HHV(H,5)>1.0094*C OR T2 then sell(holding>0, 0, thisclose);

if W1<-45 AND REF(ANY(W1<-45,9),1) then begin
 sell(holding>0, 0, thisclose);
 buyshort(holding=0 AND T1, 1, thisclose);
 end

if C>1.0094*LLV(L,5) OR T2 then sellshort(holding<0, 0, thisclose);