Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Pan chart by dragging with mouse (without ctrl) both horizontal/vertical

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

    #16
    A way to drag both vertical and horizontal without making it a two handed operation really should be implemented.

    Comment


      #17
      If you know how to use autohotkey the following will get the job done

      Code:
      #If WinActive("ahk_exe Ninjatrader.exe")
      ~LButton::
      Sp:=GetKeyState("Space" , "P")
      Ctrl:=GetKeyState("Ctrl" , "P")
      Alt:=GetKeyState("Alt" , "P")
      if !Sp and !Ctrl and !Alt
      {
          WinGetActiveTitle, WinTitle
          If InStr(WinTitle, "Chart") > 0
          {
              Send {Ctrl Down}
              KeyWait LButton
              Send {Ctrl Up}
          }
      }
      return

      Comment


        #18
        This is a Much needed feature, especially for those of us logging into a VPS remotely with a touch device and are simply unable to combo keyboard click.

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by traderqz, Today, 12:06 AM
        8 responses
        14 views
        0 likes
        Last Post traderqz  
        Started by SightCareAubetter, Today, 12:50 PM
        0 responses
        1 view
        0 likes
        Last Post SightCareAubetter  
        Started by Mongo, Today, 11:05 AM
        4 responses
        14 views
        0 likes
        Last Post Mongo
        by Mongo
         
        Started by Skifree, Today, 03:41 AM
        5 responses
        13 views
        0 likes
        Last Post Skifree
        by Skifree
         
        Started by traderqz, Yesterday, 09:06 AM
        5 responses
        35 views
        0 likes
        Last Post NinjaTrader_Jesse  
        Working...
        X