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

When is Time[0] active

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

    When is Time[0] active

    I have some logic in indicator and was wondering when Time[0] becomes the the current bar on the chart. When i did a printout it was the very first bar on the chart.

    I have this statement

    if (Time[0] > drawList[nIndex].Time)
    {

    I use this function only at startup

    i used this
    if (CurrentBar == 2)
    {
    }

    and it doesn't work;


    if I keep it out it will work but because of the loop logic it will take a while to load.

    How do you get around this issue?

    #2
    Hello ballboy11,

    Thank you for writing in.

    Every bar draw on a chart will have been at a time, Time[0]. For example, when a chart is drawn, the bars are drawn on the chart from left to right, and on each bar being drawn, it is the current bar.

    If you wanted to prevent the issue where old historical bars are Time[0], you could add the following to the top of your code,k
    Code:
    if(State ==State.Historical) return;
    The above will cause the script to only run in real time.

    Please let us know if you need further assistance.
    Alan P.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by kempotrader, Today, 08:56 AM
    0 responses
    6 views
    0 likes
    Last Post kempotrader  
    Started by kempotrader, Today, 08:54 AM
    0 responses
    4 views
    0 likes
    Last Post kempotrader  
    Started by mmenigma, Today, 08:54 AM
    0 responses
    2 views
    0 likes
    Last Post mmenigma  
    Started by halgo_boulder, Today, 08:44 AM
    0 responses
    1 view
    0 likes
    Last Post halgo_boulder  
    Started by drewski1980, Today, 08:24 AM
    0 responses
    4 views
    0 likes
    Last Post drewski1980  
    Working...
    X