Dear Sir i want to do following strategy
ema(10) cross ema(100) and after crossing or at the time of crossing following indicator should be satisfy
CCI(70, SIMPLE) > 0 AND
MACD(10, 20, 9, SIMPLE) > 0 AND
RSI(CLOSE, 70) > 50 AND
MO(CLOSE, 30) >100
i am using following condition for buy signal
CROSSOVER(EMA(CLOSE,10),EMA(CLOSE,100) AND
(CCI(70, SIMPLE) > 0 AND
MACD(10, 20, 9, SIMPLE) > 0 AND
RSI(CLOSE, 70) > 50 AND
MO(CLOSE, 30) >100)
its gives the buy signal only and only at the time of crossover if all indicators condition is true
But i want whenever the crossover or after the crossover CCI,MACD,RSI,MO these indicators true ,buy signal be there