Rss & SiteMap
金字塔客服中心 - 专业程序化交易软件提供商 http://www.weistock.com/bbs/
收盘价站上20天线、MACD在0轴之上开多,破5天线平仓;
收盘价下破20天线,MACD在0轴之下开空,破5天线平仓;
基本框架:http://www.weistock.com/bbs/dispbbs.asp?boardid=4&Id=28263
然后引用MACD,在开仓条件里面加上MACd>0
ma5:ma(c,5);
ma20:ma(c,20);
if cross(c,ma20) then buy(holding=0,1,market);
if cross(ma5,c) then sell(1,0,market);
if cross(ma20,c) then buyshort(holding=0,1market);
if cross(c,ma5) then sellshort(1,0,market);