Are nested reloads supported by esignal? I ask because when I run something like the code below every 20 bars I get the error message “Nested ‘reloadEFS’ call has been ignored.”
var Reload = 0;
function main() {
if (getBarState() == BARSTATE_NEWBAR) {
Reload ++;
if(Reload == 20){
Reload = 0;
reloadEFS();
}
}
}
var Reload = 0;
function main() {
if (getBarState() == BARSTATE_NEWBAR) {
Reload ++;
if(Reload == 20){
Reload = 0;
reloadEFS();
}
}
}
Comment