Before, if you wanted to draw a line from the high of every bar to the
next bar... you would do this :
sendchartlabel(blt[symbol].RecentBar.High,blt[symbol].Last);
now to accomplish the same thing, you do :
sendchartlabel(blt[symbol].RecentBar.High,blt[symbol].RecentBar.Bartime);
more info here as well as other new features :
http://code.google.com/p/tradelink/wiki/SendChartLabel
-josh