Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

Partner 728x90

Collapse

Jump To Date

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

    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)?

    #2
    There isn't anything supported that would allow you to do this however you might be able to find something with the ChartControl properties.

    Let me know if i can further assist.
    LanceNinjaTrader Customer Service

    Comment


      #3
      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 PhillT, 04-19-2024, 02:16 PM
      4 responses
      34 views
      0 likes
      Last Post PhillT
      by PhillT
       
      Started by ageeholdings, 05-01-2024, 05:22 AM
      5 responses
      37 views
      0 likes
      Last Post ageeholdings  
      Started by reynoldsn, Today, 02:34 PM
      0 responses
      13 views
      0 likes
      Last Post reynoldsn  
      Started by nightstalker, Today, 02:05 PM
      0 responses
      19 views
      0 likes
      Last Post nightstalker  
      Started by llanqui, Yesterday, 09:59 AM
      8 responses
      32 views
      0 likes
      Last Post llanqui
      by llanqui
       
      Working...
      X