dif:=ema(close,12)-ema(close,26);dea:=ema(dif,9);macd:=(dif-dea)*2;a1:=ma(close,5);a2:=ma(close,10);a3:=ma(close,20);a4:=ma(close,30);xg:close>a1 and a1>a2 and a2>a3 and a3>a4 and close>...
1)xg:ma(c,5)>ref(ma(c,5),1) and ma(c,10)>ref(ma(c,10),1) and ma(c,20)>ref(ma(c,20),1) and ma(c,30)>ref(ma(c,30),1) and c>o and ref(c,1)>ref(o,1) and ref(c,2)>ref(o,2) and c>ma(...