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 CarlTrading, 03-31-2026, 09:41 PM
|
1 response
81 views
1 like
|
Last Post
|
||
|
Started by CarlTrading, 04-01-2026, 02:41 AM
|
0 responses
42 views
0 likes
|
Last Post
by CarlTrading
04-01-2026, 02:41 AM
|
||
|
Started by CaptainJack, 03-31-2026, 11:44 PM
|
0 responses
64 views
2 likes
|
Last Post
by CaptainJack
03-31-2026, 11:44 PM
|
||
|
Started by CarlTrading, 03-30-2026, 11:51 AM
|
0 responses
68 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:51 AM
|
||
|
Started by CarlTrading, 03-30-2026, 11:48 AM
|
0 responses
55 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:48 AM
|

Comment