А вот так можно получать координаты обычной линии:
mtl = TrendLine.create(DTPoint.Create(BarDateTime[20], c[20]), DTPoint.Create(BarDateTime, c));
...
print(ldt, " MTL ",
(MTL.StartPoint astype DTPoint).DateTimeOfBar.ToString(), " ", MTL.StartPoint.Price, " - ",
(MTL.EndPoint astype DTPoint).DateTimeOfBar.ToString(), " ", MTL.EndPoint.Price);