ma5:ma(c,5);
if TODAYBAR=1 then //有夜盘为夜盘第一个K,否则白盘第一个K 可自行调整
begin
if c>ma5 then buy(1,1,market);//价格大于五日均线开多
if c<ma5 then buyshort(1,1,market);//价格小于五日均线开空
end
if time=CLOSETIME(0) then //收盘K平仓
begin
sell(holding>0,holding,market);
sellshort(holding<0,holding,market);
end