Please make strategy for the expression on MACD and RSI

Generally I use MACD of Short Period 12 and Long Period 26 with RSI Period 10.
I buy @ cross over + RSI~30 (Increase the value of RSI from a lower range)
I sell@ cross over + RSI~70 (Decrease the value of RSI from a higher range)
Please make strategy for the expression.

1 Like

Buy:

 SET A = MACDSignal(12, 26, 10, SIMPLE)
SET B = MACD(13, 26, 9, SIMPLE)
CROSSOVER(A, B) = TRUE AND RSI(CLOSE, 14) > 30       

Sell:

SET A = MACDSignal(13, 26, 9, SIMPLE)
SET B = MACD(12, 26, 10, SIMPLE)
CROSSOVER(A, B) = TRUE AND RSI(CLOSE, 14) < 70
3 Likes