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 avatar
Related users ' posts
ALE
8 years ago
CSR strategy DAX 1 D
CSR strategy DAX 1 D
17
Strategies
Jesper I tried it on dax 1D and I did not get any trades. Shifted to 10H and it started working. Wo...
rgrgrgr I have the same problem
avatar
crazytrader Is this working?
Maz
8 years ago
Francesco78 very nice, thanks!
Wilko Interesting! Thanks for sharing!
BjornH Extremely nice, thanks!
finplus Thanks for the job. Which variables do you suggest for timeframe 1 hour? 
Maz Depends massively on your market and the volatility. I suggest using the variable optimizer ...
1Randy This a great momentum filter! I would like to see volume momentum incorporated into the indi...
Nicolas All conditions under parenthesis for the c1 to c4 conditions should be inverted. 
tomus Can you give an example of the overbought codes please? Thanks.
ams123 Frank Merci Nicholas -:)
Djo Not working on V11. The RSI doesn't appear on the chart.
Mika83 Bonjour, J'ai des soucis de lecture de syntaxe avec la variable "drawsegment" sur la versio...
seb234 Salut Mika, j'ai la version V11.1, la formule fonctionne. Mais il est préférable, dixit Nico...
bolsatonimora2 Hi, nice indicator, it´s possible to include a middle line with 50 value? ty!
gabri Hi, EMA26 approximate almost exactly the 50% line
Alain Wilder MA is exactly the 50% line
Samitha Prasanna Hi ALE, would you be able to provide the values for the below part of the code (time >=1...
Player Bonjour, J'ai testé cette stratégie sur EurUSD en 1 heures sur 10000 unités et le résultat ...
Player Vue du rapport du Backtest https://ibb.co/8BMrBz6
gregus bonjour a tous quelqu un pourait il recodé en prt il sagit  du dynamique zone ma, je n arri...
Nicolas Merci de faire une requête spécifique sur le forum. 
Nicolas
8 years ago
StepRSI
StepRSI
5
Indicators
Nicolas Thanks for this modification, I still do not have tested it, where did you get this idea to ...
rfsteve Trial and error from study of indicators call it coding mad science was trying to find an in...
Maxime Baudin Nice! Thanks :)
Nicolas
8 years ago
GraHal Forked code I mention above is here ... GraHal wrote: So below is the PRC Stochastic RSI v...
GraHal Try again (quite limited what you can do as Comments in the Library) https://www.prorealco...
AutoFlanders Thanks GraHal, that's what i was looking for
dakaodo Hi, Wilko. Acc to the original FRAMA paper by Ehlers, Ehler's own code only takes inputs for...
dakaodo For reference, here is Ehlers' original paper: http://www.mesasoftware.com/papers/FRAMA.p...
dakaodo Here is the code with only SC included, per ETFHQ. pri=customclose //len>=4, even on...
Nicolas I don't know really, just like you I found a lot of different formulas there and there on th...
CarlosFC  Thanks a lot Nicolas. I posted it. Carlos.
besho hello Nicolas how can i get this indicator i tried copy and paste the code but i didn't...
Nicolas
8 years ago
haseluis Hello Niklas, I would like to use the screener for the display in the m15, which changes to ...
Nicolas Nothing to change or you can play with different settings at lines 6 and 7.
haseluis Thank you Niklas, I'm still looking for an indicator 123 or direct to Joe Ross, can you help...
Dimi.A Awesome mate.
mora87 Hi David and Nicola, I'd like to share idea with you guys which is related to David's Idea. ...
Nicolas Please ask for custom coding in forums instead.
jeanphi0034 Hello, I would like to use the QQE indicator which is based on smooth RSI as far as I unders...
ilstefano Bonjour Nicolas, te serait il possible de rajouter la fast ATR manquante dans le code? Merci
Nicolas Désolé je ne comprends pas la question ?
rpreviteri Hi Nicolas, thanks a  loto for sharing your knowliedge, Wasn't the original momentum pinball...
air Thank you!  
elanoa Buonasera sig. Nicolas......sarebbe possibile far in modo che quando l'indicatore raggiunga ...
Nicolas
9 years ago
Nicolas add it on price chart, change the cp parameter according to the period you want to observe f...
Robert22 hola buenos días: yo estoy buscando una cosa parecida para realizar con ello un indicador de...
Nicolas https://www.prorealcode.com/prorealtime-indicators/rsi-classical-hidden-divergences-indicator/

Top