Settings={ Name="DELTA", delta=2, line= { { Name = "cur1", Type =TYPE_LINE, Width = 1, Color = RGB(0,0, 0) } } } --[[ -- кривая сдвига описание свойств: delta: сдвиг в барах от цены вправо --]] function Init() mas={} return 1 end function OnCalculate(index) mas[index+Settings.delta] = O(index) if index > Settings.delta then res = mas[index] else res = nil end return res end