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
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Minimize keystokes for Adding text
Collapse
X
-
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. TIATags: None
-
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!
-
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.Originally posted by j4trdr View PostHello
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
NtEnterText() {
Send("{F12}")
Click()
Send("0")
Send("{enter}")
Click(2)
ImageActions.ClickRegion(nt_text_box_right, 1231, 596, 1281, 643)
Send("^a")
}
Comment
-
Luis H. I have a solution now.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")
}
Thank you RC5781. I will try that out.
- Likes 1
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by argusthome, 03-08-2026, 10:06 AM
|
0 responses
69 views
0 likes
|
Last Post
by argusthome
03-08-2026, 10:06 AM
|
||
|
Started by NabilKhattabi, 03-06-2026, 11:18 AM
|
0 responses
42 views
0 likes
|
Last Post
|
||
|
Started by Deep42, 03-06-2026, 12:28 AM
|
0 responses
24 views
0 likes
|
Last Post
by Deep42
03-06-2026, 12:28 AM
|
||
|
Started by TheRealMorford, 03-05-2026, 06:15 PM
|
0 responses
27 views
0 likes
|
Last Post
|
||
|
Started by Mindset, 02-28-2026, 06:16 AM
|
0 responses
54 views
0 likes
|
Last Post
by Mindset
02-28-2026, 06:16 AM
|

Comment