Николай, большое спасибо, что хоть Вы откликнулись, вот тот незамысловатый график который я хочу заставить двигаться, что бы уже дальше двигаться самому
Settings = { Name= "WMA_0_1", period=5}
function Init ()
return 1
end
-- =========================================================================
local price_move="price_5m"
price_close=0
function OnCalculate(index)
num_price = getNumCandles (price_move)
if index < num_price then
price_close= getCandlesByIndex(price_move,0,index -1,1)[0].close
end
if index<=0 or price_close==0 or index>=num_price then
return nil
else
pr= price_close
return pr
end
--message(' Метка- 2',2)
-- ==========================================================================
function main()
end
-- ==========================================================================
end
Помогите пжлст !