“Pure” Renko strategy

“Pure” Renko strategy

Hello everyone,  

Do you remember my work on the RENKO ?    

From this indicator, we will try a very simple strategy.

The simplest is the “PURE” Renko.

For the definition of the Renko, I refer you to other sites that explain it very well.

We go LONG if : we have 2 “bullish” Renko bricks in the same direction.

We go SHORT if : we have 2 “bearish” Renko bricks in the same direction.  

So we are constantly on the market. We are just following the trend.

Here is the result of the backtest, on the DAX : H1 graphs (no matter, because the important thing is the size of the Renko bricks), Renko size : 40 points, Spread: 1 point, test “tick by tick”.

As you can see, the strategy is profitable. Low success rate, compensated by some highly winning trades.

I think there’s plenty of way for improving this strategy idea, adding refined entry rules, a breakeven, a trend filter, and so on.

And one can test this strategy on the forex with other sizes of bricks.

Here is the code (very simple, but the indicator words well also) :

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. Nicolas • 08/22/2017 #

    Good job, but I think there is something wrong in the description since trade direction is changing with only 1 contrarian renko brick in your code.

  2. verdi55 • 08/22/2017 #

    Running a single Renko strategy with a fixed box size is usually not a good idea, because the results depend extremely on

    1. the box size, and 2. on the initial value of the first box.

    So, if Renko strategies should be useful, they must be used as statistical “grates”, that is, using many combinations of box sizes and initial positions of the first box at the same time. Then it is possible to get good results over the sum of all parameter sets, and purely accidental results are avoided.

    In principle, this holds for all “optimized” (curve-fitted) strategies as well, but in Renko charts there is the additional complication of the exact value of the first box that determines the behavior of all the rest.

    • Wilko • 08/22/2017 #

      Good point! For intraday strategies, could not the starting point problem be overcome by eg. always setting starting point to today’s official market open or yesterday’s official market close?

  3. Fabrizio_T • 08/22/2017 #

    Hi, have you tested on the period 30 julay – 30 September 2015?

  4. grzemariusz • 08/22/2017 #

    Hi I use your strategy but i don’t know how to implement position size to the code
    thanks for help

  5. nonetheless • 08/22/2017 #

    Hi, thanks for the introduction to Renko charts! I modified this slightly for the DJI – 13 box on a 5min chart, added a time frame for London and a $12 trailing stop. In the backtest it looks stellar – 75% wins, 2800% gain over 17 months – too good to be true! When I run it in demo it’s a different story, mostly losses. Any idea why there’s such a discrepancy between the backtest and the live action? Here’s the code:

    // Definition of code parameters
    DEFPARAM CumulateOrders = False // Cumulating positions deactivated
    // The system will cancel all pending orders and close all positions at 0:00. No new ones will be allowed until after the “FLATBEFORE” time.
    DEFPARAM FLATBEFORE = 143000
    // Cancel all pending orders and close all positions at the “FLATAFTER” time
    DEFPARAM FLATAFTER = 210000

    boxSize = 13

    once renkoMax = ROUND(close / boxSize) * boxSize
    once renkoMin = renkoMax – boxSize

    IF high > renkoMax + boxSize THEN
    WHILE high > renkoMax + boxSize
    renkoMax = renkoMax + boxSize
    renkoMin = renkoMin + boxSize
    WEND

    ELSIF low < renkoMin – boxSize THEN
    WHILE low < renkoMin – boxSize
    renkoMax = renkoMax – boxSize
    renkoMin = renkoMin – boxSize
    WEND
    ENDIF

    buy 1 CONTRACT at renkoMax + boxSize stop
    sellshort 1 CONTRACT at renkoMin – boxSize stop
    // Stops and targets
    SET STOP $TRAILING 12

    • Bard • 08/22/2017 #

      Because you’ve curve fitted the parameters. Try to look for a stable range of box size/trailing stop values.

      You can do this by dragging the optimised backytest results to the desktop and then drag the data into excel.
      Bring/drag the gain column over to the far right, select “gain” and “boxsize” (optimised parameter) and then use a scatter chart. If the values are scattered all over the place it’s unlikely to work but if you find a stable range of boxsize values that produce profits then it’s likely that the volatility/boxsize can be varied a little and still be profitable. Choose a mid value.

  6. Pinou De Rossi • 08/22/2017 #

    Bonjour.
    avez vous trouver une solution à ce code? merci

  7. Chetts • 08/22/2017 #

    Hi Guys – i cant seem to add any other indicators to my Renko charts other than MA’s ?? Can someone please assist me with this. Thanks Steve

    • Nicolas • 08/22/2017 #

      Yes, it is possible to add any indicators on a renko chart but with version 11 or ProRealTime. Next time, please use forums to ask questions about the platform, thanks.

  8. stratobast • 08/22/2017 #

    Good afternoon everyone.
    Thanks Doctrading for your work. I have an issue while using this code (as an indicator) to simulate renko bricks on candlestick chart. I don’t have the exact same behaviour between the renko chart and the renko indicator. The number of green or red bricks on a movement is the same in approximately half of the time. My two charts have the same timeframe (only a few ticks in order to be more precise on the building of the bricks) and the same number of units displayed. So I don’t understand why the two charts are not identical.
    Do you have an idea of what could explain the difference between true renko chart and renko indicator?
    Thank you for your help.

  9. stratobast • 08/22/2017 #

    My bad guys. I understood what was the problem. The indicator uses highs and lows for the Renko building. However, my Renko chart is built with closes. That explains the differences. The indicator give the same result as my chart replacing “high” and “low” by “close” in the code.

  10. samwarduk • 08/22/2017 #

    Has anyone tried this on Bitcoin GBP1?

    The results look amazing but every time mine tries to enter a trade it says insufficient funds with £10,000 in the account.
    Does anyone have any ideas?

    I am not sure if this strategy is taking a huge position?

avatar
Register or

Likes

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

+2 more likes

Related users ' posts
Nicolas
11 months ago
Maxime Baudin Well done Nicolas, creative!
Stenozar Hi Nicolas, please can you explain how to read/use this indicator? thanks!
FXtonio @RICOU en 1 minutes avec un filtre de tendance ZLSMA 200 et eventuellement un rsi 7 , 69% de...
JC_Bywan For people interested in the screener: https://www.prorealcode.com/topic/screener-buy-sell-m...
octum Gracias NJicolas. Las lineas 35 y 36 dan fallo. (¿Es adrede para iniciados?) Puedes co...
Nicolas Yes, Magic if the variable that contains the value of the line, you can test if it goes up o...
dadah1987 Bonjour Nicolas, merci pour cet indicateur. Utilisant pour l'instant la création simplifié p...
Nicolas Merci d'ouvrir un sujet sur le forum avec une description complète du système.
GustavoLoboOrenstein Is it possible to add histogram with only increasing bars?
Nicolas Je ne rencontre pas ce problème avec le NASDAQ par exemple, ce serait plus simple d'ouvrir u...
YvesRobert Bonjour Nicolas, en effet ca marche, je me suis trompé, j'ai bien tout le tracé. C'est parce...
oliTR Bonjour, les conditions longCond et shortCond ne contiennent-elles pas une condition qui s'a...
JohnScher Short variant, see at https://www.prorealcode.com/topic/late-lunch-trade-dax40-strategy/
DANY Hi JohnScher, Thanks a lot for your contribution. Consider this release to avoid overfit...
JohnScher Thank you so much for exploring the Late Lunch Strategy. For discussion and in answer to yo...
BenJuice JohnScher, merci de partager ta stratégie. Je suis nouveau dans ce domaine, sur ton code q...
JohnScher As a percentage of the price, here 2%. StopLoss as well as TargetProfit. SL and TP come ...
Wilko I absolutely love the simplicity of this mean-reversion strategy. Well done!
Patrice210 bonjour STANKO, effectivement la première ligne apparait en anomalie et je ne comprend pas v...
KumoNoJuzza Hi guys, Thanks @Stanko and everyone for your contributions. I have been playing around ...
Stanko Hi KumoNoJuzza, thanks for the post. I also tried your code with Dax and the performance is ...
snucke i dont think you understod the question. i did not ask about the band pass indicator. i as...
thomas2004ch Hi, Is this startegy suitable for daily SPY? Regards
ebous64 Je cherche à traiter des effets de bords avec un encadrement ajustable des variables. Vous a...
Jiacky
2 years ago
Kalman Filter
Kalman Filter
0
Indicators
JohnScher Postscript: It's running in the live right now. One position after the other is opened. ...
ullle73 nice!! how's it been since your last post on going live? :)
thomas2004ch Hi, Is this strategy suitable for daily SPY? Regards
AndPar Buongiorno Nicolas, vorrei provare questo indicatore, ma quando lo inserisco in PRT mi vengo...
Nicolas Basta aggiungerlo al prezzo https://www.prorealcode.com/blog/video-tutorials/how-to-add-an-i...
Aragorna hello Nicolas, this indicator works with the last Beta version of PRT? Ive seen tha many in...
wally Hola soy nuevo en el mudo robots. Alguien seria tan amable de poner el archivo itf.file ya q...
Darren Nash I found this works well on the DOW
thomas2004ch Hi John, Is your strategy suitable for daily SPY? Regards
KAMJKAZE thanks, really interesting!
2c95 thanks, why do U prefer average than lowest ? to close under average does'nt mean another...
Stenozar Hi Sever, how can I visualize the coloured areas?
Sever Hi Stenozar, You need to add the color zones yourself , just go to Add Color Zone To set ...
atlante hi nicolas this indicator have 2 wrong borderline and islalastbarupdate. thank you can you h...
Nicolas That'"s because you are not using PRT v11? Just remove lines 59 to 62
Kanamax Hi Roberto, sorry for my confusing previous posts (forget them). My request is very simple,...
robertogozzi Please start a new topic in ProOrder support.
robertogozzi There you go: myMagicTrend = CALL “Magic Trend custom”[20, 14, 1, 5] alpha = 105 b = 0...
johann8 exactly :) Thank you all for the help!
max_92 Ciao Roberto, ho scaricato l'indicatore e come ti avevano già scritto sopra anch'io vedo la ...

Top