公式网 股票指标公式源码分享 登录 注册
公式指标平网
未来函数检测
首页 金钻指标 通达信公式 大智慧公式 同花顺公式 文华财经公式 东财通公式 飞狐公式 操盘手公式 其他公式 公式解答 股票软件 股票池
当前位置:→ 公式网 > 通达信公式 > 正文 → 正文

“K线走完模式”转换成“固定轮询模式”或者“混合模式”的方法

发布时间:2016/2/20 7:40:03  浏览次数:

“K线走完模式”转换成“固定轮询模式”或者“混合模式”的方法
 以便把各个模型放在同一个框架内进行图表程序化交易
 举例:
 均线交叉模型(K线走完模型):
runmode:0;
 ma5:=ma(c,5);
 ma20:=ma(c,20);
 entertime:=time>100000 and time<144500;
 if holding>0 and ma5<ma20 then sell(1,1,market);
 if holding<0 and ma5>ma20 then sellshort(1,1,market);
 if holding=0 and ma5>ma20 and entertime then buy(1,1,market);
 if holding=0 and ma5<ma20 and entertime then buyshort(1,1,market);
 if time>=150000 then begin
 sell(1,1,market);
 sellshort(1,1,market);
 end

简单的改法,自然是把各个条件“过去化”,如:ma5 改为 ref(ma(c,5),1);但这种方法碰到大型的、复杂的模型时,容易出错
 可采用这种方法,把holding用全局变量cc替换,然后加入红色部分代码,红色部分代码要放在信号语句的前面:
runmode:0;
 variable:cc=0;
 ma5:=ma(c,5);
 ma20:=ma(c,20);
 entertime:=time>100000 and time<144500;
 if holding>0 and cc<=0 then sell(1,1,limitr,o);
 if holding<0 and cc>=0 then sellshort(1,1,limitr,o);
 if holding=0 and cc>0 then buy(1,1,limitr,o);
 if holding=0 and cc<0 then buyshort(1,1,limitr,o);
 if cc>0 and ma5<ma20 then cc:=0;
 if cc<0 and ma5>ma20 then cc:=0;
 if cc=0 and ma5>ma20 and entertime then cc:=1;
 if cc=0 and ma5<ma20 and entertime then cc:=-1;
 if time>=150000 then begin
 cc:=0;
 end

那么,如果是 K线走完模式和盘中模式并存,怎么做呢?也简单,就是在“开盘价下单语句”后面加入蓝色部分的“盘中下单语句”就行了
 如下:
runmode:0;
 variable:zs=0,cc=0;
 ma5:=ma(c,5);
 ma20:=ma(c,20);
 entertime:=time>100000 and time<144500;
 if holding>0 and cc<=0 then sell(1,1,limitr,o);
 if holding<0 and cc>=0 then sellshort(1,1,limitr,o);
 if holding=0 and cc>0 then buy(1,1,limitr,o);
 if holding=0 and cc<0 then buyshort(1,1,limitr,o);
 if cc>0 and l<zs then begin
 sell(1,1,limitr,min(o,zs-0.6));
 cc:=0;
 end
 if cc<0 and h>zs then begin
 sellshort(1,1,limitr,max(o,zs+0.6));
 cc:=0;
 end
 if cc>0 and ma5<ma20 then cc:=0;
 if cc<0 and ma5>ma20 then cc:=0;
 if cc=0 and ma5>ma20 and entertime then begin
 cc:=1;
 zs:=c-10;
 end
 if cc=0 and ma5<ma20 and entertime then begin
 cc:=-1;
 zs:=c+10;
 end
 if time>=150000 then begin
 cc:=0;
 end

资源下载链接   资源大小:unknow

手机移动版 - 关于我们 - 联系我们 - 广告合作 - 下载声明 - 网站帮助 - 友情链接 - 网站地图 - TOP
湘ICP备09016573号-3 增值电信业务经营ICP许可证:湘B2-20210269 湘公网安备43108102000039号
Copyright © GSZX.COM.CN ,All Rights Reserved.
股票公式,股票指标,股票软件,股票知识