
Графическое представление настроите под себя в настройках индикатора в стилях.study(title="%изменения", shorttitle="%изменения")
instrument1 = input(title='Instrument:', type=string, defval='EURUSD', confirm=true)
Open = security(instrument1, period, open)
Close = security(instrument1, period, close)
Low = security(instrument1, period, low)
High = security(instrument1, period, high)
//
//
Res1 = (Close/Open-1)*100
Res2 = (High/Low-1)*100
plot(Res1, linewidth=4, color=red, title="%_ИЗМЕН(C-O)")
plot(Res2, linewidth=4, color=blue, title="%_МАКС_ИЗМЕН(H-L)")