Добрый день,
Помогите понять плиз, getParamEx дает status.param_type=2 а status.param_value= 0.000000, но де-факто торги идут. Вероятно потому что сейчас праздники и как-то по особому все идет ... Как я понял, status.param_type=2 означает что status.param_value тупо не получен. Но как тут быть, чтобы автоматически понимать идут торги или нет ?
ниже текст
function check_aviability(p_classcode, p_seccode)
local status = getParamEx(p_classcode, p_seccode, "status") -- trading
message(tostring(status.param_type) .. " " .. tostring(status.param_value))
if status.param_type=="4" and status.param_value=="1.000000" then
return true
end
end
Помогите понять плиз, getParamEx дает status.param_type=2 а status.param_value= 0.000000, но де-факто торги идут. Вероятно потому что сейчас праздники и как-то по особому все идет ... Как я понял, status.param_type=2 означает что status.param_value тупо не получен. Но как тут быть, чтобы автоматически понимать идут торги или нет ?
ниже текст
function check_aviability(p_classcode, p_seccode)
local status = getParamEx(p_classcode, p_seccode, "status") -- trading
message(tostring(status.param_type) .. " " .. tostring(status.param_value))
if status.param_type=="4" and status.param_value=="1.000000" then
return true
end
end