Подскажите решение такой проблемы, может кто сталкивался или кому известно...
Создаю трендовую линию, как потом узнать BarDateTime начальной точки трендовой линии?
Using elsystem;
Using charting;
Using platform;
Using elsystem.io;
Using elsystem.drawing;
Using elsystem.collections;
Using elsystem.drawingobjects;
Using elsystem.windows.forms;
Using tsdata.common;
Vars: DTPoint sDTPoint(Null),
DTPoint eDTPoint(Null),
TrendLine TLine (Null);
Once Begin
sDTPoint = DTPoint.Create(DateTime.Parse(BarDateTime.ToString()), Open);
eDTPoint = DTPoint.Create(DateTime.Parse(LastCalcDateTime.ToString()), Open);
TLine = TrendLine.Create(sDTPoint, eDTPoint);
TLine.ExtLeft = False;
TLine.ExtRight = True;
TLine.Style = StyleType.solid;
TLine.Weight = elsystem.drawingobjects.Weight.weight1;
TLine.Color = Color.White;
TLine.Persist = True;
DrawingObjects.Add(TLine);
Print(TLine.StartPoint.Price); // Определяем цену начальной точки трендовой линии
Print(TLine.Points[0].PointType.ToString()); // Как определить BarDateTime начальной точки трендовой линии
End;