Can you code below conditions

STOCH (40,1,1)

RSI (14)EMA(12), EMA(34)Entry for long: EMA(12) crossover EMA(34), Stocha > 50, RSI > 50 (All conditions should be satisfied)

Entry for short: EMA(12) crossover EMA(34), Stocha < 50, RSI < 50 (All conditions should be satisfied)

Price should be considered on candle closing basis. No buy & sell exit.

Buy: 

EMA(CLOSE, 12) > EMA (CLOSE, 34) AND SOPD (9, 3, 9, SIMPLE) > 50 AND RSI (CLOSE, 14) > 50

Sell: 

EMA(CLOSE, 12) < EMA (CLOSE, 34) AND SOPD (9, 3, 9,SIMPLE) < 50 AND RSI (CLOSE, 14) < 50
1 Like