Нужна помощь. У меня есть код и мне нужно посмотреть всю историю на 5000 баров, но показывает только на 500 баров((

//@version=5
indicator('Indi', overlay=true, max_labels_count=500)

stable_candle = math.abs(close - open) / ta.tr > .5
rsi = ta.rsi(close, 14)

rsi_below = rsi < 30

bull = rsi_below

rsi_above = rsi > 70

bear = rsi_above

label.new(bull ? bar_index : na, low, 'BUY', color=color.rgb(0, 255, 8), style=label.style_label_up, textcolor=color.white, size=size.large)
label.new(bear ? bar_index : na, high, 'SELL', color=color.rgb(255, 0, 0), style=label.style_label_down, textcolor=color.white, size=size.large)