//@version=3
study(title="Kijun-Sen+", shorttitle="Kijun-Sen+", overlay=true)
basePeriods = input(26, minval=1, title="Period")
donchian(len) => avg(lowest(len), highest(len))
baseLine = donchian(basePeriods)
plot(baseLine, color=#991515, title="Kijun-Sen")
https://www.tradingview.com/script/DDjTGayW-Kijun-Sen/
Can anyone help translate this to something TOS would accept?
Thank you
study(title="Kijun-Sen+", shorttitle="Kijun-Sen+", overlay=true)
basePeriods = input(26, minval=1, title="Period")
donchian(len) => avg(lowest(len), highest(len))
baseLine = donchian(basePeriods)
plot(baseLine, color=#991515, title="Kijun-Sen")
https://www.tradingview.com/script/DDjTGayW-Kijun-Sen/
Can anyone help translate this to something TOS would accept?
Thank you
Last edited by a moderator: