Traders' Tips from TASC Magazine |
|
|
Laguerre RSI
For interpretation refer to the March 2003 issue of Technical Analysis of STOCKS & COMMODITIES magazine.
var
g:=0.5;
L0:=0;
L1:=0;
L2:=0;
L3:=0;
cd:=0;
cu:=0;
temp:=0;
LRSI:=0;
end_var
if historysize>0 then
begin
L0:=((1 - g) * C) + (g * this\1\);
L1:=((0-g) * L0) + L0\1\ + (g * L0\1\);
L2:=((0-g) * L1) + L1\1\ + (g * L1\1\);
L3:=((0-g) * L2) + L2\1\ + (g * L2\1\);
if L0 >= L1 then CU:= L0 - L1; else CD:= L1 - L0;
if L1 >= L2 then CU:= CU + L1 - L2; else CD:= CD + L2 - L1;
if L2 >= L3 then CU:= CU + L2 - L3; else CD:= CD + L3 - L2;
if cu + cd = 0 then
begin
temp:=-1;
LRSI:=0;
end;
else
begin
temp:=cu + cd;
LRSI:=cu / temp;
end;
end;
return LRSI;
|
Download to import into Tradecision. 
How to use this indicator in Tradecision:
- Click Download.
- Save this indicator in a safe location on your hard drive.
- Open Tradecision and in the Tools menu click Indicator Builder.
- In the Indicator Builder dialog, click Import, locate the saved file and then click OK.
The indicator will be added to the Custom Indicators list.
|
|
| |
| Sep 2007 |
|
| Aug 2007 |
|
| Jul 2007 |
|
| Jun 2007 |
|
| May 2007 |
|
| Apr 2007 |
|
| Mar 2007 |
|
| Feb 2007 |
|
| Jan 2007 |
|
| Dec 2006 |
|
| Nov 2006 |
|
| Oct 2006 |
|
| Sep 2006 |
|
| Aug 2006 |
|
| Jul 2006 |
|
| Jun 2006 |
|
| May 2006 |
|
| Apr 2006 |
|
| Mar 2006 |
|
| Feb 2006 |
|
| Jan 2006 |
|
| Mar 2005 |
|
| Mar 2005 |
|
| Feb 2005 |
|
| Feb 2005 |
|
| Dec 2004 |
|
| Nov 2004 |
|
| May 2004 |
|
| Dec 2003 |
|
| Oct 2003 |
|
| Jul 2003 |
|
| Apr 2003 |
|
| Mar 2003 |
|
| Mar 2003 |
|
| Feb 2003 |
|
| Jun 2001 |
|
| Jun 2001 |
|
| Jun 2001 |
|
| Jun 2001 |
|
| Jun 2001 |
|
| Apr 2001 |
|
| Feb 2001 |
|
| Aug 2000 |
|
| Aug 2000 |
|
| Feb 2000 |
|
| Jan 2000 |
|
| Sep 1999 |
|
| Sep 1999 |
|
|
|
|