Page 1 of 1
RSI Laguerre Indikator
Posted: 21 Apr 2014 17:59
by Lima
Hallo,
Gibt es schon den RSI Laguerre Indikator als Expresscode?
Hat Jemand ihn schon programiert?
Vielen Dank und Grüsse,
Lima
Re: RSI Laguerre Indikator
Posted: 22 Apr 2014 12:32
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
Re: RSI Laguerre Indikator
Posted: 05 Nov 2014 09:46
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
Re: RSI Laguerre Indikator
Posted: 11 Dec 2014 11:04
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