正在编写,请您等待
直到K线开收盘价在26均线之下,开收盘价具体指什么
variable:num=0;// 全局变量,来控制当天交易次数
ma5:ma(close,5);
ma10:ma(close,10);
//开多
if CROSS(ma5,ma10) and num<3 and CLOSE>ma(close,26) and time>093000 and time<150000 then
begin
sellshort(holding<0,1,thisclose);
buy(holding=0,1, thisclose);
num:=num+1;
end
//开空
if CROSS(ma10,ma5) and time>093000 and time<150000 then
begin
sell(holding>0,1,thisclose);
buyshort(holding=0,1, thisclose);
end
if close<ma(close,26) then num:=0;
if time=closetime(0) then num:=0;// 商品期货,收盘的同时,num赋值为0
这边价格根据你需要的修改,这个大致都是这样编的、