求程序表达 [金字塔]
- 咨询内容:
针对股指:在前一日收盘价之上并高于开盘价5个点开多单,低于前一日收盘价止损平仓; 在前一日收盘价之下并低于开盘价5个点开空单,高于前一日收盘价止损平仓; 一天只开一次仓,所有持仓在当日收盘前5分钟平仓
- 金字塔客服:
在前一日收盘价之上并高于开盘价5个点开多单,低于前一日收盘价止损平仓;
在前一日收盘价之下并低于开盘价5个点开空单,高于前一日收盘价止损平仓;
一天只开一次仓,所有持仓在当日收盘前5分钟平仓
variable:n=0;
c_1:=callstock(stklabel,vtclose,6,-1);
if h>c_1+5 and n=0 and holding=0 and time<151000 then begin
buy(holding=0,1,market);
n:=1;
end
if l<c_1-5 and n=0 and holding=0 and time<151000 then begin
buyshort(holding=0,1,market);
n:=1;
end
if l<c_1 and holding>0 then sell(1,0,market);
if h>c_1 and holding<0 then sellshort(1,0,market);
if time>=151000 then begin
sell(1,0,market);
sellshort(1,0,market);
n:=0;
end
- 用户回复:
非常感谢!另请教下最后那段,time>=151000时then begin两个sell,这个不分开情况写,如果前面的条件不符合没有开仓,那到点没有持仓也会平仓吗
- 网友回复:
您好,没有仓位当然不会平仓。
- 网友回复: 非常感谢
有思路,想编写各种指标公式,程序化交易模型,选股公式,预警公式的朋友
可联系技术人员 QQ: 511411198 进行 有偿 编写!(不贵!点击查看价格!)
相关文章
-
没有相关内容