实现功能:
当价格上穿下轨时开多单,止损平仓条件是当开仓这根K线走完后,从第二根K线开始价格低于开仓这根K线的最低时止损平多仓,止盈平仓条件是当价格上穿上轨时止盈平多仓
当价格下破上轨时开空单,开仓这根K线走完后,从第二根K线起价格超过开仓这根K线的最高点时止损平仓,当价格下破上轨时再开空单
代码:
variable:hh=0,ll=0;
MID : MA(CLOSE,26);
UPPER:MID + 2*STD(CLOSE,26);
LOWER:MID - 2*STD(CLOSE,26);
//平空开多--价格上穿下轨
if cross(c,LOWER) then
begin
sellshort(holding<0,1,market);
if holding=0 then
begin
buy(1,1,market);
ll:=low;
end
end
//价格超过开多这根K线的最低点时止损平多
if holding>0 and enterbars>1 then sell(c<ll,1,market);
//平多开空--价格下破上轨
if cross(UPPER,c) then
begin
sell(holding>0,1,market);
if holding=0 then
begin
buyshort(1,1,market);
hh:=high;
end
end
//价格超过开空这根K线的最高点时止损平空
if holding<0 and enterbars>1 then sellshort(c>hh,1,market);