我的模型不是日内,是过夜持续单。
想在我的持续持仓中,加一个条件句:
如果开盘价高于前20根K线的最高点,则以开盘价空单全平。
如果开盘价低于前10根个K线的最低点,则以开盘价多单全平。
谢谢。
nn:=ref(date,1)<>date;
nn1:barslast(nn)+1,linethick0;
if nn1=1 and o>hhv(h,20) then
sellshort(holding<0,0,limitr,open);
if nn1=1 and o<llv(l,10) then
sell(holding>0,0,limitr,open);