一天交易次数,可以用初始化来控制,我想上下午各交易一次。如果来控制?谢谢
全局变量控制就行了。上下午的话。你可以用2个全局变量。
以开仓一次算一次交易的话:
VARIABLE:ct1:=0,ct2:=0;
if TODAYBAR=1 then
begin
ct1:=0;
ct2:=0;
end
if 开仓条件 THEN
begin
buy((ct1=0 and time<=153000) or (ct2=0 and time>153000)) and holding=0,1,market);///
if time<=153000 then ct1:=1;
if time>153000 then ct2:=+1;
END