could someone please check this for me ...
var v1 = false;
function main() {
if (v1 == false) { v1 = true; debugPrint(v1); }
return null;
}
when the study is loaded into the chart, all is well and debug prints "true".
if the chart is scrolled to the left to dynamically load more data, v1 remains "true" and debug doesn't print.
var v1 = false;
function main() {
if (v1 == false) { v1 = true; debugPrint(v1); }
return null;
}
when the study is loaded into the chart, all is well and debug prints "true".
if the chart is scrolled to the left to dynamically load more data, v1 remains "true" and debug doesn't print.
Comment