Renko ATR

Questions about MultiCharts and user contributed studies.
hakem182
Posts: 1
Joined: Jun 10 2024

Jun 10 2024

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)

User avatar
TJ
Posts: 7774
Joined: Aug 29 2006
Location: Global Citizen
Has thanked: 1036 times
Been thanked: 2233 times

Jun 10 2024

See posts #1 & #2
viewtopic.php?t=11713