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

Daily ATR

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

    Daily ATR

    Hi, I'm trying to access the daily ATR from my min chart. The daily ATR values I'm accessing from the min chart are not the same as the values shown on the ATR indicator that is on my daily chart. Any thoughts?

    protected override void Initialize()
    {
    Add(PeriodType.Day, 1);
    }

    // on bar update section

    if (BarsInProgress == 1)
    {
    ATRval = ((ATR(period)[0]);
    }

    if (BarsInProgress == 0)
    {
    ATRBarVal.Set(ATRval);
    }

    #2
    pman777, thanks for the post - which CalculateOnBarClose setting are you working with here? How many days of data is loaded for the minute chart from which you attempt to access the daily ATR values?
    BertrandNinjaTrader Customer Service

    Comment


      #3
      tx u for response Bertrand. CalculateOnBarClose is set to "True" adn I have 10 days of data loaded on my min chart

      Comment


        #4
        Thanks, please try loading more data, like 30 days. So you would have enough to correctly calculate the value on the higher timeframe for the ATR. With 10 calendar days and an ATR spanning 14 bars, you would see differences as it's then still playing 'catch up' to current values.
        BertrandNinjaTrader Customer Service

        Comment


          #5
          that did it Bertrand ... thank you!!!

          Comment

          Latest Posts

          Collapse

          Topics Statistics Last Post
          Started by alifarahani, Today, 09:40 AM
          6 responses
          38 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  
          Started by Waxavi, Today, 02:00 AM
          1 response
          12 views
          0 likes
          Last Post NinjaTrader_LuisH  
          Started by gentlebenthebear, Today, 01:30 AM
          3 responses
          17 views
          0 likes
          Last Post NinjaTrader_Jesse  
          Working...
          X