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

 

一,“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

 ps:好多朋友问这个是什么软件 我也忘了说啦。我用的金字塔






来函数检测结果如下
该公式没有未来函数


解密、定制、编写公式指标请联系QQ或微信同号:88652583
置顶指标

相关指标公式

输出一,“K线走完模式”转换成“固定轮询模式”或者“混合模式”的方法 以便把各个模型放在同一个框架内进行图表程序化交易 举例: 均线交叉模型(K线走完模型):RUNMODE:0
MA5赋值:收盘价的5日简单移动平均
MA20赋值:收盘价的20日简单移动平均
ENTERTIME赋值:时间(时分)>100000 AND 时间(时分)<144500
条件判断 HOLDING>0 AND MA5 条件判断 HOLDING<0 AND MA5>MA20 THEN 卖出开仓
条件判断 HOLDING=0 AND MA5>MA20 AND ENTERTIME THEN 买入开仓
条件判断 HOLDING=0 AND MA5 条件判断 时间(时分)>=150000 THEN BEGIN 卖出平仓
卖出开仓
END简单的改法,自然是把各个条件“过去化”,如:MA5 改为 1日前的收盘价的5日简单移动平均
输出但这种方法碰到大型的、复杂的模型时,容易出错 可采用这种方法,把HOLDING用全局变量CC替换,然后加入红色部分代码,红色部分代码要放在信号语句的前面:RUNMODE:0
输出 VARIABLE:CC=0
MA5赋值:收盘价的5日简单移动平均
MA20赋值:收盘价的20日简单移动平均
ENTERTIME赋值:时间(时分)>100000 AND 时间(时分)<144500
条件判断 HOLDING>0 AND CC<=0 THEN 卖出平仓
条件判断 HOLDING<0 AND CC>=0 THEN 卖出开仓
条件判断 HOLDING=0 AND CC>0 THEN 买入开仓
条件判断 HOLDING=0 AND CC<0 THEN 买入平仓
CC赋值:0
CC赋值:0
CC赋值:1
CC赋值:-1
CC赋值:0
输出 END那么,如果是 K线走完模式和盘中模式并存,怎么做呢?也简单,就是在“开盘价下单语句”后面加入蓝色部分的“盘中下单语句”就行了 如下:RUNMODE:0
输出 VARIABLE:ZS=0,CC=0
MA5赋值:收盘价的5日简单移动平均
MA20赋值:收盘价的20日简单移动平均
ENTERTIME赋值:时间(时分)>100000 AND 时间(时分)<144500
条件判断 HOLDING>0 AND CC<=0 THEN 卖出平仓
条件判断 HOLDING<0 AND CC>=0 THEN 卖出开仓
条件判断 HOLDING=0 AND CC>0 THEN 买入开仓
条件判断 HOLDING=0 AND CC<0 THEN 买入平仓
条件判断 CC>0 AND 最低价CC赋值:0
END 条件判断 CC<0 AND 最高价>ZS THEN BEGIN 卖出开仓
CC赋值:0
CC赋值:0
CC赋值:0
CC赋值:1
ZS赋值:收盘价-10
CC赋值:-1
ZS赋值:收盘价+10
CC赋值:0
输出 END PS:好多朋友问这个是什么软件 我也忘了说啦。我用的金字塔

指标安装下载帮助  |   联系我们  |  乐淘公式网  |  公式网   |  指标公式  |   加入收藏   |  设为主页

@2005-2025 浙ICP备2024071487号-1 乐淘公式网公式网均来源互联网收集整理,如不慎侵犯了你的权益,请联系我们告知,我们将做删除处理
免责声明:乐淘公式网所有指标公式及文章由网络收集,不保障实时性和真实性, 仅供学习研究并不构成投资建议,请勿以此为依据进行股票交易,由此引起的投资亏损与本站无关。
QQ:88652583 微信 88652583
sitemap站点地图