Topic: RSI_MA_Oscillator

Hi,
Can somebody explain how to calculate RSI_MA_Oscillator & BBP_MA_Oscillator?  I have viewed the source code but can't understand it.

Thanks

Re: RSI_MA_Oscillator

RSI_MA_Oscillator is the difference between two lines: RSI and Moving Average from this RSI.

RSI_MA_Oscillato[t] = RSI[t] - MA(RSI)[t]

BBP_MA_Oscillator is also an oscillator that represents the difference between a Bulls Bears Power line and a Moving Average line form this BBP.

BBP_MA_Oscillato[t] = BBP[t] - MA(BBP)[t]