怎么编写? [金字塔]
- 咨询内容:
请教:我要设一个日线站在20均线上,同时5分钟5日均线交10均线金叉作为买入,5分钟5日均线与10日均线死叉卖出,怎么写?
- 金字塔客服:
{日线站在20均线上,同时5分钟5日均线交10均线金叉作为买入,5分钟5日均线与10日均线死叉卖出}
c_day:=callstock(stklabel,vtclose,6);
c_ma20:=stkindi('','ma.ma3',0,6);ma5_min5:=stkindi('','ma.ma1',0,2);
ma10_min5:=stkindi('','ma.ma2',0,2);if c_day>c_ma20 and cross(ma5_min5,ma10_min5) then begin
sellshort(1,0,market);
buy(holding=0,1,market);
endif c_day>c_ma20 and cross(ma10_min5,ma5_min5) then begin
sell(1,0,market);
buyshort(holding=0,1,market);
end
有思路,想编写各种指标公式,程序化交易模型,选股公式,预警公式的朋友
可联系技术人员 QQ: 1145508240 进行 有偿 编写!(不贵!点击查看价格!)
相关文章
-
没有相关内容