Renko Robot
Forums › ProRealTime English forum › General trading discussions › Renko Robot
- This topic has 3 replies, 2 voices, and was last updated 4 years ago by GraHal.
-
-
11/17/2020 at 8:59 PM #150828
Hi,
I’m new here. Currently trialling the platform. I have developed a rather simple trading system based on Renko charts and would like to automate that. I noticed that the strategy builder does not allow you to use Renko charts to build a system with the easy buy and sell signal generator, like when you set an alarm. However, I do see people trading automated Renko systems here. So, I assume that when you code the robot directly into ProRealCode then it is possible to create an automated strategy that can run on a server and generate unimaginable amounts of money. Am I correct in that assumption?
Thanks, Youp
11/17/2020 at 9:42 PM #150837Am I correct in that assumption?
Yes you are correct, but maybe not about … generate unimaginable amounts of money!!?? 🙂 🙂
1 user thanked author for this post.
11/17/2020 at 10:07 PM #15084211/17/2020 at 10:21 PM #150844Try running the Renko Algo below and you will know and gain experience setting an Algo running.
12345678910111213141516171819202122Defparam cumulateorders = falseboxSize = 40once renkoMax = ROUND(close / boxSize) * boxSizeonce renkoMin = renkoMax - boxSizeIF high > renkoMax + boxSize THENWHILE high > renkoMax + boxSizerenkoMax = renkoMax + boxSizerenkoMin = renkoMin + boxSizeWENDELSIF low < renkoMin - boxSize THENWHILE low < renkoMin - boxSizerenkoMax = renkoMax - boxSizerenkoMin = renkoMin - boxSizeWENDENDIFbuy at renkoMax + boxSize stopsellshort at renkoMin - boxSize stop -
AuthorPosts