为什么用以下公式不能触发开平仓呢? [金字塔]
-
咨询内容:
现在主要是没有开仓信号。
variable:num=0;
if (c-ref(c,1))/ref(c,1)<-0.01 and num=0 then
begin
buy(1,1,c);
num:=1;
end
variable:num=0;
if (c-ref(c,1))/ref(c,1)<-0.055 and num=0 then
begin
buy(1,1,c);
num:=1;
end
variable:num=0;
if (c-ref(c,1))/ref(c,1)>0.034 and num=0 then
begin
sell(1,holding,C);
num:=1;
end
-
金字塔客服:
代码里面num是用来干什么的?
-
用户回复:
控制每天每条只触发一次。
-
网友回复:
variable:num1=0,num2=0;
if date<>ref(date,1) then begin
num1:=0;
num2:=0;
endif (c-ref(c,1))/ref(c,1)<-0.01 and num1=0 and holding=0 then
begin
buy(1,1,limitr,c);
num1:=1;
end
if (c-ref(c,1))/ref(c,1)<-0.055 and num2=0 and holding=0 then
begin
buy(1,1,limitr,c);
num2:=1;
end
if (c-ref(c,1))/ref(c,1)>0.034 thenbegin
sell(1,holding,limitr,C);
end
- 网友回复: 还是不能触发开单,一单都出不来。
有思路,想编写各种指标公式,程序化交易模型,选股公式,预警公式的朋友
可联系技术人员 QQ: 511411198 进行 有偿 编写!(不贵!点击查看价格!)
相关文章
-
没有相关内容