все,
Почему этот индикатор не показывает стрелки на ценовом графике?
Он отображает стрелки в банановом индикаторе, но не на ценовом графике.
Знаете почему?
Спасибо
//@version=4
study(title="rsi", shorttitle="rsi", format=format.price, precision=2, resolution="")
len = input(2, minval=1, title="Length")
src = input(close, "Source", type = input.source)
up = rma(max(change(src), 0), len)
down = rma(-min(change(src), 0), len)
rsi = down == 0 ? 100 : up == 0 ? 0 : 100 - (100 / (1 + up / down))
plotshape(series= rsi >= 70 and rsi >= rsi[1], style=shape.triangledown, location=location.abovebar, color=#4CAF50, size=size.small, text="70")
plotshape(series=rsi <= 30 and rsi <= rsi[1], style=shape.triangleup, location=location.belowbar, color=#BD494C, size=size.small, text="30")