
等级: 专业版
- 注册:
- 2024-9-20
- 曾用名:
|

楼主 |
发表于 2024-11-5 16:36
|
显示全部楼层
明白了,我们有个策略昨天中午改成提前下单了,但是昨天下午出现了信号但是没有预警也没有发单,能不能帮我们看看是什么问题?
开多条件:c>KK and ref(close,1)<ref(KK,1);
多头持仓:tbuyholdingex(账号Y,'',1);
空头持仓:tsellholdingex(账号,'',1);
if islastbar then begin
if 开多条件 and 多头持仓=0 and 空头持仓>=0 then
begin
tsellshort(1,空头持仓,mkt,0,0,账号Y);
tbuy(1,头寸,mkt,0,0,账号Y);
sleep(60000);
exit;
这里用收盘价在提前N秒下单模式下是不是容易造成信号闪烁导致不能正常运行?
补充内容 (2024-11-5 16:44):
空头持仓:tsellholdingex(账号,'',1);这个手误了,是账号y |
|