Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Mouse to SharpDX coordinates

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Mouse to SharpDX coordinates

    I created a proof of concept indicator that can be clicked on to highlight - attached. I am doing something wrong with mouse pointer to WPF coordinates because there's a discrepancy where mouse pointer clicks and where it 'registers'. The discrepancy seems linear and increases the further away the click is from 0,0.

    Click image for larger version

Name:	image.png
Views:	111
Size:	48.9 KB
ID:	1338524

    Click image for larger version

Name:	image.png
Views:	136
Size:	109.4 KB
ID:	1338523

    #2
    I figured it out: use built-in coordinate transformation methods:

    float deviceX = ChartingExtensions.ConvertToHorizontalPixels(wpfCl ickPosition.X, ChartControl.PresentationSource);
    float deviceY = ChartingExtensions.ConvertToVerticalPixels(wpfClic kPosition.Y, ChartControl.PresentationSource);​

    Comment


      #3
      Hello MiCe1999,

      Likely you have the windows text size at a value greater than 100 which is causing the discrepancy. (DPI)

      See the example on the forum linked below which adjusts.
      Chelsea B.NinjaTrader Customer Service

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by Hwop38, 05-04-2026, 07:02 PM
      0 responses
      150 views
      0 likes
      Last Post Hwop38
      by Hwop38
       
      Started by CaptainJack, 04-24-2026, 11:07 PM
      0 responses
      302 views
      0 likes
      Last Post CaptainJack  
      Started by Mindset, 04-21-2026, 06:46 AM
      0 responses
      243 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Started by M4ndoo, 04-20-2026, 05:21 PM
      0 responses
      345 views
      0 likes
      Last Post M4ndoo
      by M4ndoo
       
      Started by M4ndoo, 04-19-2026, 05:54 PM
      0 responses
      174 views
      0 likes
      Last Post M4ndoo
      by M4ndoo
       
      Working...
      X