Hallo,
Gibt es schon den RSI Laguerre Indikator als Expresscode?
Hat Jemand ihn schon programiert?
Vielen Dank und Grüsse,
Lima
RSI Laguerre Indikator
Re: RSI Laguerre Indikator
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
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
- WHS Support
- Posts: 2443
- Joined: 14 Feb 2013 10:27
Re: RSI Laguerre Indikator
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
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.
- WHS Support
- Posts: 2443
- Joined: 14 Feb 2013 10:27
Re: RSI Laguerre Indikator
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":
You can also find them on our website with a short description in your own language:
We thank you for your input and ideas.
Kind regards,
WH SelfInvest
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":
You can also find them on our website with a short description in your own language:
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.