[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: ELA help re: Wilders RSI from TC2000



PureBytes Links

Trading Reference Links



LD,
Here is an RSI_Avg Indicator I have. Not sure if it is
what your looking for.


{RSI_Avg Indicator}

Input: Price(Close),LENGTH(8);
Plot1(Average(RSI(PRICE,LENGTH),LENGTH),"Plot1");
Plot2(30,"Plot2");
Plot3(70,"Plot3");
IF CheckAlert Then Begin
  IF Plot1 Crosses Above Plot2 or Plot1 Crosses Below
Plot2
  or Plot1 Crosses Above Plot3 or Plot1 Crosses Below
Plot3
  or Plot2 Crosses Above Plot3 or Plot2 Crosses Below
Plot3
  Then Alert = TRUE;
End;


Regards,

Alan C.

--- LD <lorjay@xxxxxxxxxxxx> wrote:
> I use TC 2000 to scan for stocks.
> In it is Wilder's RSI... It is different than the
> RSI in Tradestation in
> that it is smoothed by a moving average and has 2
> imputed values.
> 
> I would like to know if someone has an ela (or the
> ela code) for an RSI with
> 2 imputs...
>    #1...the RSI period... and #2..the moving average
> period that smooths the
> RSI.
> 
> Any assistance would be greatly appreciated.
> 
> Thank you.
> 
> LD
>