Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Minimize keystokes for Adding text

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

    Minimize keystokes for Adding text

    Hello

    I am on NT 8.0. Is there a way to minimize key strokes before I can enter text?. Currently I am having to press a Hotkey, click on the chart and then enter. Ideally, I would prefer a double click on the chart which would let me enter text. TIA

    #2
    Hello j4trdr,


    Thank you for posting on the NinjaTrader forums.



    At this time, this is the expected workflow to create a text object within the NinjaTrader platform. We are also not making updates to NinjaTrader 8.0 at this time - you are welcome to submit a feature request for 8.1 at the following link.


    Thank you in advance!

    Comment


      #3
      Originally posted by j4trdr View Post
      Hello

      I am on NT 8.0. Is there a way to minimize key strokes before I can enter text?. Currently I am having to press a Hotkey, click on the chart and then enter. Ideally, I would prefer a double click on the chart which would let me enter text. TIA
      I use autohotkey v2 for this. When an nt8 chart is active pressing F12 will bring you all the way to a highlighted text field, ready for text. F12 needs to be set as the default nt8 hotkey for entering text. You would have to install ahk v2 and get the ImageActions wrapper class as well as FIndText. "nt_text_box_right" is the variable name for the text image taken by FindText of the right hand side of the text box field. You have to add 3rd party stuff but it works well. The text box with selected text, ready for input is almost instant.

      NtEnterText() {
      Send("{F12}")
      Click()
      Send("0")
      Send("{enter}")
      Click(2)
      ImageActions.ClickRegion(nt_text_box_right, 1231, 596, 1281, 643)
      Send("^a")
      }​

      Comment


        #4
        Originally posted by rc5781 View Post

        I use autohotkey v2 for this. When an nt8 chart is active pressing F12 will bring you all the way to a highlighted text field, ready for text. F12 needs to be set as the default nt8 hotkey for entering text. You would have to install ahk v2 and get the ImageActions wrapper class as well as FIndText. "nt_text_box_right" is the variable name for the text image taken by FindText of the right hand side of the text box field. You have to add 3rd party stuff but it works well. The text box with selected text, ready for input is almost instant.

        NtEnterText() {
        Send("{F12}")
        Click()
        Send("0")
        Send("{enter}")
        Click(2)
        ImageActions.ClickRegion(nt_text_box_right, 1231, 596, 1281, 643)
        Send("^a")
        }​
        Luis H. I have a solution now.

        Thank you RC5781. I will try that out.

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by CarlTrading, 03-31-2026, 09:41 PM
        1 response
        41 views
        0 likes
        Last Post NinjaTrader_ChelseaB  
        Started by CarlTrading, 04-01-2026, 02:41 AM
        0 responses
        20 views
        0 likes
        Last Post CarlTrading  
        Started by CaptainJack, 03-31-2026, 11:44 PM
        0 responses
        28 views
        1 like
        Last Post CaptainJack  
        Started by CarlTrading, 03-30-2026, 11:51 AM
        0 responses
        45 views
        0 likes
        Last Post CarlTrading  
        Started by CarlTrading, 03-30-2026, 11:48 AM
        0 responses
        37 views
        0 likes
        Last Post CarlTrading  
        Working...
        X