求助老师帮我写一下模型.
交易思路:
1,周期,5分钟(跨日交易思路)
2,均线MA交易系统
3,开仓条件:当(5日均线MA1线)上穿(15日均线MA2线)当前K线收盘价开多,
4,平仓条件,以及开空条件,反手
m1:=ma(c,5);
m2:=ma(c,15);
//5日均线上穿15日均线-平空开多
if cross(m1,m2) then
begin
sellshort(holding<0,0,market);
buy(holding=0,1,thisclose);
end
if cross(m2,m1) then
begin
sell(holding>0,0,market);
buyshort(holding=0,1,thisclose);
end
上穿是不是应该cross(m1,m2) 还是m1>m2就能满足呀?!