I am working on an stock scanner which is requesting Higher timeframe values from the lower timeframe, it was working previously but suddenly it stopped working and now it’s showing error, “Unsupported resolution”.
<code>screenerFun(numSym, sym, flg) =>
log.info("matrix" + str.tostring(screenerMtx))
[cl, fvstar,result] = request.security(sym, timeframe.period, screener_func(sym))
</code>
<code>screenerFun(numSym, sym, flg) =>
log.info("matrix" + str.tostring(screenerMtx))
[cl, fvstar,result] = request.security(sym, timeframe.period, screener_func(sym))
</code>
screenerFun(numSym, sym, flg) =>
log.info("matrix" + str.tostring(screenerMtx))
[cl, fvstar,result] = request.security(sym, timeframe.period, screener_func(sym))
Above the the lower time frame call, inside it I am requesting a higher timeframe value
<code>[h1,h2,l1,l2] = f_secureSecurity(sym, "5",high[0],high[1],low[0],low[1])
f_secureSecurity(_symbol, _res, _src,_src1,_src2,_src3) => request.security(_symbol, _res, [_src[1],_src1[1],_src2[1],_src3[1]], lookahead = barmerge.lookahead_on)
</code>
<code>[h1,h2,l1,l2] = f_secureSecurity(sym, "5",high[0],high[1],low[0],low[1])
f_secureSecurity(_symbol, _res, _src,_src1,_src2,_src3) => request.security(_symbol, _res, [_src[1],_src1[1],_src2[1],_src3[1]], lookahead = barmerge.lookahead_on)
</code>
[h1,h2,l1,l2] = f_secureSecurity(sym, "5",high[0],high[1],low[0],low[1])
f_secureSecurity(_symbol, _res, _src,_src1,_src2,_src3) => request.security(_symbol, _res, [_src[1],_src1[1],_src2[1],_src3[1]], lookahead = barmerge.lookahead_on)
Thanks in advance.