请教关于hans123加入止损止盈的改写 [金字塔]
- 咨询内容:
在开盘30分钟后准备入场;
上轨=开盘后30分钟高点;
下轨=开盘后30分钟低点;
用法:
当价格突破上轨,买入开仓;
当价格跌穿下轨,卖出开仓。
止损:
当买入开仓后;最小价格变动N1个单位 止损。
当卖出开仓后;最小价格变动N2个单位止损。
止盈:
当买入开仓后:最小价格变动N3个单位止盈。
当卖出开仓后:最小价格变动N4个单位止盈。
如果止盈止损都不触及,收盘平仓。
请各位老师能帮忙写下代码。感谢!
- 金字塔客服:
处理中,请稍等
- 用户回复:
谢谢老师。
- 网友回复:
//N1,N2,N3,N4可以自行定义
//适用周期一分钟
t1:=time>090000 and time<145500;
t2:=time>=145500;
shanggui:=valuewhen(todaybar<=30,hhv(h,todaybar));
xiagui:=valuewhen(todaybar<=30,llv(l,todaybar));if h>shanggui and t1 then buy(holding=0,1,market);
if l<xiagui and t1 then buyshort(holding=0,1,market);
if c-enterprice>n1*mindiff and holding<0 then sellshort(1,0,market);//止损空头
if enterprice-c>n2*mindiff and holding>0 then sell(1,0,market);//止损多头
if c-enterprice>n3*mindiff and holding>0 then sell(1,0,market);//多头止盈
if enterprice-c>n4*mindiff and holding<0 then sellshort(1,0,market);//空头止盈
if t2 then BEGIN
sellshort(1,0,market);
sell(1,0,market);
end//收盘平仓 - 网友回复: 谢谢老师,能否稍微改动下 换成适用于5分钟的K线呢,因为我正常都是按5分钟操作的。
有思路,想编写各种指标公式,程序化交易模型,选股公式,预警公式的朋友
可联系技术人员 QQ: 1145508240 进行 有偿 编写!(不贵!点击查看价格!)
相关文章
-
没有相关内容