Dale
With regards to the arrow placement issue there is no perfect solution when it comes to overlapping the EW labels.
I would suggest the following.
At the very beginning of the main() section of the efs (in line 45 or 46) insert the following
var vSpace = (high()-low())*0.5;
Once you have done that look for all instances of drawTextRelative(0,high(),...) or drawTextRelative(0,low(),...) and change them to drawTextRelative(0,high()+vSpace,...) or drawTextRelative(0,low()-vSpace,...)
To adjust the spacing simply modify the line var vSpace by changing the coefficient 0.5 to another value. 0.5 should resolve most conflicts but there may still be a few instances of overlaps.
Hope this helps
Alex
With regards to the arrow placement issue there is no perfect solution when it comes to overlapping the EW labels.
I would suggest the following.
At the very beginning of the main() section of the efs (in line 45 or 46) insert the following
var vSpace = (high()-low())*0.5;
Once you have done that look for all instances of drawTextRelative(0,high(),...) or drawTextRelative(0,low(),...) and change them to drawTextRelative(0,high()+vSpace,...) or drawTextRelative(0,low()-vSpace,...)
To adjust the spacing simply modify the line var vSpace by changing the coefficient 0.5 to another value. 0.5 should resolve most conflicts but there may still be a few instances of overlaps.
Hope this helps
Alex
Comment