等级: 专业版
- 注册:
- 2022-8-5
- 曾用名:
|
楼主 |
发表于 2023-2-22 15:00
|
显示全部楼层
cond1:any(all(c>ref(c,1)*1.098,2),5);老师这个意思是5天内有2天涨停,可以帮加一个条件是连续2天且是5天内的前两天吗
cond2:any(all(c<ref(c,1),3),5);
然后这里是5天内有3天下跌,可以帮加一个条件是后三天的连续下跌吗
cond3:close<hhv(close,3)*(1-16/100);
这里想要老师帮忙调整一下,现在是收盘价小于3天内最高价的0.84,我把3改成5就是5天内的最高价了对吗
if cond1 and cond2 and cond3 then
begin
if currenttime>092500 and currenttime<092600 then tbuy(1,10%,lmt,ma(c,10)*(1+0.5/100)),PERTRADER;
END
if close<ref(close,1) then tsell(1,100%,lmt,DYNAINFO( 49)),PERTRADER;
if close>ref(close,1) then tsell(1,100%,lmt,ma(c,5)),PERTRADER;
后面这些我没有问题了,麻烦老师了,感谢感谢
|
|