-
Custom command for Relative Moving Average indicator.
Details: https://www.hybrid-solutions.com/plugins/client-vtl-plugins/free/rma.html
Example:
local rma = CC_RMA(ClosePrices(), 20) local sma = SMA(ClosePrices(), 20) Plot(0, 'rma', rma, White) Plot(0, 'sma', sma, Yellow)