请老师编写一选股公式,选出的股票,处于MACD的金叉中,也处于MA3和MA5的金叉中,通达信用,谢谢!
{MA3,5}
M1:0;1000;3
M2:0;1000;5
MA1:MA(CLOSE,M1);
MA2:MA(CLOSE,M2);
{MACD}
SHORT:2;200;12
LONG:2;200;26
MID:2;200;9
DIF:EMA(CLOSE,SHORT)-EMA(CLOSE,LONG);
DEA:EMA(DIF,MID);
MACD:(DIF-DEA)*2,COLORSTICK;
公式模块:
{MA3,5}
M1:0;1000;3
M2:0;1000;5
MA1:=MA(CLOSE,M1);
MA2:=MA(CLOSE,M2);
{MACD}
SHORT:2;200;12
LONG:2;200;26
MID:2;200;9
DIF:=EMA(CLOSE,SHORT)-EMA(CLOSE,LONG);
DEA:=EMA(DIF,MID);
金叉中:MA1 MA2 AND DIF