Page 1 of 1

Renko ATR

Posted: Jun 10 2024
by hakem182
Is it possible to code this Tradingview script with Multicharts ?

study("Renko Chart", overlay=false)
renko_t = renko(syminfo.tickerid, "ATR", 30)
renko_low = security(renko_t, timeframe.period, low)
renko_high = security(renko_t, timeframe.period, high)
renko_open = security(renko_t, timeframe.period, open)
renko_close = security(renko_t, timeframe.period, close)
colorset = renko_close > renko_open?color.green:color.red
plotcandle(renko_open,renko_low,renko_high,renko_close,color=colorset)

Re: Renko ATR

Posted: Jun 10 2024
by TJ
See posts #1 & #2
viewtopic.php?t=11713