Hi,
I'm working with version 10.2 from 8/29/08.
The function setComputeOnClose does not work!
In the following example variable "a" is constantly updated on the same bar.
function preMain() {
setStudyTitle("test");
setPriceStudy(true);
setComputeOnClose;
}
var a=0;
function main() {
a++;
return("A:"+a);
}
Is it a BUG?
Regards,
Baruch
I'm working with version 10.2 from 8/29/08.
The function setComputeOnClose does not work!
In the following example variable "a" is constantly updated on the same bar.
function preMain() {
setStudyTitle("test");
setPriceStudy(true);
setComputeOnClose;
}
var a=0;
function main() {
a++;
return("A:"+a);
}
Is it a BUG?
Regards,
Baruch
Comment