求大神指导:
我有一个策略,想要在触发止损之后,不再触发开仓,将策略停止,不知该如何编写
if 多单止损条件 then
begin
sell(holding>0,0,marketr);
end
想在止损之后加入一段终止交易的语段,请大神帮忙
什么时候再开仓呢?第二天吗?
例子:
VARIABLE:n=0;
if date<>ref(date,1) then n:=0;
if buycond and n=0 then begin
buy();
end
if 多单止损条件 then
begin
sell(holding>0,0,marketr);
n:=1;
end