RSI Crossover Query

CROSSOVER (RSI(CLOSE,15), RSI(CLOSE,4))

Refine the code

SET A = RSI(Close,15)
SET B = RSI(Close,9) + 2

Can numerical value be added to a indicator??

Yes you can use numbers with RSI

CROSSOVER (RSI(CLOSE,15), RSI(CLOSE,4)+2)

2 Likes