Hi,
I made small change to eSignal_HeikinAshi.esf and I get junk lines in the study window or just dots.
I wanted to return a different value to be displayed in the cursor window. For a test I made the following change:
test = high() - low();
var retArray = new Array(4);
retArray[0] = haHigh.toFixed(2)*1;
// retArray[1] = haLow.toFixed(2)*1;
retArray[1] = test.toFixed(2)*1; //Replaced line with this
retArray[2] = haOpen.toFixed(2)*1;
retArray[3] = haClose.toFixed(2)*1;
It is like the scale is off?
Some times I get blue lines going up and down at angles, sometimes I get horizontal junk lines?
Any Ideas?
Thank You for any help
Tom
I made small change to eSignal_HeikinAshi.esf and I get junk lines in the study window or just dots.
I wanted to return a different value to be displayed in the cursor window. For a test I made the following change:
test = high() - low();
var retArray = new Array(4);
retArray[0] = haHigh.toFixed(2)*1;
// retArray[1] = haLow.toFixed(2)*1;
retArray[1] = test.toFixed(2)*1; //Replaced line with this
retArray[2] = haOpen.toFixed(2)*1;
retArray[3] = haClose.toFixed(2)*1;
It is like the scale is off?
Some times I get blue lines going up and down at angles, sometimes I get horizontal junk lines?
Any Ideas?
Thank You for any help
Tom
Comment