RSI Laguerre Indikator

Post Reply
Lima
Posts: 26
Joined: 17 Apr 2014 18:15

RSI Laguerre Indikator

Post by Lima »

Hallo,

Gibt es schon den RSI Laguerre Indikator als Expresscode?

Hat Jemand ihn schon programiert?

Vielen Dank und Grüsse,

Lima
stargate
Posts: 21
Joined: 18 Dec 2013 15:42

Re: RSI Laguerre Indikator

Post by stargate »

RSI Laguere par Jhon Ehlers
Codé en Easylanguage
Facilement transposable en Express

Input: Dampen(.5);
Var: L0(0), L1(0), L2(0), L3(0), CU(0), CD(0), RSI(0);

L0=(1-Dampen)*Close+Dampen*L0[1];
L1=-Dampen*L0+L0[1]+Dampen*L1[1];
L2=-Dampen*L1+L1[1]+Dampen*L2[1];
L3=-Dampen*L2+L2[1]+Dampen*L3[1];
CU=0; CD=0;
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 RSI=CU/(CU+CD);
Plot1(RSI,"RSI",Blue); Plot2(.8,"UpperLine",yellow); Plot3(.2,"LowerLine",yellow);

Cordialement

Bernard
User avatar
WHS Support
Posts: 2443
Joined: 14 Feb 2013 10:27

Re: RSI Laguerre Indikator

Post by WHS Support »

Hello Bernard,

thank you for posting the Code. We have translated it in Express - please find it attached.

How to use it?
Upload the express indicator in the Express folder*, refresh the workspace bar.

* Depending on your version of Windows, the Express folder is located at:
My Documents\WHS FutureStation Nano\Express
or
C:\Program Files\Fipertec\WHS FutureStation Nano\Express

Have fun!

Best regards,
Timo
WH SelfInvest
You do not have the required permissions to view the files attached to this post.
User avatar
WHS Support
Posts: 2443
Joined: 14 Feb 2013 10:27

Re: RSI Laguerre Indikator

Post by WHS Support »

Dear Trader,

due to the popularity of this tool we have decided to directly integrate it in the WHS FutureStation Nano trading platform. In order to use it just choose the instrument you wish to trade and open "Template Studies" > "WHS Proposals":
1.jpg
You can also find them on our website with a short description in your own language:
3.jpg
We thank you for your input and ideas.

Kind regards,
WH SelfInvest
You do not have the required permissions to view the files attached to this post.
Post Reply

Return to “WHS NANOTRADER - EXPRESS PROGRAMMING”