If there is no indicator function that I can use to jump, is it possible to use send keys to accomplish the same thing (i would be sending the page up and page down keys to quickly scroll thru)?
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Jump To Date
Collapse
X
-
Jump To Date
Is it possible to jump to a certain date using an indicator? I have an indicator that calculates some outputs and displays them on a form. I want to jump to certain dates where the indicator gives me an output, it is really annoying to scroll through everything
If there is no indicator function that I can use to jump, is it possible to use send keys to accomplish the same thing (i would be sending the page up and page down keys to quickly scroll thru)?Tags: None
-
Thanks I figured it out, once I open the form in OnStartUp, i need to pass in the current indicator's object. Then activate the window and scroll thru, here's some code for anyone who stumbles on this forum later.
Code:public class Test : Indicator{ .... protected override void OnStartUp(){ form1 = new Form1(this) form1.Show(); } protected override void OnTermination(){ form1.Dispose(true); } public void scrollMe(){ ChartControl.ParentForm.Activate(); SendKeys.SendWait("{PGUP}"); } .... } public partial class Form1 : Form { private Test vp; public Form1(Test vp){ this.vp = vp; InitializeComponent(); } private void button1_Click(object sender, EventArgs e) { vp.scrollMe(); } ... }
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CarlTrading, 03-31-2026, 09:41 PM
|
1 response
83 views
1 like
|
Last Post
|
||
|
Started by CarlTrading, 04-01-2026, 02:41 AM
|
0 responses
45 views
0 likes
|
Last Post
by CarlTrading
04-01-2026, 02:41 AM
|
||
|
Started by CaptainJack, 03-31-2026, 11:44 PM
|
0 responses
66 views
2 likes
|
Last Post
by CaptainJack
03-31-2026, 11:44 PM
|
||
|
Started by CarlTrading, 03-30-2026, 11:51 AM
|
0 responses
69 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:51 AM
|
||
|
Started by CarlTrading, 03-30-2026, 11:48 AM
|
0 responses
58 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:48 AM
|

Comment