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
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
owes29 Hi is there anyway to develop this for the pro scanner on daily or hourly scans. so it woul...
Nicolas Of course, please add a query in the proscreener forum.
Bruno Carnazzi C'est dommage, cette histoire d'énergie fractale bousille complètement la précision de l'ind...
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
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
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 ...
zilliq The reasons why I think it's time consuming and we loose time to try to do backests and Auto...
filiprb Hello Zilliq, You don't need a system to produce a walk forward test. You can easily create...
Philip Raphael It is incredible! Thanks for sharing, Doctrading!
s00071609 Hi, could you please suggest, what this codes gives, lowest[b](rsi[a]) -- just trying to us...
Nicolas lowest[b](rsi[a]) returns the lowest values of the RSI of "a" periods, over the last "b" per...
s00071609 Hi, what would be the code to get the price for last bullish DTOSC cross over. I am looking ...
Nicolas RSI is an oscillator made for price centering. This strategy bet on mean reverting phenomena...
air Good start. Works decently during stock runaway bull market. I have tested it over 80 year p...
TheHovisTrader Hi - the way Larry trades it does not work - discovered that over 10 years ago! BUT If you ...
Glen Marquis I wonder how this fairs on 5 or 15 mins. Maybe 21 or 25 instead of 14 .
Doctrading Hello, you can test it. It's not my best strategy... but I think someone can improve it.
Investment Account Wow great thanks ... looks good! Do I set the colour shades up from within the indicator 's...
avatar
Anonymous Thanks for your comments and yes, that is exactly how I set up the colour levels.
Vish Thanks I have added this in my watch list. Has anyone tried it yet ? Does it work on currenc...
Nicolas Aucune immobilisation du capital. Quel est le drawdown du buy & hold ? Je ne l'ai pas ca...
jctrader ok pour le codage mais le choix "indice" n'est pas le bon : moins de 5%/an pour le meilleur ...
Thomas Hi Nicloas nice one i do understand :D im trying to put in MA200 as a criteria so it only go...

Top