I have an EFS which in earlier releases seemed to run fine but in the latest version the reloadEFS() function is not being executed generating the "nested reloadEFS() call ignored" in the formula output window.
Here is the portion of code that is failing.
Here is the portion of code that is failing.
PHP Code:
function Reloader(genome)
{
//
var i;
if(genome !== null)
{
for(i in genome.gene)
eval(genome.gene[i].variable+" = genome.gene[i].value");
bFirstTrade = false; // used to make first trade only once
bReloading = true;
reloadEFS(); // reload the chart to test with the new parameters
} // end of if statement
else
{
vButtonState = DONE;
drawButtons();
}
} // end of function Reloader
Comment