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 algospoke, Today, 06:40 PM
    0 responses
    10 views
    0 likes
    Last Post algospoke  
    Started by maybeimnotrader, Today, 05:46 PM
    0 responses
    7 views
    0 likes
    Last Post maybeimnotrader  
    Started by quantismo, Today, 05:13 PM
    0 responses
    7 views
    0 likes
    Last Post quantismo  
    Started by AttiM, 02-14-2024, 05:20 PM
    8 responses
    168 views
    0 likes
    Last Post jeronymite  
    Started by cre8able, Today, 04:22 PM
    0 responses
    10 views
    0 likes
    Last Post cre8able  
    Working...
    X