rhotchkiss wrote:
Is it possible to have an access to the point data in the chart graph objects such as "Short Line", "Long Line", "Channel Lines", etc.?
Yes, see:
IChartObject.getPriceand:
IChartObject.getTimeFor chart object operations start here:
https://www.dukascopy.com/wiki/index.php?title=IChartAnd also see the examples under the Strategy API/Charts section.
rhotchkiss wrote:
From Java, my code should be able to call to the list of graphical chart objects, get a reference to the one I want, and then request the point data (i.e time/price, or point index) of the points that were placed on the chart via mouse clicks.
Currently it is not possible to access chart mouse listener from API. It is only possible to add listener to particular strategy-created objects, as it is done in the following two examples:
https://www.dukascopy.com/wiki/index.php ... ect_eventshttps://www.dukascopy.com/wiki/index.php ... rt_objects