RSI Laguerre self adjusting gamma with Fractals Energy

v10.3
RSI Laguerre self adjusting gamma with Fractals Energy

The Laguerre RSI technical indicator is a trend indicator based on a Laguerre filter.

The Laguerre indicator plots the weighted price trend line in a different window in the price graph window.

The Laguerre RSI indicator plots the weighted RSI indicator value filtered with a Laguerre filter. The gamma sensibility of the Laguerre filter is self adjusted with the “fractals energy” as the original author describes it.
This “energy” is the curve of yellow color, while the Laguerre RSI adjusted with this energy is the blue one.

Indicator translated from TOS code, requested on English forum.

 

Share this

Risk disclosure:

No information on this site is investment advice or a solicitation to buy or sell any financial instrument. Past performance is not indicative of future results. Trading may expose you to risk of loss greater than your deposits and is only suitable for experienced investors who have sufficient financial means to bear such risk.

ProRealTime ITF files and other attachments : How to import ITF files into ProRealTime platform?

PRC is also on YouTube, subscribe to our channel for exclusive content and tutorials

  1. Nicky9529 • 03/26/2017 #

    Merci Nicolas pour cet indicateur,
    Comme pour le RSI, J’aimerais pouvoir ajouter deux lignes max/min pour le gamma (basées sur l’historique des valeurs) afin de déterminer si l’on est en phase de trend exhaustion/range exhaustion. Comment faire?
    Nicolas
     

    • Nicolas • 03/26/2017 #

      C’est à dire ? Une détection des derniers plus haut et plus bas du gamma ? (la ligne jaune).

    • Nicky9529 • 03/26/2017 #

      Si l’indicateur n’est pas normé (ou atteint rarement les limites), il faudrait deux lignes de séparation qui détermineraient, sur les n derniers mois,  les 10 % des valeurs les plus élevés et plus basses afin de détecter automatiquement ensuite les configurations “le ressort va bientôt se détendre”/”le mouvement s’essouffle”. Une sorte de canal du gamma mais dont les limites horizontales dépendent de l’historique des valeurs.

    • Nicolas • 03/26/2017 #

      Pour cela, il suffit d’intercaler ces lignes de codes à la ligne 18 (sous le calcul de gamma):
      hh=highest[gammaP](gamma)*0.9
      ll=lowest[gammaP](gamma)*1.1
      et de remplacer la ligne 54 (RETURN) avec celle-ci :
      RETURN gamma coloured(200,200,0) as \"gamma\", lagRSI coloured(0,128,255) style(line,2) as \"Laguerre RSI self adjusting\", 0.2 style(dottedline,1) as \"oversold level\", 0.8 style(dottedline,1) as \"overbought level\", hh, ll
      J’ai introduit la variable “gammaP” qui permet de modifier à convenance le retour en arrière pour déterminer les résidus de la distribution du gamma entre les bornes hautes et basses de ce calcul. Il faudra donc bien entendu ajouter cette variable en externe pour la faire varier à convenance. Bon amusement 🙂
       

    • Nicky9529 • 03/26/2017 #

      Mais j’y compte bien! Merci beaucoup Nicolas pour la solution.

  2. triss1965@gmail.com • 03/26/2017 #

    Hi Nicolas, why cant the codes copy and past in to prorealttime. I want to try, but I have no time to write the updates that done by others. I think that would be positive for everyone.
     
    Regars
    Eva

    • Nicolas • 03/26/2017 #

      Sorry I don’t understand? You can easily import any file of the library by downloading itf files and click import in prorealtime indicators list. 

  3. Fabio Anthony Terrenzio • 03/26/2017 #

    How can I trade with this “Yellow Energy”?

  4. owes29 • 03/26/2017 #

    Do a Youtube search for “Revolutionary Indicators Reveal Tops & Bottoms” it explains a very similar indicator, I’m not sure if I am allowed to post videos to the forum

  5. owes29 • 03/26/2017 #

    Hi
    is there anyway to develop this for the pro scanner on daily or hourly scans. so it would create an alert just before the signals are met.
    kind regards
    Lee

    • Nicolas • 03/26/2017 #

      Of course, please add a query in the proscreener forum.

  6. Bruno Carnazzi • 03/26/2017 #

    C’est dommage, cette histoire d’énergie fractale bousille complètement la précision de l’indicateur original :

    if barindex > 0 then
    L0 = (1 – gamma) * close + gamma * L0[1]
    L1 = -gamma * L0 + L0[1] + gamma * L1[1]
    L2 = -gamma * L1 + L1[1] + gamma * L2[1]
    L3 = -gamma * L2 + L2[1] + gamma * L3[1]

    if L0 >= L1 then
    CU1 = L0 – L1
    CD1 = 0
    else
    CD1 = L1 – L0
    CU1 = 0
    endif

    if L1 >= L2 then
    CU2 = CU1 + L1 – L2
    CD2 = CD1
    else
    CD2 = CD1 + L2 – L1
    CU2 = CU1
    endif

    if L2 >= L3 then
    CU = CU2 + L2 – L3
    CD = CD2
    else
    CU = CU2
    CD = CD2 + L3 – L2
    endif

    if CU + CD 0 then
    lagRSI = CU / (CU + CD)
    else
    lagRSI = 0
    endif
    endif

    RETURN lagRSI as “LR”

avatar
Register or

Likes

avatar avatar avatar avatar avatar avatar avatar avatar avatar avatar
Related users ' posts
Bebbo Grazie del prezioso contributo Nicolas, scusa la mia inesperienza, sono alle prime armi e s...
Nicolas To avoid recalculation, you should use the one from this post.
Bebbo Ok Grazie Nicolas.
bolsatrilera
6 years ago
jissey Bonjour Bolsatrilera, je trouve le cm rsi interessant, merci de l'avoir mis à disposition ! ...
bolsatrilera bonjour jissey, je n'ai aucune information sur ce que tu dis, je suis désolé.
ALE Hi the color is given by a numerical value derived from the oscillator in use. If you comp...
efahmy Thanks mate
Jo-01-R Hello, it is possible to have this indicator but instead of colors rather have numbers rangi...
Nicolas
6 years ago
enricot Scusa nn riesco.
SoloContado If you smooth the signal using a "summation" function, you get a nice "crossing of 0" graph....
ShaunG Greatly appreciated Nicolas!
Simba Greetings from germany! :) Can you told me your EXIT-strategy for this, please? :) Would ...
Etienne Hi, thanks for proving this code. I would like to contribute by adding a computation speed...
Etienne //Compute Super Smoother coefficients once if barindex = 1 then a1 = exp( -1.414 * 3.14159...
Nicolas Thanks a lot!
ak5hay2 Works like crazy on bitcoin. Use different timeframes. Thanks a lot Doc!!!
richyowen Hi, great code thanks. Very new to this forum. Is there a way to add a 100point target on an...
lisamitch50 Morning all, Just backtested on quite a few instruments, worked well on backtesting, but tel...
Matriciel
6 years ago
Alai-n Thanks...
Bard Thanks for sharing this Verdi55. More instructions from Larry Williams website (and a fea...
Nicolas
6 years ago
Nicolas Merci, faire une demande dans le forum approprié.
Pere Thanks for this good indicator Nicolas. I would like to make the upper and lower limits mor...
Nicolas because fractals are known 2 bars later! that's why I used rectangle to plot them in the past.
Nicolas
6 years ago
Jurik RSX
v10.3
Jurik RSX
3
Indicators
hartgeld Hallo Nicolas, ein sehr guter Indikator, vielen Dank! Leider rechnet er bei mir nicht die Pe...
rigel Hi Nicolas, have you coded the Jurik alone (as Mov. average)?
Nicolas 2 versions available in this indicator: https://www.prorealcode.com/prorealtime-indicators/a...
AG1 Thanks Nicolas Still a problem in line 29 Please take a look. thanks again Alex
Nicolas code is modified in the above post, use that one.
AG1 Still a problem in line 29 Please take a look. thanks again Alex
styrke Hello Nicolas, Nice screener, I appreciate the way you always try to condense at maximum th...
Nicolas There's no particular reason. RSI is widely use with its default period and results seems re...
MaoRai54 Hi, first of all Happy New Year. Well, I've inserted your indicator in DAX 1h but I cann...
Vinks_o_7 Hi Mao Happy New Year ! This is just an improved RSI where you plot a standard price momen...
Angel Perez Ciao Francesco. First of all thanks for the indicator and also fro the screener. I do have a...
PSIDIO Ciao to you all, I also have a question and would be very happy for a helpful comment. I a...
SpreadBetMH Hi there, I have V11.1. I get the Indicator but no Arrows on the price. Kind Regards...
Alai-n Ciao Francesco, sei ancora in giro?
Metodi97 This indicator is great but can someone create strategy based on the same indicator it will ...
Nicolas
6 years ago
TradeNavigator RSI
TradeNavigator RSI
10
Indicators
Nicolas Tutte le impostazioni che hanno la parola "period" sono quelle dedicate ai periodi di cambio...
GianfrancoCeck Le chiedo una ultima cosa, ossia se è possibile personalizzare l'indicatore con una scritta ...
Nicolas Spiacente che non sia possibile, le coordinate grafiche non sono in pixel ma nel prezzo e ne...

Top