 
    
            Help, please refer to the position highlighted by the mouse.
            
                 14 Mar 2019, 19:10
            
                    
Help, please refer to the position highlighted by the mouse. 
I have not found a way to do this.
Replies
                     trader.calgo
                     16 Mar 2019, 09:17
                                    
thanks for idia, im use OnChartMouseDown. Is not beauty realization but is work. Please realize API PositionSelectedEvenArgs pos, if you have free time ))
@trader.calgo

PanagiotisCharalampous
15 Mar 2019, 10:04
Hi trader.calgo,
You can use the MouseMove event to capture the mouse location at any moment. See below an example
protected override void OnStart() { Chart.MouseMove += OnChartMouseMove; } void OnChartMouseMove(ChartMouseEventArgs obj) { Print(obj.TimeValue); Print(obj.YValue); }Best Regards,
Panagiotis
@PanagiotisCharalampous