等级: 标准版
- 注册:
- 2021-12-28
- 曾用名:
|
楼主 |
发表于 2022-1-13 16:40
|
显示全部楼层
老师:如果想在后台模型中可以显示模型信号——下面这样行不行?
if BARSTATUS<2 then begin
止损c:tsell(tbuyholdingex('','',1)>0 and c<开仓价*zsfd and tenterbars>=1 ,0,lmt,c);//指定价
止盈:tsell(tbuyholdingex('','',1)>0 and 止盈条件 and tenterbars>=1 ,0,lmt,止盈价);//指定价
冲高卖:tsell(tbuyholdingex('','',1)>0 and and tenterbars>=1 and 冲高 ,0,lmt,o*1.03);//指定价
阴线卖:tsell(tbuyholdingex('','',1)>0 and and tenterbars>=1 and 长阴 ,0,lmt,c);//指定价
开多:tbuy(tbuyholdingex('','',2)=0 and kd and p<15 ,ss,lmt,c); //开多信号//k线走完提前15秒下单:指定价
开多2:tbuy(tbuyholdingex('','',2)=0 and kd2 and p<15 ,lmt,c); //开多信号////k线走完提前15秒下单:指定价
end
if BARSTATUS=2 then begin
止损c:tsell(tbuyholdingex('','',1)>0 and c<开仓价*zsfd and tenterbars>=1 ,0,lmt,c);//指定价
止盈:tsell(tbuyholdingex('','',1)>0 and 止盈条件 and tenterbars>=1 ,0,lmt,止盈价);//指定价
冲高卖:tsell(tbuyholdingex('','',1)>0 and and tenterbars>=1 and 冲高 ,0,lmt,o*1.03);//指定价
阴线卖:tsell(tbuyholdingex('','',1)>0 and and tenterbars>=1 and 长阴 ,0,lmt,c);//指定价
开多:tbuy(tbuyholdingex('','',2)=0 and kd and p<15 ,ss,lmt,c); //开多信号//k线走完提前15秒下单:指定价
开多2:tbuy(tbuyholdingex('','',2)=0 and kd2 and p<15 ,lmt,c); //开多信号////k线走完提前15秒下单:指定价
end
|
|