走完k提前下单需要在代码里怎么写才能实现 [金字塔]
-
咨询内容:
请教:这个功能,需要在代码里怎么写才能实现,
我的代码是这样的,提前3秒下单,成功了,然后K线走完,又重复下了一次
此主题相关图片如下:1.png
此主题相关图片如下:2.png -
金字塔客服:
1.重复下单了?这个K是不是当天的第一个K啊。然后昨天最后一个K是不是有信号?如果是这种情况可能是勾选了“启动时重复交易检测”导致的。
2.也有代码实现的。但是需要用固定轮询模式。有个范例:
ma5:=ma(c,5);
ma10:=ma(c,10);
input:tq(5,3,60,1);
abb:=(time0-timetot0(dynainfo(207))<=tq) or not(islastbar);if abb then begin
if holding>0 and ma5<ma10 then sell(1,1,thisclose);
if holding<0 and ma5>ma10 then sellshort(1,1,thisclose);
if holding=0 and ma5>ma10 then buy(1,1,thisclose);
if holding=0 and ma5<ma10 then buyshort(1,1,thisclose);end
[此贴子已经被作者于2020/7/10 10:10:20编辑过]
有思路,想编写各种指标公式,交易模型,选股公式,还原公式的朋友
可联系技术人员 QQ: 262069696 或微信号:cxh99cxh99 进行 有偿收费 编写!
(注:由于人数限制,QQ或微信请选择方便的一个联系我们就行,加好友时请简单备注下您的需求,否则无法通过。谢谢您!)
相关文章
-
没有相关内容