Reversal point indicator

v10.3
Reversal point indicator

This indicator finds and displays the potential bullish and bearish turning points using different parameters:

LONG SIGNALS
1. Red/Green candle (reversal)
2. Bullish candle close above the open of the previous red candle
3. Space to the left (the low of the last 3 candles lower than the low of the last 50 candles)
4. default stochastic (8,3,3) was in the oversold area within the last 3 candles

SHORT SIGNALS
1. Green/Red candle (reversal)
2. Bearish candle close below the close of the previous green candle
3. Space to the left (the high of the last 3 candles higher than the high of the last 50 candles)
4. default stochastic (8,3,3) was in the overbought area within the last 3 candles

Indicator coded by a request in the 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. Francesco78 • 04/09/2017 #

    Thank you, very interesting, work well on Italy 40 with 30m TF

  2. Stenozar • 04/09/2017 #

     Buonasera Nicolas, l’indicatore va inserito sul prezzo? ho provato ma il grafico mi viene schiacciato, non capisco perchè.
    Grazie
     

    • Nicolas • 04/09/2017 #

      Replace the last line with “RETURN” only. 

  3. Francesco78 • 04/09/2017 #

    Hi Nicolas, would it be possible to show the indicator as a series of 1 and -1 to be used as a external indicator, not one to be added on the chart, in order to make the backtest easier?
     

  4. Francesco78 • 04/09/2017 #

    I actually sorted it out
    golong = longgoshort = short*-1return golong as “LONG”,goshort as “SHORT”,0

    • Juzz Me • 04/09/2017 #

      Hey Francesco, this indicator is getting way too little praise – I find it extremely useful and effective. Would love to backtest it, but I can’t really figure out what exactly you changed in the code. Mind to enlighten me? Thanks!!

  5. diegofe_2000 • 04/09/2017 #

    gracias , muy bueno

  6. iramirez55 • 04/09/2017 #

    Bonjour, excusez mon français. Est-il possible de mettre les résultats des stratégies dans Excel? Comment vous pouvez combiner plusieurs stratégies pour l’ensemble des résultats?Merci a tous.
    Hello, sorry for my English. Is there a way to put the results of the strategies in Excel? How can you combine several strategies to see overall results?Thank you

    • Nicolas • 04/09/2017 #

      Please ask general purposes questions on forums. Thanks. 

  7. Sandrine • 04/09/2017 #

    Bonsoir Nicolas,
    Je vais sans doute poser une tien un peu bête, mais serait-il possible d’avoir ce code mais pour MT4, bien que ce soit un site pour PRT ?!

    • Nicolas • 04/09/2017 #

      Si il s’agit d’une demande privée pourquoi pas, mais il faudrait passer par le service programmation: https://www.prorealcode.com/trading-programming-services/

  8. simone • 04/09/2017 #

    i try that indicator Nicolas..give me some days for see how it work

  9. ericbesoramolins • 04/09/2017 #

    No sé lo que hago mal . si en la ultima linea solo dejo “return” no funciona y si lo pongo tal qual me altera la escala. me ayudas nicolas? gracias 

    • Nicolas • 04/09/2017 #

      En la configuración de precios, use la escala automática del eje vertical para usar sólo el precio.

  10. puabai99 • 04/09/2017 #

    Hello can anyone help me turn this into mt4 code? Please. I don’t know anything about coding.

    • Nicolas • 04/09/2017 #

      This website is dedicated to Prorealtime programming. However, you can ask for personalized codes at the programming services : https://www.prorealcode.com/trading-programming-services/

  11. JohnScher • 04/09/2017 #

    Hello Nicolas.
    Good Work!
    Where can i find a basic code to trade divergences?

    • Nicolas • 04/09/2017 #

      There are many divergences indicators on the website already, please make a quick search with the website search engine. Thank you.

  12. elanoa • 04/09/2017 #

    Buonasera sig. Nicolas. Complimenti per la sua competenza. Potrebbe darmi qualche suggerimento su alcuni codici che non riesco a far funzionare in piattaforma? Grazie.

  13. Bard • 04/09/2017 #

    This works well. But it works even better if you use the Ehler’s Mesa (Cycle) Period Finder! https://www.prorealcode.com/topic/ehlers-sinewave-indicator/

  14. Bard • 04/09/2017 #

    Here’s a screenshot of the difference between the standard indicator with default settings and an indicator that has Ehler’s Universal Oscillator replacing the standard Oscillator and uses Ehler’s MESA Period to determine the cycle period. The S&P500 period was found at 32 bars and I used an average of 25 bar cycles.

    The modified indicator seems to take less false short signals while picking up a few more longs. My arrows are dark green and orange.

    The only thing that isn’t working is the variable settings window control of the Oscillator bandedge values, that has to be set manually within the code and not from the settings window. Not sure why? If anyone had any ideas that’d be appreciated.
    I’m not a coder so please let me know if it’s not coded correctly. Cheers.

    https://www.dropbox.com/s/ardrak2xsg5ehrv/Reversalpointunivosc.png?dl=0

    (Neither Firefox or Chrome is adding the code here).

    //PRC_Reversal point indicator | indicator
    //09.04.2017
    //Nicolas @ http://www.prorealcode.com
    //Sharing ProRealTime knowledge
    //https://www.prorealcode.com/topic/need-help-coding-the-following-reversal-indicator/

    //LowestLow = 50 — Use Mesa Period
    //HighestHigh = 50

    // DrawText
    offset1 = 17 * pipsize //150 Dow
    //offset2 = offset1 * 4 // Default = 4

    //Bandedge = 25

    UnivOsc = MyUnivOsc

    MyUnivOsc, ignored = Call “Ehler’s Univ Osc SuperSmoother”[25]

    // LONG
    //Red/Green candle (reversal)
    //Bullish candle close above the open of the previous red candle
    //Space to the left (the low of the last 3 candles lower than the low of the last 50 candles)
    //default stochastic (8,3,3) was in the oversold area within the last 3 candles

    c1 = close[1]open
    c2 = close>open[1] //default >
    c3 = lowest[3](low)<lowest[LowestLow](low)[1] or lowest[3](low)<lowest[LowestLow](low)[2] or lowest[3](low)<lowest[LowestLow](low)[3]
    c4 = summation[3](UnivOsc0
    long = c1 and c2 and c3 and c4

    if long then
    drawarrowup(barindex,lowest[3](low)-offset1) coloured(51,102,0) //=dark green //default (0,255,0)
    endif

    // SHORT
    //Green/Red candle (reversal)
    //Bearish candle close below the close of the previous green candle
    //Space to the left (the high of the last 3 candles higher than the high of the last 50 candles)
    //default stochastic (8,3,3) was in the overbought area within the last 3 candles.

    c5 = close[1]>open[1] and close<open
    c6 = close<open[1] //default highest[HighestHigh](high)[1] or highest[3](high)>highest[HighestHigh](high)[2] or highest[3](high)>highest[HighestHigh](high)[3]
    c8 = summation[3](UnivOsc>0.9)>0
    short = c5 and c6 and c7 and c8

    if short then
    drawarrowdown(barindex,highest[3](high)+offset1) coloured(255,153,0) //=orange //default (255,0,0)
    endif

    return long as “Long Reversal”, short as “Short Reversal”

  15. Bard • 04/09/2017 #

    Can anyone figure out how to automate it using assisted creation? I tried this — pls see image:

    https://www.dropbox.com/s/4lw5j7miwv2sm4f/reversalassitedcreation.png?dl=0

    but it won’t take trades at the position of the arrows. (Takes no trades). Cheers!

    • Nicolas • 04/09/2017 #

      Arrows are plotted in the past afterwards.

  16. Bard • 04/09/2017 #

    Thanks Nicolas, does it repaint like the Belkhayate indicator?

    • Nicolas • 04/09/2017 #

      Sorry I replied too fast. The arrows are painted on the current bar (and not afterward!!), but at the highest or lowest price of the last 3 bars. If you want the arrows to be plotted at Close: drawarrowdown(barindex,close) coloured(255,0,0)

  17. Bard • 04/09/2017 #

    No worries!

    What I meant is when I create an assisted ProBacktest it won’t take any trades if I set Buy to:
    When Price, (or high, or close) = Reversal Point Indic (25 25 20), Buy 10 per point.

    I had also tried:
    When Reversal Point Indic (25 25 20), = Reversal Point Indic (25 25 20), Buy 10 per point… but of course it just buys every single bar regardless of where the drawarrowup and drawarrowdown arrows are on the chart.

    So if I want to get it to buy (and sell) at the exact points where those drawarrowup and drawarrowdown markers are on the price chart how do I set the conditions in assisted creation?
    (I did try your suggestion aswell and used barindex,close, but it takes no trades).

    Cheers,

  18. Gigi • 04/09/2017 #

    Bonsoir, y a t il un screener pour cet indicateur?

  19. makhlaghi • 04/09/2017 #

    Is this for AmiBroker? I got some errors!!!

    • Nicolas • 04/09/2017 #

      Sorry no! all codes on our website is to be used with ProRealTime trading platform: https://www.prorealtime.com

  20. wtangsiri • 04/09/2017 #

    Bonjour
    J’ai importé le fichier ITF en question, mais cela me donne, en bas de l’écran, un indicateur et non pas une indication sur la bougie de prix
    Que dois je modifier ?
    Merci pour réponse

    • Nicolas • 04/09/2017 #

      Il faut ajouter l’indicateur sur le graphique du prix.

  21. skuggan89 • 04/09/2017 #

    This is a great indicator, works very well!! Is there any algo based on this indicator that can take trades according to the signals?

avatar
Register or

Likes

avatar avatar avatar avatar avatar avatar avatar avatar avatar avatar avatar avatar avatar avatar avatar avatar

+16 more likes

Related users ' posts
TAC Bolsa This indicator give trading signals depending of the crosses of overbought and oversold area...
Juanjo Hola. El indicador es válido para acciones en periodo diario? Gracias
TAC Bolsa Hola Juanjo la información del indicador y otros la puede encontrar en el BLog. https://w...
TempusFugit Masala, thanks for your contribution. I don´t like the offmarket spreads neither ;) I unders...
Uveus Tempus, me da un error al validar el codigo, sobre la variable N. Al crear el indicador me ...
TempusFugit Hi Uveus, I am guessing you inserted the code of the indicator into the system code, is ...
gblast I added this indicator to my pro real time but its not showing up on my candles. Its invisible
Steven Bahia Hi Nicolas - great indicator - is there a way to place a alert when the Oscillator crosses ...
Nicolas Alerts can't be programmed, you have to set them yourself with the Alert tool of the platfor...
Steven Bahia just to add to this would there be a way to establish a entry price from the Oscillator
leonz007 Hi Despair, dont know why after import and add your indicator, it does not go on to the pric...
Nicolas Apply it on the price chart with the wrench at the left upper side of the price chart.
Sydneyhom Hi Despair Thanks for writing the code and for generously making it available to the public...
JR1976 Dear Mike , your screener seem interest and simple... Do you try to envelope an automat...
Player Hi Mike, What is the name of the indicator just under the MMA ? Thanks Regards Marc
Igor Hi Mike, What is the name of the indicator just under the MMA ? Thanks Regards
alex Im looking for a entry when EpicMA crosses over/under trigger. Then look for exits when Epic...
haseluis Hello, who can help me why the screener does not work // Der folgende Code bezieht sich auf...
Nicolas Hello, please ask your question with a new forum topic, this is not the place to ask for sup...
Pier
8 years ago
Cris48  Nice Pier, I put inside also the adx .... //settings//b=20 if low < low[1] thenllv = (...
parthdesai11 Indicator not working in Beta Version 11.1 , Any idea ??
Nicolas What is the issue with version 11 and this indicator please?
Wing There's a few threads on the forum about backtest and live trades being different at times. ...
ET I agree with verdi55. As it is now, the code will only test for a breakout on the upside (li...
Philipjonasson are u still active Wing?
Francesco78 Hi Pepmartorell, please let's continue the discussion on the forum thread so that we can sha...
Francesco78 Hi Pepmartorell, please let's continue the discussion on the forum thread so that we can sha...
Jusmih1 Hi there, i am looking at your Strategy however when you put in automatic trading mode its ...
majid52026 Hi I want MBXF Timing for mq5 Does anyone have this indicator???
dertopen Hi Nicolas good work for the code translation when i chek the mbfx system site i see in t...
Nicolas Yes, just change the color by yourself in the indicator settings window.
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 -:)
Regan2020 Hi, has anybody update the above code to enable on a 15m or 5m TF?
gigi64 ik heb de code op mijn pro realtime gezet , en bij indicator staat hij erbij maar komt niet ...
gigi64 I have put the code on my pro realtime, and it is on the indicator, but it does not appear o...
wtangsiri Bonsoir Qu'appelez vous l'axe vertical et comment le définir ? Merci pour votre aide.
rafadonl2 Pardonnez-moi mais je ne sais pas ce que vous entendez par "axe vertical". Serait-ce la lig...
rafadonl2 Je viens de voir ce que vous voulez dire. Comme pour tout autre indicateur, vous devez défin...
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
Etienne Hi, I'm quite late in this thread. I'd just like to propose an enhancement because this in...
Nicolas Thanks Etienne.
Bard Hi Nicolas, I wanted to make this scaled indicator above between -1 and +1 instead of 0 to +...
Madrosat Bonjour Nicolas Je souhaiterais faire colorier le fond du graphique supérieur en vert lorsq...
Nicolas Merci d'ouvrir un sujet dans le forum approprié.
Nwab Hello Mr Nicolas.. Please how can I set this up as an indicator to work on mt5. Your guidan...

Top