请问在图表模式下,单笔交易亏损1万自动止损和亏损总资金1%止损,分别怎么写? 另外,当天亏损>=1万不继续开仓怎么写? 谢谢!
VARIABLE:mark:=1;//
把mark=1 加入到所有开仓条件里面去if TODAYBAR=1 then mark:=1;//每日第一个K重置全局变量
if holding>0 and OPENPROFIT>=10000 then //单笔浮亏达到1000 立刻止损,同时重置全局变量,当日不在开仓
begin
多头止损:sell(1,holding,market);
mark:=0;
end
if holding<0 and OPENPROFIT>=10000 then
begin
空头止损:sellshort(1,holding,market);
mark:=0;
end
if ref(ASSET,TODAYBAR)-ASSET>=10000 then mark:=0;//总资产相比昨日收盘时减少10000,重置全局变量值,不再开仓。
if (ref(ASSET,TODAYBAR)-ASSET)/ref(ASSET,TODAYBAR)>=0.01 then //资产相比昨日收盘 减少1% 止损平仓,不限制后续开仓
begin
sellshort(1,holding,market);
sell(1,holding,market);
end