Блог им. autotrade
Settings={ Name="overhight", period=20, line= { { Name = "cur1", Type =TYPE_LINE, Width = 2, Color = RGB(255,0, 0) } } } --[[ описание свойств: period - период, за каротрый делается расчет назначение: построение перехая --]] function Init() y = 0 return 1 end function OnCalculate(index) sz = Size() n = Settings.period if index == 1 then y = 0 end i = index if index-n > 0 then if (H(i) > H(i-1)) and (L(i) > L(i-1)) then y = y + 1 end if (H(i) < H(i-1)) and (L(i) < L(i-1)) then y = y - 1 end end return y end