input:N(3,0,100);
input:N1(2,0,100);
input:m(2,1,100);
input:g(2,1,100);
input:D(2,1,110);
variable:zuigao=0;
开多: = ;
开空: = ;
t1:= time>=093000 and time<=145200;//交易时间
if t1 and 开多=1 and holding=0 then begin
buy(1,1,limitr,c-d);
end//开多
if t1 and 开空=1 and holding>0 then begin
sell(1,1,limitr,c);
end//平多
if t1 and 开空=1 and holding=0 then begin
buyshort(1,1,limitr,c+d);
end//开空
if t1 and 开空=1 and holding=0 then begin
sellshort(1,1,limitr,c);
end//平空
if enterprice-c>=n then sell(1,0,market);//止损
if zuigao-c>=n1 then sell(1,0,market);//止盈
if time>145200 and time<=150000 then begin
sell(1,0,market);
sellshort(1,0,market);
end//收盘前平仓
{在新交易系统中,还可以使用下列函数输出,以便查看当前帐户信息
用户应该根据品种的性质,在图表显示交易中合理设置交易费率}
{资产:ASSET,NOAXIS;
可用现金:CASH(0),LINETHICK0;
持仓:HOLDING,LINETHICK0;
使用BUY等交易系统时,注意先平后开的交易原则}