I want to pass a double ema as argument to RSI, instead of High or Low..., but it is not working. The error message stipulates that I have an invalid argument in my RSI.
I have the following code:
myEMA = EMA(Close, 14)[x]; myRSI = RSI(myEMA, 14, 3)[x];
Best regards,

Comment