Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

Partner 728x90

Collapse

capturing mouse events?

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

    capturing mouse events?

    Hello, is there a way to capture & respond to mouse clicks on charts? (Specifically chart draw objects)

    #2
    Hello chuckt101,

    NinjaScript doesn't offer support for this but since it's built with C# you have the capability. For reference you can check MSDN docs or maybe another community member can share their experience with it.
    Ryan M.NinjaTrader Customer Service

    Comment


      #3
      Thanks for the reply.

      I wasn't sure whether the mouse events would be filtered by NT before being sent to Ninjascript but it sounds like they aren't?

      Comment


        #4
        There's no filtering done, but it's also not actively looking for mouse events by default. There's likely additional using statement you need to add to any script for the right namespace.
        Ryan M.NinjaTrader Customer Service

        Comment


          #5
          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():
          Code:
          ChartControl.MouseMove += mouseMoveHandler;
          And add the method in your indicator
          Code:
          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))
          }
          X and Y are just examples, you can do things with clicks, mouse-wheel, etc. Hope this helps

          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.aspx
          Last edited by Dexter; 02-28-2011, 04:47 PM.

          Comment


            #6
            Thanks Dexter, that did help

            Comment


              #7
              Did this code snippet actually work for you?

              Comment


                #8
                dDrawABC uses this feature

                Check out the dDrawABC indicator. It uses mouse clicks.

                Comment


                  #9
                  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 philmg, Today, 12:55 PM
                  0 responses
                  1 view
                  0 likes
                  Last Post philmg
                  by philmg
                   
                  Started by Russ Moreland, Today, 12:54 PM
                  0 responses
                  1 view
                  0 likes
                  Last Post Russ Moreland  
                  Started by f.saeidi, Today, 12:14 PM
                  2 responses
                  5 views
                  0 likes
                  Last Post f.saeidi  
                  Started by TradeForge, 04-19-2024, 02:09 AM
                  2 responses
                  28 views
                  0 likes
                  Last Post TradeForge  
                  Started by aprilfool, 12-03-2022, 03:01 PM
                  3 responses
                  327 views
                  0 likes
                  Last Post NinjaTrader_Adrian  
                  Working...
                  X