Hi @oyinloyea
I see you want to use the force index like for example the Bollinger Bands…
Keep in mind (in the graph) that the force index produces very large values by multiplying by the Volume…
I’m assuming you want to base the ATR channels on the “force index” and not on the “Close”…
(In that case, you need to replace the “Close” with “findex”)
ATRU1 = f1 + (AverageTrueRange[14](findex) * 1)
ATRD1 = f1 – (AverageTrueRange[14](findex) * 1)
ATRU2 = f1 + (AverageTrueRange[14](findex) * 2)
ATRD2 = f1 – (AverageTrueRange[14](findex) * 2)
ATRU3 = f1 + (AverageTrueRange[14](findex) * 3)
ATRD3 = f1 – (AverageTrueRange[14](findex) * 3)