Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
capturing mouse events?
Collapse
X
-
Hi chuckt101, you can easily capture mouse x/y coordinates by adding an event handler to your indicators underlying control.
Add something like this to your OnStartUp():
And add the method in your indicatorCode:ChartControl.MouseMove += mouseMoveHandler;
X and Y are just examples, you can do things with clicks, mouse-wheel, etc. Hope this helpsCode:private void mouseMoveHandler(object sender, MouseEventArgs e) { // do whatever with mouse coords contained in e here Print(String.Format("mouseMoveHandler X = {0} Y = {1}!", e.X, e.Y)) }
edit: if you simply want to capture clicks, you'll want to use the MouseDown event versus MouseMove. You can find a breakdown of mouse events on MSDN here http://msdn.microsoft.com/en-us/libr...mousedown.aspxLast edited by Dexter; 02-28-2011, 04:47 PM.
Comment
-
-
Thank you johne5. That revealed my mistake....needed MouseDown on the ChartPanel...makes sense (now!).
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CaptainJack, 05-29-2026, 05:09 AM
|
0 responses
173 views
0 likes
|
Last Post
by CaptainJack
05-29-2026, 05:09 AM
|
||
|
Started by CaptainJack, 05-29-2026, 12:02 AM
|
0 responses
91 views
0 likes
|
Last Post
by CaptainJack
05-29-2026, 12:02 AM
|
||
|
Started by charlesugo_1, 05-26-2026, 05:03 PM
|
0 responses
129 views
0 likes
|
Last Post
by charlesugo_1
05-26-2026, 05:03 PM
|
||
|
Started by DannyP96, 05-18-2026, 02:38 PM
|
1 response
209 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
186 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|

Comment