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 Hwop38, 05-04-2026, 07:02 PM
|
0 responses
168 views
0 likes
|
Last Post
by Hwop38
05-04-2026, 07:02 PM
|
||
|
Started by CaptainJack, 04-24-2026, 11:07 PM
|
0 responses
324 views
0 likes
|
Last Post
by CaptainJack
04-24-2026, 11:07 PM
|
||
|
Started by Mindset, 04-21-2026, 06:46 AM
|
0 responses
250 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|
||
|
Started by M4ndoo, 04-20-2026, 05:21 PM
|
0 responses
350 views
0 likes
|
Last Post
by M4ndoo
04-20-2026, 05:21 PM
|
||
|
Started by M4ndoo, 04-19-2026, 05:54 PM
|
0 responses
179 views
0 likes
|
Last Post
by M4ndoo
04-19-2026, 05:54 PM
|

Comment