以文本方式查看主题

-  金字塔客服中心 - 专业程序化交易软件提供商  (http://222.73.7.161/bbs/index.asp)
--  交易策略发布专区  (http://222.73.7.161/bbs/list.asp?boardid=10)
----  一阳穿5线+条件选股预警  (http://222.73.7.161/bbs/dispbbs.asp?boardid=10&id=7650)

--  作者:26327756l
--  发布时间:2011/8/23 9:46:04
--  一阳穿5线+条件选股预警

MA1:MA(CLOSE,5);
MA2:MA(CLOSE,10);
MA3:MA(CLOSE,30);
MA4:MA(CLOSE,60);
MA5:MA(CLOSE,120);
MA6:MA(CLOSE,250);
DRAWICON(CLOSE>OPEN AND MA1>LOW AND MA1<HIGH AND MA2>LOW AND MA2<HIGH AND MA3>LOW AND MA3<HIGH AND MA4>LOW AND MA4<HIGH AND MA5>LOW AND MA5<HIGH,l,1);

DRAWICON(CLOSE>OPEN AND MA1>LOW AND MA1<HIGH AND MA2>LOW AND MA2<HIGH AND MA3>LOW AND MA3<HIGH AND MA4>LOW AND MA4<HIGH ,l,1);

条件选股:
CLOSE>OPEN AND
MA(CLOSE,5)>LOW AND MA(CLOSE,5)<HIGH AND
MA(CLOSE,10)>LOW AND MA(CLOSE,10)<HIGH AND
MA(CLOSE,30)>LOW AND MA(CLOSE,30)<HIGH AND 
MA(CLOSE,60)>LOW AND MA(CLOSE,60)<HIGH AND
MA(CLOSE,120)>LOW AND MA(CLOSE,120)<HIGH;