Hello I'm working on a strategy based on Ichimoku and I need some help. conversionPeriods = input.int(9, minval=1, title="Conversion Line Length") donchian(len) => math.avg(ta.lowest(len), ta.highest(len)) conversionLine = donchian(conversionPeriods) These lines will take the average of highest and ...