请老师帮忙改一下策略LastH:CALLSTOCK('',vtHIGH,6,-1);lastL:CALLSTOCK('',vtLOW,6,-1);
if cross(c,lastH) then
begin
SELLSHORT(holding<0,holding,market);
buy(holding=0,1,market);
END
if cross(lastL,l) then
begin
SELL(holding>0,holding,market);
BUYSHORT(holding=0,1,market);
END
将策略改为突破上轨多,跌破上轨平。突破下轨空,上破下轨平。
LastH:CALLSTOCK('',vtHIGH,6,-1);
lastL:CALLSTOCK('',vtLOW,6,-1);
conkd:cross(c,LastH); //开多条件
conpd:cross(LastH,c); //平多条件
conkk:cross(c,lastL); //开空条件
conpk:cross(lastL,c); //平空条件
sell(conpd and holding>0,holding,market);
sellshort(conpk and holding<0,holding,market);
buy(conkd and holding=0,holding,market);
buyshort(conkk and holding=0,holding,market);
麻烦老师再修改一下收盘价小于下轨才开空,平仓条件改为上破下轨平空,上破下轨没有平空上破上轨平空开多,反之多单一样,下破上轨没有平多下破下轨平多开空。

此主题相关图片如下:ou54d(7c1lg~7n%keiz7.png
上破了下轨没有平仓

此主题相关图片如下:$xmvhgj}c12vm(uq{r$$h7i.png


此主题相关图片如下:0c73$i}whv2pb0kpl{ibsa.png

1. 2楼的代码建议你理解代码,而不仅仅是看图说话,否者你在量化的方向根本走不远。
2. 2楼的代码中调整这两句
conkk:cross(lastL,c); //开空条件
conpk:cross(c,lastL); //平空条件
3.
麻烦老师再修改一下收盘价小于下轨才开空,平仓条件改为上破下轨平空,上破下轨没有平空上破上轨平空开多,反之多单一样,下破上轨没有平多下破下轨平多开空。 |
收盘价小于下轨,是个区间范围,这个范围每根k都会开仓。你应该是想表达:下穿下轨时开空吧
平仓条件改为上破下轨平空,上破下轨没有平空上破上轨平空开多
这个条件存在矛盾。