Posted 2/19/2010 14:13:55
|
|
|
|
Hi,
How would you create moving average of the RSI(2) for instance? Do I have to create a new indicator or can I pass the RSI series into the SMA indicator: SMA.SetInputs(RSI). I haven't tried that yet...
Thanks in advance
|
|
Posted 2/22/2010 08:07:18
|
|
|
|
Even easier.
rsi = new RelativeStrength(14);
smaRSI = new SMA(2, rsi);
zykem (2/19/2010) Hi,
How would you create moving average of the RSI(2) for instance? Do I have to create a new indicator or can I pass the RSI series into the SMA indicator: SMA.SetInputs(RSI). I haven't tried that yet...
Thanks in advance
|
|
|
|