StepRSI

StepRSI

The StepRSI or the Step Relative Strength Index oscillator is made of a classic RSI with 2 others lines that are calculated upon its variation, the “step RSI fast” and the “step RSI slow”. These 2 lines are changing their values by doing steps, if the RSI has made variations of the “StepSize” parameters. This indicator can be used in different ways : breakout of RSI zone made by the RSI step lines or just use it as a filter of the whipsaws of the original oscillator. This indicator has been converted from MT4 version.  

 

 

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. Polnet • 12/25/2016 #

    Gracias Nicolas, muy buen indicador

  2. rfsteve • 12/25/2016 #

    Nicolas what do you think of these modifications for 233 tick charts ?         cheers Steve.
    A=CCI[6](TOTALPRICE)
    B=TEMA[1000](A)
    C=(RSI[500](B)-50)*15
    StepSizeFast=6
    StepSizeSlow=12
    if barindex>C then
    RSIBuffer=C
    smax=RSIBuffer +2.0*StepSizeFast
    smin=RSIBuffer -2.0*StepSizeFast
    trend=trend[1]
    if (trend[1]<=0 and RSIBuffer>smax[1]) then
    trend=1
    endif
    if (trend[1]>=0 and RSIBuffer<smin[1]) then
    trend=-1
    endif
    if(trend>0) then
    if(smin<smin[1]) then
    smin=smin[1]
    endif
    result=smin+StepSizeFast
    endif
    if(trend<0) then
    if(smax>smax[1]) then
    smax=smax[1]
    endif
    result=smax-StepSizeFast
    endif
    FastBuffer = result
    smaxSlow=RSIBuffer +2.0*StepSizeSlow
    sminSlow=RSIBuffer -2.0*StepSizeSlow
    trendSlow=trendSlow[1]
    if (trendSlow[1]<=0 and RSIBuffer>smaxSlow[1]) then
    trendSlow=1
    endif
    if (trendSlow[1]>=0 and RSIBuffer<sminSlow[1]) then
    trendSlow=-1
    endif
    if(trendSlow>0) then
    if(sminSlow<sminSlow[1]) then
    sminSlow=sminSlow[1]
    endif
    result=sminSlow+StepSizeSlow
    endif
    if(trendSlow<0) then
    if(smaxSlow>smaxSlow[1]) then
    smaxSlow=smaxSlow[1]
    endif
    result=smaxSlow-StepSizeSlow
    endif
    SlowBuffer = result
    endif

    RETURN RSIBuffer,FastBuffer,SlowBuffer,0
     

    • Nicolas • 12/25/2016 #

      Thanks for this modification, I still do not have tested it, where did you get this idea to build a RSI from a long term period TEMA of a CCI? 

    • rfsteve • 12/25/2016 #

      Trial and error from study of indicators call it coding mad science was trying to find an indicator close to price pattern but with useful divergence still like most indicators not much good in strong trends as you will discover Nicolas.

  3. Maxime Baudin • 12/25/2016 #

    Nice! Thanks 🙂

avatar
Register or

Likes

avatar avatar avatar avatar avatar avatar avatar
Related users ' posts
dau710 Are the Bulls Blue & the Bears Red?
dau710 Many thanks :)
myhlo Super Nicolas !! Cet indicateur offre une nouvelle lecture du Rsi ! Ces bandes up & Dawn...
okiki please how can i acess the indicator i like it and want it please am new here
Nicolas download the itf file above and import it into your prorealtime platform: https://www.prorea...
XXXXVII Excellent indicateur ! Déterminer une tendance est devenu un jeu d'enfants ! Félicitation......
gregoire bonjour nicolas j ai cherché partout sur le net et impossible de trouvé ce que je recherch...
Nicolas Merci de poster une demande dans le forum des indicateurs, ainsi on pourra le coder dans ce ...
bala Hi Nicolas, I have been extensively researching for lot of answers here. I found that you...
Nicolas Don't apply it on price, use the main "indicator and trading system" button found on the top...
Bogdan35 Hello, Is there one for MT4?
Nicolas
7 years ago
Kosuda76 Thanks for your reply! But I do not really understand what the opposite of them the values ​...
AdriTrade Good job Louis!! How could do this for the Williams indicator? Thank you very much.
imorandin Hi!, Nice code. I'm tryng to port it to another language, but I don't understand this part:...
luxrun Thanks, bolsatrilera, for a very good and solid screener!
luxrun sorry... indicator!
Lily Rios Gracias por el indicador, tengo una pregunta necesito programar un screener de valores que e...
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
7 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
7 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!
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
7 years ago
Alai-n Thanks...
Bard Thanks for sharing this Verdi55. More instructions from Larry Williams website (and a fea...

Top