盈利暂停的写法 [金字塔]
- 咨询内容:
条件是CROSS(MA5,MA10)买入,等CROSS(MA10,MA5)时若盈利超过X点,则平仓且暂停Y根K线。如果盈利不超过X点,则直接做反手。
- 金字塔客服:
这个暂定的写法比想象中复杂,我先试试看
- 用户回复:
variable:n=0;
ma5:=ma(c,5);
ma10:=ma(c,10);
X:=5;
Y:=10;
if cross(ma5,ma10) and n=0 and holding=0 then begin
buy(holding=0,1,market);
n:=1;
endIF cross(ma5,ma10) and n=1 and holding=0 and barpos-n>Y then buy(holding=0,1,market);
if cross(ma10,ma5) and holding>0 and n=1 then beginif openprofit>x*MULTIPLIER then begin
sell(1,0,market);
n:=barpos;
end
if openprofit<=x*MULTIPLIER then begin
sell(1,0,market);
buyshort(holding=0,1,market);
end
end
有思路,想编写各种指标公式,程序化交易模型,选股公式,预警公式的朋友
可联系技术人员 QQ: 1145508240 进行 有偿 编写!(不贵!点击查看价格!)
相关文章
-
没有相关内容