Type: Indicator, Name: MACD RS
Inputs:
Length(10),
FastMA(12),
SlowMA(25),
MacdMA(9);
Variable:
RSFago(0),
RSF(0),
RS(0);
RSFago = Close[Length] of Data1 / Close[Length] of Data2;
RSF = (Close of Data1 / Close of Data2) * 100;
RS = RSFAgo / RSF;
Plot1(MACD(RS, FastMA, SlowMA), «Diff»);
Plot2(XAverage(MACD(RS, FastMA, SlowMA), MacdMA), «Signal»);