VARIABLE:ct:=0;//用全局变量累计平仓盈亏
if TODAYBAR=1 then ct:=0;//每天第一个K重置下全局变量
if 平仓条件 and holding>0 then
begin
sell(holding>0,holding,market);
ct:=ct+NUMPROFIT(1);//每次平仓时候累计平仓盈亏
end
if 开仓条件 and holding=0 and ct>=-A then buy(1,1,market);//平仓盈亏 达到亏损A之后不再开仓
可以参考上面范例的思路,修改下你的代码试下。主要是用全局变量记录平仓盈亏,然后开仓时候判断全局变量的值。另外就是要在合适时机重置全局变量。