Hey Back, what's the entry criteria when you place a trade based on your this stratgey ?
Regret is Brutal
RENKO Trading SYSTEM - RENKO Indicators 7 replies
New Renko Bar and Reversal Renko Bar Indicator Alert Help Please 5 replies
Trading Blind 11 replies
Is Your Fx Broker Robbing You Blind? Test 'em! 2 replies
Blind sided by news this am. 2 replies
DislikedHey Back, what's the entry criteria when you place a trade based on your this stratgey ?Ignored
DislikedSorry I might be missing something but why use the indicator. You can just convert candles to Renko anyway in tradingview?Ignored
study(title='BlindRenko', shorttitle='BR-1', overlay=true)
tf = input(title="Timeframe", type=resolution,defval="")
mode = input('ATR')
mode_value = input(14, type=float)
//showOverlay = input(true)
showBarColors = input(true)
//showMA = input(false)
//MA_length = input(12)
rt = renko(tickerid, 'close', mode, mode_value)
ro = security(rt, tf, open)
rc = security(rt, tf, close)
p1=plot(ro,color=black,transp=0)
p2=plot(rc,color=black,transp=0)
colorf = rc > ro ? #00ff80 : rc < ro ? #ff8000 : gray
fill(p1,p2,color=colorf)
//h1=hline(float(ro))
//plot(not showOverlay ? na : max(rc,ro), color=colorf, style=columns, transp=50)
//plot(not showOverlay ? na : min(rc,ro), color=white, style=columns, transp=0)
//ma = showMA ? sma(ro, MA_length) : na
//plot(not showMA ? na : ma, color=black, linewidth=2)
barcolor(not showBarColors ? na : rc > ro ? blue : red) study(title='BlindRenko Multi', shorttitle='BR-Multi', overlay=true)
//tf = input(title="Timeframe", type=resolution,defval="")
tf1 = input(title="Timeframe", type=resolution,defval="60")
tf2 = input(title="Timeframe", type=resolution,defval="240")
tf3 = input(title="Timeframe", type=resolution,defval="1D")
mode = input('ATR')
mode_value = input(14, type=float)
//showOverlay = input(true)
showBarColors = input(true)
//showMA = input(false)
//MA_length = input(12)
rt = renko(tickerid, 'close', mode, mode_value)
//ro = security(rt, tf, open)
//rc = security(rt, tf, close)
ro60 = security(rt, tf1, open)
rc60 = security(rt, tf1, close)
ro240 = security(rt, tf2, open)
rc240 = security(rt, tf2, close)
ro1d = security(rt, tf3, open)
rc1d = security(rt, tf3, close)
//p1=plot(ro)
//p2=plot(rc)
//colore = rc > ro ? #00ff80 : rc < ro ? #ff8000 : gray
//fill(p1,p2,color=colore)
p160=plot(ro60)
p260=plot(rc60)
colorf = rc60 > ro60 ? #00ff80 : rc60 < ro60 ? #ff8000 : gray
fill(p160,p260,color=colorf)
p1240=plot(ro240)
p2240=plot(rc240)
colorg = rc240 > ro240 ? #00ff80 : rc240 < ro240 ? #ff8000 : gray
fill(p1240,p2240,color=colorg)
p11d=plot(ro1d)
p21d=plot(rc1d)
colorh = rc1d > ro1d ? #00ff80 : rc1d < ro1d ? #ff8000 : gray
fill(p11d,p21d,color=colorh)
//plot(not showOverlay ? na : max(rc,ro), color=colorf, style=columns, transp=50)
//plot(not showOverlay ? na : min(rc,ro), color=white, style=columns, transp=0)
//ma = showMA ? sma(ro, MA_length) : na
//plot(not showMA ? na : ma, color=black, linewidth=2)
barcolor(not showBarColors ? na : rc60 > ro60 ? blue : red)