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

Time/time events from x-axis?

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

    Time/time events from x-axis?

    Is it possible update an indicator from time events on the x-axis rather than with OnBarUpdate()? I would need something like "OnTimeUpdate()" instead to "drive" my indicator.

    #2
    Hello Freen, and thank you for your question.

    We can see all the event methods built into NinjaScript on the following page, under the letter O.



    As you can see, such a method is not part of NinjaScript out of the box. However, NinjaScript does support the methods ToTime() and ToDay(), which I will provide documentation for here :




    You could use these inside OnBarUpdate() with CalculateOnBarClose set to false, to allow you to make your own event callback. I will provide a small example, which will call OnMyTimeWindow() every second between 8 AM and 9 AM,

    Code:
    private void OnMyTimeWindow()
    {
      // your code here
    }
    
    protected override void OnBarUpdate()
    {
      if (80000 <= ToTime(Time[0]) && ToTime(Time[0]) <= 90000)
      {
        OnMyTimeWindow();
      }
    }
    Jessica P.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Javierw.ok, Today, 04:12 PM
    0 responses
    2 views
    0 likes
    Last Post Javierw.ok  
    Started by timmbbo, Today, 08:59 AM
    2 responses
    10 views
    0 likes
    Last Post bltdavid  
    Started by alifarahani, Today, 09:40 AM
    6 responses
    40 views
    0 likes
    Last Post alifarahani  
    Started by Waxavi, Today, 02:10 AM
    1 response
    18 views
    0 likes
    Last Post NinjaTrader_LuisH  
    Started by Kaledus, Today, 01:29 PM
    5 responses
    15 views
    0 likes
    Last Post NinjaTrader_Jesse  
    Working...
    X