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:	86
Size:	48.9 KB
ID:	1338524

    Click image for larger version

Name:	image.png
Views:	112
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 Geovanny Suaza, 02-11-2026, 06:32 PM
      0 responses
      553 views
      0 likes
      Last Post Geovanny Suaza  
      Started by Geovanny Suaza, 02-11-2026, 05:51 PM
      0 responses
      324 views
      1 like
      Last Post Geovanny Suaza  
      Started by Mindset, 02-09-2026, 11:44 AM
      0 responses
      100 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Started by Geovanny Suaza, 02-02-2026, 12:30 PM
      0 responses
      543 views
      1 like
      Last Post Geovanny Suaza  
      Started by RFrosty, 01-28-2026, 06:49 PM
      0 responses
      546 views
      1 like
      Last Post RFrosty
      by RFrosty
       
      Working...
      X