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 SalmaTrader, 07-07-2026, 10:26 PM
|
0 responses
30 views
0 likes
|
Last Post
by SalmaTrader
07-07-2026, 10:26 PM
|
||
|
Started by CarlTrading, 07-05-2026, 01:16 PM
|
0 responses
17 views
0 likes
|
Last Post
by CarlTrading
07-05-2026, 01:16 PM
|
||
|
Started by CaptainJack, 06-17-2026, 10:32 AM
|
0 responses
9 views
0 likes
|
Last Post
by CaptainJack
06-17-2026, 10:32 AM
|
||
|
Started by kinfxhk, 06-17-2026, 04:15 AM
|
0 responses
16 views
0 likes
|
Last Post
by kinfxhk
06-17-2026, 04:15 AM
|
||
|
Started by kinfxhk, 06-17-2026, 04:06 AM
|
0 responses
19 views
0 likes
|
Last Post
by kinfxhk
06-17-2026, 04:06 AM
|

Comment