In true TradingView spirit, the author of this script has published it open-source, so traders can understand and verify it. Cheers to the author! You may use it for free, but reuse of this code in a publication is governed by House Rules. You can favorite it to use it on a chart.
Kommentare
Notice the following:
- rising does not return the expected the results, it seems attached to something other than renko
- rising in increments of two, seems to do better looking at 2017-09-15
- however, look at rising on 2017-09-18 - it is completely messed up
Trading View, can you please look into this, here is my expected results:
- 2017-09-17 15:30:00 => rising(close, 1) == false and falling(close, 2) == true and falling(close, 3) == false
- 2017-09-17 23:45:00 => rising(close, 1) == true and rising(close, 2) == false
- 2017-09-18 08:45:00 => rising(close, 2) == true and rising(close, 3) == false
- 2017-09-18 13:15:00 => rising(close, 3) == true and rising(close, 4) == false
- 2017-09-18 14:45:00 => rising(close, 4) == true and rising(close, 5) == false
- 2017-09-18 20:00:00 => rising(close, 5) == true and rising(close, 6) == false
- 2017-09-19 05:45:00 => rising(close, 6) == true and rising(close, 7) == false
- 2017-09-19 12:30:00 => rising(close, 1) == false and falling(close, 1) == true and falling(close, 2) == false