PureBytes Links
Trading Reference Links
|
Hi,
According to what I have found about that, the formula could be as
following:
{_Derivative RSI Oscillator}
Inputs: Price(Close), Period(14), sm1(5), sm2(3), sig(9);
vars: v1(0), v2(0), drsi(0);
v1 = XAverage(XAverage(RSI(Price, Period), sm1), sm2);
v2 = Average(v1, sig);
drsi = v1 - v2;
Plot1(drsi, "DRSI");
{End}
Regards,
Andrey
----- Original Message -----
From: <cgeldred@xxxxxxxxx>
To: <omega-list@xxxxxxxxxx>
Sent: Sunday, July 13, 2003 6:22 AM
Subject: Coding
> Can anyone put the finishing touches to this code? It is the Derivative
Oscillator and I do not know how to complete it.
>
> Vars: Price(0), AMA(0), RSI(0);
>
> IF (AMA{AMA(RSI(14),5),3)) - (_SMA(AMA(AMA(rsi(14),5),3),9)):
>
> THEN PLOT}1 BAR AGO }
>
> Grateful for your suggestions.
> Cleveland.
>
>
|