In need of assitance, would like remove the pivot lines from being drawn on charts just too much noise. Can any1 point out which lines to delete from the enclosed efs
Peter
If you only want to display the values of the pivots in the Cursor Window then open the efs with the Editor and in line 174 add a .toFixed(2) to each element of the array eg. vLastArray = new Array(vLastPPR2.toFixed(2), vLastM4.toFixed(2), etc...)
This will convert each element of the returned array to a string which an efs does not plot but still returns to the Cursor Window
Alex
Comment