Candle Body Resistance Channel
Summary
Variables and Inputs
len = 34
src = input(close, title='Candle body resistance Channel')Calculations
out = ta.sma(src, len)last8h = ta.highest(close, 13)
lastl8 = ta.lowest(close, 13)bearish = ta.cross(close, out) == 1 and ta.falling(close, 1)
bullish = ta.cross(close, out) == 1 and ta.rising(close, 1)Plotting
Commented Out Fill
Last updated