TradingView
RicardoSantos
22 Mei 2015 pukul 08.54

[RS]Renko ZigZag V0 

Euro Fx/U.S. DollarFXCM

Deskripsi

Renko based zigzag:
  • mode: can be Traditional or ATR.
  • modeValue: can be whole number if you use ATR mode, or floating point number in case of Traditional mode.
  • showOverlay: displays basis Renko overlay.

Catatan Rilis

Update to version 3 - fixes some code that stopped working

Catatan Rilis

update to V4, added optional resolution to read atr range from a different timeframe.
Komentar
ForexKenya
Hi!

It doesn't show the "Traditional" mode? Could you know the reason why?
RicardoSantos
@ForexKenya, its updated, works now
Unipin
RicardoSantos, thanks for this indicator
I'm new to pinescript and can't quite figure it out how to port this to v4
I Kept getting erros like this for bricksize and ropen or rclose: "Value with NA type cannot be assigned to a variable that was defined without type keyword"

So I declared them as Var Float... and from that point stopped getting any errors, nonetheless I can't get the indicator to plot, can you help me?

This is what I've got so far:

mode = input('ATR', options=["ATR", "Traditional"])
modeValue = input(14.000)
var float bricksize = na
if mode == "ATR"
bricksize := atr(round(modeValue))
if mode == "Traditional"
bricksize := modeValue

showOverlay = input(false)

var float ropen = na
var float propen = nz(ropen[1])
ropen := close > propen+bricksize or high > propen+bricksize ? propen+bricksize : close < propen-bricksize or low < propen-bricksize ? propen-bricksize : propen

var float rclose = na
rclose := ropen > propen ? ropen-bricksize : ropen < propen ? ropen+bricksize : nz(rclose[1])
var float direction = na
direction := ropen > propen ? 1 : ropen < propen ? -1 : nz(direction[1])

rc = direction == 1 ? color.green : direction == -1 ? color.maroon : na

p00 = plot(not showOverlay ? na : ropen, style=plot.style_cross, color=rc, linewidth=3)
p01 = plot(not showOverlay ? na : rclose, style=plot.style_circles, color=color.gray, linewidth=2)

fill(p00, p01, color=gray, transp=75)

// ||--> ZigZag:
var float extreme = na
prev_extreme = change(direction) != 0 ? ropen : fixnan(extreme[1])
extreme := direction == 1 and high >= prev_extreme ? high : direction == -1 and low <= prev_extreme ? low : prev_extreme
plot(change(direction) != 0 ? extreme[1] : na)
RicardoSantos
@Unipin, updated to v4
4XMac
Muito Bom! Thanks.
gfglenn1
Well i guess what I'm asking if you look at your chart example here the candle with the high wick at a price of 11750 the zig zag there looks like it is telling you it hit a new high so i guess my question is there a lag with that zig zag or does it wait till the next 5 minute candle formation? Thank you for taking the time to answer my first question
RicardoSantos
yes its lagging by atleast 1 candle bar, can vary depending on distance to extreme since the swings are based on the range block swings and then capturing pivots when it changes
gfglenn1
On this indicator Does the plot of the new high or new low get placed immediately or is it on the candle of the next time frame. If that makes any sense. ty
RicardoSantos
this does not repaint, if its what your asking?
kiran24
Is there a way to backtest Renko scripts published in TradingView? I've been a fan of Renko, but new to TradingView.
Also, would be great to set up alerts on Renko reversal points
Lebih lanjut